/* About / Why Jumper Bee — matches homepage-v2 design tokens */

.jb-about { background: var(--jb-white); }
.jb-about h1,
.jb-about h2,
.jb-about h3 {
	font-family: var(--jb-font-head);
	color: var(--jb-black);
	line-height: 1.15;
	letter-spacing: -0.01em;
}
.jb-about p { color: var(--jb-text); line-height: 1.6; margin: 0 0 1rem; }

.jb-about__eyebrow {
	display: inline-block;
	font-size: .8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: var(--jb-yellow);
	margin: 0 0 .75rem;
}
.jb-about__eyebrow--dark { color: var(--jb-blue-deep); }

/* ==== HERO ==== */
.jb-about__hero {
	position: relative;
	color: var(--jb-white);
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 85% 0%, rgba(0,166,255,.35), transparent 55%),
		linear-gradient(180deg, var(--jb-bg-dark) 0%, var(--jb-bg-dark-2) 100%);
}
.jb-about__hero-overlay {
	position: relative; z-index: 1;
	padding: clamp(3.25rem, 6vw, 5.5rem) 1.5rem;
	width: 100%;
}
.jb-about__hero .jb-about__eyebrow { color: var(--jb-yellow) !important; }
.jb-about .jb-about__hero-title,
.jb-about__hero .jb-about__hero-title {
	color: #ffffff !important;
	font-size: clamp(1.85rem, 4.5vw, 3.25rem);
	font-weight: 800;
	max-width: 22ch;
	margin: 0 0 1rem;
	line-height: 1.15;
	font-family: var(--jb-font-head);
	letter-spacing: -0.01em;
}
.jb-about__hero-title::after {
	content: "";
	display: block;
	width: 120px;
	height: 8px;
	background: var(--jb-yellow);
	border-radius: 4px;
	margin-top: 1rem;
}
.jb-about__sub {
	font-size: clamp(1.1rem, 1.8vw, 1.4rem);
	color: #dfe5f3 !important;
	max-width: 55ch;
	margin: 0 0 1.75rem;
}
.jb-about__sub strong { color: var(--jb-yellow) !important; font-weight: 800; }
.jb-about__hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ==== FEATURE CARDS ==== */
.jb-about__features-wrap { padding: clamp(3.5rem, 6vw, 5.5rem) 0; background: var(--jb-white); }
.jb-about__features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 820px) {
	.jb-about__features { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.jb-about__feature {
	position: relative;
	background: var(--jb-white);
	border-radius: var(--jb-radius-lg);
	padding: 2.25rem 1.75rem 2rem;
	box-shadow: var(--jb-shadow);
	border: 1px solid rgba(13,27,61,.06);
	transition: transform .2s ease, box-shadow .2s ease;
}
.jb-about__feature:hover {
	transform: translateY(-4px);
	box-shadow: var(--jb-shadow-lg);
}
.jb-about__feature::before {
	content: "";
	position: absolute;
	top: 0; left: 1.75rem; right: 1.75rem;
	height: 6px;
	border-radius: 0 0 6px 6px;
	background: var(--jb-blue);
}
.jb-about__feature--pink::before   { background: var(--jb-pink); }
.jb-about__feature--yellow::before { background: var(--jb-yellow-deep); }
.jb-about__feature-icon {
	width: 64px; height: 64px;
	display: inline-flex;
	align-items: center; justify-content: center;
	border-radius: 18px;
	background: #f0f9ff;
	color: var(--jb-blue-deep);
	margin-bottom: 1.25rem;
}
.jb-about__feature--pink .jb-about__feature-icon   { background: #fff1f5; color: var(--jb-pink-deep); }
.jb-about__feature--yellow .jb-about__feature-icon { background: var(--jb-cream);  color: #b88100; }
.jb-about__feature-icon svg { width: 34px; height: 34px; }
.jb-about__feature h2 {
	margin: 0 0 .6rem;
	font-size: 1.45rem;
	font-weight: 800;
}
.jb-about__feature p { margin: 0; font-size: 1rem; color: var(--jb-text); }

/* ==== STATS BAR ==== */
.jb-about__stats-wrap {
	background: var(--jb-bg-dark);
	color: var(--jb-white);
	padding: clamp(2.25rem, 4vw, 3.25rem) 0;
}
.jb-about__stats {
	list-style: none; margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem 1rem;
	text-align: center;
}
@media (min-width: 720px) {
	.jb-about__stats { grid-template-columns: repeat(4, 1fr); }
}
.jb-about__stats li { display: flex; flex-direction: column; align-items: center; gap: .35rem; }
.jb-about__stat-icon {
	display: inline-flex;
	align-items: center; justify-content: center;
	width: 48px; height: 48px;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	color: var(--jb-yellow);
	margin-bottom: .25rem;
}
.jb-about__stat-icon svg { width: 24px; height: 24px; }
.jb-about__stats strong {
	font-family: var(--jb-font-head);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: #ffffff !important;
	line-height: 1;
}
.jb-about__stats span:last-child {
	font-size: .95rem;
	color: #c4ccdd !important;
}

/* ==== TESTIMONIAL ==== */
.jb-about__testimonial-wrap {
	padding: clamp(3.5rem, 6vw, 5.5rem) 0;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(255,212,0,.18), transparent 60%),
		var(--jb-cream);
}
.jb-about__testimonial {
	position: relative;
	max-width: 880px;
	margin: 0 auto;
	background: var(--jb-white);
	border-radius: var(--jb-radius-lg);
	padding: clamp(2.5rem, 4vw, 3.5rem) clamp(1.75rem, 3vw, 3rem) 2.25rem;
	box-shadow: var(--jb-shadow-lg);
	text-align: center;
}
.jb-about__quote-mark {
	position: absolute;
	top: -28px; left: 50%;
	transform: translateX(-50%);
	width: 56px; height: 56px;
	border-radius: 50%;
	background: var(--jb-yellow);
	color: var(--jb-black);
	display: inline-flex;
	align-items: center; justify-content: center;
	box-shadow: 0 6px 16px rgba(13,27,61,.18);
}
.jb-about__quote-mark svg { width: 26px; height: 26px; }
.jb-about__testimonial blockquote {
	margin: 0 0 1.5rem;
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
	line-height: 1.6;
	color: var(--jb-black);
	font-style: italic;
}
.jb-about__testimonial blockquote p { margin: 0; color: inherit; }
.jb-about__testimonial-meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .5rem;
}
.jb-about__stars { display: inline-flex; gap: .2rem; color: var(--jb-yellow-deep); }
.jb-about__stars svg { width: 20px; height: 20px; fill: currentColor; }
.jb-about__client {
	font-size: .875rem;
	color: var(--jb-text);
	font-weight: 600;
	letter-spacing: .02em;
	text-transform: uppercase;
}

/* ==== STORY ==== */
.jb-about__story-wrap { padding: clamp(3.5rem, 6vw, 5.5rem) 0; background: var(--jb-white); }
.jb-about__story {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}
@media (min-width: 900px) {
	.jb-about__story { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 4rem; }
}
.jb-about__story-media img {
	width: 100%; height: auto;
	border-radius: var(--jb-radius-lg);
	box-shadow: var(--jb-shadow-lg);
	display: block;
}
.jb-about__story-copy h2 {
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	font-weight: 800;
	margin: 0 0 1rem;
}
.jb-about__story-copy p { font-size: 1.05rem; }
.jb-about__story-copy p strong { color: var(--jb-pink-deep); }
.jb-about__story-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* ==== CLOSING CTA ==== */
.jb-about__cta-wrap {
	padding: clamp(3rem, 5vw, 4.5rem) 0;
	background:
		radial-gradient(ellipse at 85% 30%, rgba(0,166,255,.28), transparent 60%),
		linear-gradient(180deg, var(--jb-bg-dark) 0%, var(--jb-bg-dark-2) 100%);
	color: var(--jb-white);
}
.jb-about__cta {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}
.jb-about__cta h2 {
	color: #ffffff !important;
	font-size: clamp(1.6rem, 3vw, 2.25rem);
	margin: 0 0 .75rem;
}
.jb-about__cta p { color: #dfe5f3 !important; margin: 0 0 1.75rem; font-size: 1.05rem; }
.jb-about__cta-buttons { display: inline-flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
