/* ============================================================
   JSB Why Us Hub - front-end styles
   Visual language matches the existing site (see Astra child
   theme style.css + jsb-services.css): deep navy #081845 /
   #060F2E, white #ffffff, matte gold #C9A84C, light grey
   #F8F9FB. Fonts: Inter (body) + Plus Jakarta Sans (headings).

   Every rule is scoped under body.jsb-why-active (/why-us/,
   slug "why-us" only) or the .jsb-why subtree, so the home page,
   menus, products, Resources, OEM/ODM services and theme files
   are never touched. No horizontal overflow: grids use
   minmax(0,1fr), long strings wrap, and the anchor nav becomes
   a horizontally scrollable strip on small screens.
   ============================================================ */

.jsb-why {
	--jb-blue: #081845;
	--jb-navy-deep: #060F2E;
	--jb-gold: #C9A84C;
	--jb-gold-dark: #b5953d;
	--jb-gold-soft: rgba(201, 168, 76, 0.16);
	--jb-bg-light: #F8F9FB;
	--jb-line: #E5E7EB;
	--jb-text-muted: #4B5563;
	--jb-white-soft: rgba(255, 255, 255, 0.78);
	--jb-white-line: rgba(255, 255, 255, 0.14);

	font-family: 'Inter', sans-serif;
	color: var(--jb-blue);
	line-height: 1.6;
	width: 100%;
	box-sizing: border-box;
}

.jsb-why *,
.jsb-why *::before,
.jsb-why *::after { box-sizing: border-box; }

.jsb-why img,
.jsb-why svg { max-width: 100%; }

/* ----------------------------------------------------------------------------
   Astra layout reset - /why-us/ (slug "why-us") ONLY.
   Removes the white gap Astra's #primary margin creates between the sticky
   site nav (#masthead, 100px, sticky) and the hero, and zeroes the content
   container padding so the hero spans the full viewport edge to edge. The
   Astra child theme caps .entry-content > * at 1240px with 20px gutters; that
   cap is lifted for the .jsb-why root so the hero band is full-width (each
   inner wrapper re-applies its own 1240px max-width). All rules are scoped
   under body.jsb-why-active, so other pages are untouched.

   The full-width rule below targets ONLY content-area containers (#primary /
   .content-area descendants), never #masthead: Astra's main nav renders its
   own .ast-container (.site-primary-header-wrap.ast-container) inside
   #masthead, and forcing it to 100% stretched the site header (logo/menu/
   Contact) edge-to-edge on /why-us/. A dedicated guard keeps the header
   container at the site-standard 1240px max-width with 20px gutters — the
   exact same computed style the home page header uses.
   ------------------------------------------------------------------------- */
body.jsb-why-active #primary .ast-container,
body.jsb-why-active .content-area .ast-container { max-width: 100% !important; padding: 0 !important; }
body.jsb-why-active #masthead .ast-container {
	max-width: 1240px !important;
	padding-left: 20px !important;
	padding-right: 20px !important;
}
body.jsb-why-active .ast-article-single { padding: 0 !important; margin: 0 !important; }
body.jsb-why-active .entry-content { margin: 0 !important; padding: 0 !important; }
body.jsb-why-active .content-area,
body.jsb-why-active #primary { margin-top: 0 !important; }
body.jsb-why-active .entry-content > .jsb-why,
body.jsb-why-active .jsb-why {
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
/* Hide the theme's duplicate auto page title (Astra renders it as
   <header class="entry-header"><h1 class="entry-title">); the page renders
   its own hero H1. A theme filter (astra_the_title_enabled) also removes it
   server-side; this CSS is the second line of defence. /why-us/ only. */
body.jsb-why-active .ast-article-single .entry-header,
body.jsb-why-active .ast-article-single .entry-title { display: none !important; }

/* ------------------------- Shared bits ------------------------- */
.jsb-why-eyebrow {
	font-size: 12px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--jb-gold);
	font-weight: 700;
	margin: 0 0 10px;
}
.jsb-why-eyebrow-light { color: var(--jb-gold); }

.jsb-why-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.22;
	color: var(--jb-blue);
	margin: 0 0 26px;
}

.jsb-why-inline-link {
	color: var(--jb-blue);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--jb-gold);
	text-underline-offset: 3px;
	transition: color 0.2s;
}
.jsb-why-inline-link:hover { color: var(--jb-gold-dark); }

/* ================= Hero ================= */
/* Full-viewport-width hero, flush under the sticky site nav (no white gap).
   Background: local warehouse photo (assets/images/why-us-warehouse.jpg,
   v1.2.0) with a deep-navy/black semi-transparent gradient overlay so the
   title/subtitle/description/badges stay clearly readable. background-size
   cover keeps the central corridor + storage drums in frame. Inner content
   max-width stays 1240px; hero height/padding unchanged. */
.jsb-why-hero {
	position: relative;
	width: 100%;
	background-color: var(--jb-navy-deep);
	background-image: url('images/why-us-warehouse.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffffff;
	padding: 96px 0 108px;
	overflow: hidden;
}
/* Readability mask: deepened blue/black semi-transparent gradient overlay
   (plus a subtle gold radial accent that matches the site language). Sits
   under the content (z-index 0) and never blocks clicks (pointer-events). */
.jsb-why-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(6, 15, 46, 0.68) 0%, rgba(6, 15, 46, 0.52) 42%, rgba(6, 15, 46, 0.82) 100%),
		linear-gradient(90deg, rgba(6, 15, 46, 0.38) 0%, rgba(6, 15, 46, 0.1) 55%, rgba(6, 15, 46, 0.32) 100%),
		radial-gradient(1100px 480px at 82% -10%, rgba(201, 168, 76, 0.16), rgba(201, 168, 76, 0) 60%);
}
.jsb-why-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}
/* Hero breadcrumb: Home / Why Us. Home -> site root (/), Why Us is the
   current page (no link). White link + light-gold current/separator for
   high contrast on the photo; rendered inside the hero inner, above the
   overlay, matching the site's navy/gold language. */
.jsb-why-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: #ffffff;
}
.jsb-why-breadcrumb-link {
	color: #ffffff;
	text-decoration: none !important;
	transition: color 0.2s;
}
.jsb-why-breadcrumb-link:hover {
	color: var(--jb-gold);
	text-decoration: none !important;
}
.jsb-why-breadcrumb-link:focus {
	text-decoration: none !important;
}
.jsb-why-breadcrumb-sep {
	color: var(--jb-gold);
	font-weight: 700;
	font-size: 12px;
}
.jsb-why-breadcrumb-current {
	color: var(--jb-gold);
	font-weight: 700;
}
.jsb-why-hero-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 46px;
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.5px;
	color: #ffffff;
	margin: 0 0 16px;
	max-width: 860px;
}
.jsb-why-hero-sub {
	font-size: 19px;
	font-weight: 600;
	line-height: 1.5;
	color: var(--jb-gold);
	margin: 0 0 18px;
	max-width: 760px;
}
.jsb-why-hero-desc {
	font-size: 16px;
	line-height: 1.7;
	color: var(--jb-white-soft);
	margin: 0 0 28px;
	max-width: 860px;
}
.jsb-why-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.jsb-why-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border: 1px solid var(--jb-white-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
	font-size: 13px;
	font-weight: 600;
	color: #ffffff;
	min-width: 0;
}
.jsb-why-badge-check {
	display: inline-flex;
	color: var(--jb-gold);
	flex: none;
}

/* ================= Sticky anchor nav ================= */
/* Sticky below the sticky site header (100px). On small screens the strip
   scrolls horizontally instead of wrapping/overflowing.

   Logged-in visitors get the WP admin bar: the site header then sticks at the
   admin bar's bottom (32px desktop, 46px at <=782px — WP core exposes this as
   --wp-admin--admin-bar--height), so --jsb-adminbar-h mirrors it and the
   anchor nav + anchor scroll offsets shift down by the same amount. Guests
   (no .admin-bar, variable undefined) fall back to 0 and keep the original
   100px / 176px / 168px values. */
body.jsb-why-active.admin-bar {
	--jsb-adminbar-h: var(--wp-admin--admin-bar--height, 32px);
}
.jsb-why-nav {
	position: sticky;
	top: calc(100px + var(--jsb-adminbar-h, 0px));
	z-index: 900;
	background: var(--jb-navy-deep);
	border-top: 1px solid var(--jb-white-line);
	border-bottom: 3px solid var(--jb-gold);
	box-shadow: 0 6px 18px rgba(6, 15, 46, 0.28);
}
.jsb-why-nav-inner {
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 24px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.jsb-why-nav-inner::-webkit-scrollbar { display: none; }
.jsb-why-nav-link {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	padding: 16px 18px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2px;
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
	border-bottom: 3px solid transparent;
}
.jsb-why-nav-link:hover,
.jsb-why-nav-link.is-active { color: var(--jb-gold); }
.jsb-why-nav-link.is-active { border-bottom-color: var(--jb-gold); }

/* Anchor targets clear the sticky header + sticky nav */
#story, #quality, #packaging, #guarantee {
	scroll-margin-top: calc(176px + var(--jsb-adminbar-h, 0px));
}

/* ================= Wrap / sections ================= */
.jsb-why-wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px 84px;
}
.jsb-why-sec { padding-top: 84px; }

/* ================= Module 1: Story stats (4 cards) ================= */
.jsb-why-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}
.jsb-why-stat {
	background: #ffffff;
	border: 1px solid var(--jb-line);
	border-top: 4px solid var(--jb-gold);
	border-radius: 10px;
	padding: 26px 22px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	box-shadow: 0 2px 10px rgba(8, 24, 69, 0.05);
	transition: transform 0.2s, box-shadow 0.2s;
}
.jsb-why-stat:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(8, 24, 69, 0.1);
}
.jsb-why-stat-num {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 42px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.5px;
	color: var(--jb-blue);
}
.jsb-why-stat-name {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--jb-gold-dark);
	text-transform: uppercase;
	letter-spacing: 0.6px;
}
.jsb-why-stat-desc {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--jb-text-muted);
	margin: 0;
	min-width: 0;
	overflow-wrap: break-word;
}

.jsb-why-pitch {
	background: var(--jb-bg-light);
	border-left: 4px solid var(--jb-gold);
	border-radius: 0 10px 10px 0;
	padding: 26px 28px;
}
.jsb-why-pitch-label {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--jb-gold-dark);
	margin: 0 0 10px;
}
.jsb-why-pitch-text {
	font-size: 16px;
	line-height: 1.75;
	color: var(--jb-blue);
	margin: 0;
	min-width: 0;
	overflow-wrap: break-word;
}

/* ================= Module 2: Quality band (3 stages) ================= */
.jsb-why-band {
	width: 100%;
	background: linear-gradient(180deg, var(--jb-navy-deep) 0%, #08153f 100%);
	color: #ffffff;
	padding: 84px 0 92px;
}
.jsb-why-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}
.jsb-why-band .jsb-why-title { color: #ffffff; }

.jsb-why-stages {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}
.jsb-why-stage {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--jb-white-line);
	border-radius: 12px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.jsb-why-stage-head {
	border-bottom: 1px solid var(--jb-white-line);
	padding-bottom: 18px;
	margin-bottom: 20px;
}
.jsb-why-stage-code {
	display: inline-block;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	color: var(--jb-navy-deep);
	background: var(--jb-gold);
	border-radius: 4px;
	padding: 4px 10px;
	margin-bottom: 12px;
}
.jsb-why-stage-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 4px;
}
.jsb-why-stage-sub {
	font-size: 13px;
	font-weight: 600;
	color: var(--jb-gold);
	margin: 0;
}
.jsb-why-stage-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.jsb-why-point {
	display: flex;
	gap: 14px;
	min-width: 0;
}
.jsb-why-point-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: var(--jb-gold-soft);
	border: 1px solid rgba(201, 168, 76, 0.35);
	color: var(--jb-gold);
}
.jsb-why-point-text { min-width: 0; }
.jsb-why-point-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 6px;
}
.jsb-why-point-desc {
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--jb-white-soft);
	margin: 0;
	min-width: 0;
	overflow-wrap: break-word;
}

.jsb-why-quality-footer {
	font-size: 15px;
	line-height: 1.7;
	color: var(--jb-white-soft);
	margin: 34px 0 0;
	min-width: 0;
	overflow-wrap: break-word;
}
.jsb-why-band .jsb-why-inline-link { color: var(--jb-gold); text-decoration-color: rgba(201, 168, 76, 0.5); }
.jsb-why-band .jsb-why-inline-link:hover { color: #ffffff; }

/* ================= Module 3: Packaging (4 cards + value) ================= */
.jsb-why-pack-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 44px;
}
.jsb-why-pack-card {
	background: #ffffff;
	border: 1px solid var(--jb-line);
	border-radius: 12px;
	padding: 26px 22px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
	box-shadow: 0 2px 10px rgba(8, 24, 69, 0.05);
	transition: transform 0.2s, box-shadow 0.2s;
}
.jsb-why-pack-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(8, 24, 69, 0.1);
}
.jsb-why-pack-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 10px;
	background: var(--jb-blue);
	color: var(--jb-gold);
}
.jsb-why-pack-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: var(--jb-blue);
	margin: 0;
}
.jsb-why-pack-specs { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.jsb-why-pack-spec {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.jsb-why-pack-spec dt {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--jb-gold-dark);
}
.jsb-why-pack-spec dd {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--jb-text-muted);
	margin: 0;
	min-width: 0;
	overflow-wrap: break-word;
}
.jsb-why-pack-note {
	margin: auto 0 0;
	padding-top: 12px;
	border-top: 1px dashed var(--jb-line);
	font-size: 13px;
	font-weight: 600;
	color: var(--jb-blue);
}

.jsb-why-value {
	background: var(--jb-bg-light);
	border: 1px solid var(--jb-line);
	border-radius: 12px;
	padding: 30px 28px;
}
.jsb-why-value-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--jb-blue);
	margin: 0 0 20px;
}
.jsb-why-value-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.jsb-why-value-card {
	display: flex;
	gap: 14px;
	background: #ffffff;
	border: 1px solid var(--jb-line);
	border-radius: 10px;
	padding: 18px 20px;
	min-width: 0;
}
.jsb-why-value-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: var(--jb-gold-soft);
	color: var(--jb-gold-dark);
}
.jsb-why-value-card-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--jb-blue);
	margin: 0 0 5px;
}
.jsb-why-value-card-desc {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--jb-text-muted);
	margin: 0;
	min-width: 0;
	overflow-wrap: break-word;
}
.jsb-why-value-cta {
	font-size: 15px;
	margin: 22px 0 0;
	min-width: 0;
	overflow-wrap: break-word;
}
.jsb-why-cta-arrow { display: inline-block; transition: transform 0.2s; }
.jsb-why-value-cta a:hover .jsb-why-cta-arrow { transform: translateX(4px); }

/* ================= Module 4: Guarantee + timeline ================= */
.jsb-why-band-guarantee {
	background: linear-gradient(180deg, #0a1c4d 0%, var(--jb-navy-deep) 100%);
}
.jsb-why-guarantee-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--jb-white-line);
	border-left: 4px solid var(--jb-gold);
	border-radius: 12px;
	padding: 30px 30px;
	margin-bottom: 40px;
}
.jsb-why-guarantee-icon { color: var(--jb-gold); }
.jsb-why-guarantee-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}
.jsb-why-guarantee-desc {
	font-size: 15px;
	line-height: 1.7;
	color: var(--jb-white-soft);
	margin: 0;
	min-width: 0;
	overflow-wrap: break-word;
}
.jsb-why-process-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--jb-gold);
	margin: 0 0 24px;
}
.jsb-why-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.jsb-why-timeline-item {
	position: relative;
	display: flex;
	gap: 22px;
	padding-bottom: 34px;
	min-width: 0;
}
.jsb-why-timeline-item:last-child { padding-bottom: 0; }
/* vertical connector line */
.jsb-why-timeline-item::before {
	content: '';
	position: absolute;
	left: 23px;
	top: 52px;
	bottom: 0;
	width: 2px;
	background: rgba(201, 168, 76, 0.35);
}
.jsb-why-timeline-item:last-child::before { display: none; }
.jsb-why-timeline-num {
	position: relative;
	z-index: 1;
	flex: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--jb-gold);
	color: var(--jb-navy-deep);
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 20px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.18);
}
.jsb-why-timeline-body {
	flex: 1;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--jb-white-line);
	border-radius: 10px;
	padding: 18px 22px;
	min-width: 0;
}
.jsb-why-timeline-head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.jsb-why-timeline-time {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: var(--jb-gold);
}
.jsb-why-timeline-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 17px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
}
.jsb-why-timeline-desc {
	font-size: 14px;
	line-height: 1.65;
	color: var(--jb-white-soft);
	margin: 0;
	min-width: 0;
	overflow-wrap: break-word;
}

/* ================= Bottom: Fast RFQ banner ================= */
.jsb-why-bottom {
	width: 100%;
	background:
		radial-gradient(900px 380px at 18% 120%, rgba(201, 168, 76, 0.16), rgba(201, 168, 76, 0) 60%),
		var(--jb-blue);
	color: #ffffff;
	padding: 84px 0;
}
.jsb-why-bottom-inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: center;
}
.jsb-why-bottom-title {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
	margin: 0 0 16px;
}
.jsb-why-bottom-sub {
	font-size: 16px;
	line-height: 1.7;
	color: var(--jb-white-soft);
	margin: 0 auto 34px;
	max-width: 720px;
}
.jsb-why-bottom-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}
.jsb-why-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	border-radius: 6px;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.jsb-why-btn:hover { transform: translateY(-2px); }
.jsb-why-btn-gold { background: var(--jb-gold); color: var(--jb-navy-deep); }
.jsb-why-btn-gold:hover { background: var(--jb-gold-dark); color: #ffffff; }
.jsb-why-btn-outline {
	background: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.45);
}
.jsb-why-btn-outline:hover { border-color: var(--jb-gold); color: var(--jb-gold); }

/* ================= Responsive ================= */
@media (max-width: 1024px) {
	.jsb-why-hero { padding: 72px 0 84px; }
	.jsb-why-hero-title { font-size: 38px; }
	.jsb-why-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jsb-why-pack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.jsb-why-stages { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
	.jsb-why-nav { top: calc(100px + var(--jsb-adminbar-h, 0px)); }
	.jsb-why-nav-inner { padding: 0 16px; flex-wrap: nowrap; scroll-snap-type: x proximity; scroll-padding-left: 16px; scroll-padding-right: 16px; }
	.jsb-why-nav-link { padding: 14px 14px; font-size: 13px; flex: 0 0 auto; scroll-snap-align: start; }
	/* Right-edge fade hint (mobile only): while more tabs are reachable, the
	   bar's right edge dissolves (mask on the nav bar itself, so the navy
	   background + clipped tab sliver both fade). Toggled by jsb-why.js via
	   .jsb-nav-scrollable / .jsb-nav-at-end on the nav; the hint disappears at
	   the end and returns when scrolling back left. Mask is paint-only - tabs
	   stay clickable, no overlay element is added. */
	.jsb-why-nav.jsb-nav-scrollable:not(.jsb-nav-at-end) {
		-webkit-mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 44px), transparent calc(100% - 16px));
		mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 44px), transparent calc(100% - 16px));
	}
	#story, #quality, #packaging, #guarantee { scroll-margin-top: calc(168px + var(--jsb-adminbar-h, 0px)); }

	.jsb-why-hero { padding: 56px 0 64px; }
	.jsb-why-hero-inner { padding: 0 18px; }
	.jsb-why-hero-title { font-size: 30px; }
	.jsb-why-hero-sub { font-size: 16.5px; }
	.jsb-why-hero-desc { font-size: 15px; }

	.jsb-why-wrap { padding: 0 18px 60px; }
	.jsb-why-sec { padding-top: 60px; }
	.jsb-why-inner { padding: 0 18px; }
	.jsb-why-band { padding: 60px 0 64px; }
	.jsb-why-title { font-size: 25px; }

	.jsb-why-pack-grid { grid-template-columns: 1fr; }
	.jsb-why-value-grid { grid-template-columns: 1fr; }
	.jsb-why-guarantee-card { padding: 24px 20px; }
	.jsb-why-bottom { padding: 60px 0; }
	.jsb-why-bottom-inner { padding: 0 18px; }
	.jsb-why-bottom-title { font-size: 27px; }
	.jsb-why-bottom-actions { flex-direction: column; align-items: stretch; }
}

@media (max-width: 480px) {
	.jsb-why-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
	.jsb-why-stat { padding: 20px 16px; }
	.jsb-why-stat-num { font-size: 34px; }
	.jsb-why-stat-desc { font-size: 12.5px; }
	.jsb-why-timeline-item { gap: 16px; }
	.jsb-why-timeline-item::before { left: 21px; }
}
