/* ==========================================================================
   Compound Storefront (Astra child) — design tokens
   Astra's header, primary menu, mobile menu, and footer widget areas are
   left alone structurally; only the homepage sections below and a light
   re-skin of Astra's native footer are styled here.
   ========================================================================== */
:root {
	--csc-navy: #1a2472;
	--csc-navy-dark: #11175a;
	--csc-navy-tint: #eef3fd;
	--csc-blue-border: #d9e5fb;
	--csc-black: #111318;
	--csc-text: #1f2430;
	--csc-text-muted: #5b6472;
	--csc-white: #ffffff;
	--csc-bg-alt: #f6f8fc;
	--csc-footer-bg: #00071A;
	--csc-radius: 14px;
	--csc-radius-sm: 8px;
	--csc-shadow: 0 10px 30px rgba(17, 23, 90, 0.08);
	--csc-max-width: 1320px;
}

.csc-front-page * { box-sizing: border-box; }

.csc-container {
	max-width: var(--csc-max-width);
	margin: 0 auto;
	padding: 0 24px;
}

/*
 * Astra wraps page-template content in its own (narrower) content
 * container, which is why the header/nav can look wider than the
 * homepage sections. Break each colored band out to the full browser
 * width regardless of that ancestor, then let .csc-container above
 * re-center the actual content inside it — same "full-width band,
 * centered content" pattern the reference site uses for its hero,
 * trust bar, and newsletter strip.
 */
/* Full-bleed width for .csc-hero / .csc-section / .csc-newsletter is applied
   via JS (assets/js/main.js), not a CSS percentage trick — on this install,
   Astra's own content wrapper sizes itself in a way that makes a CSS-only
   "calc(50% - 50vw)" breakout resolve against a zero-width ancestor and
   blow up the layout. The JS measures real pixel positions instead, which
   works regardless of Astra's internal container/grid setup. With JS
   disabled these sections simply render boxed (never broken/overflowing). */

/* Flat icon base — every csc_icon() SVG inherits size/color from its
   wrapping element (font-size controls size, color controls fill). */
.csc-icon {
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: -0.125em;
	flex-shrink: 0;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
}

/* Buttons ---------------------------------------------------------------- */
.csc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	border: 2px solid transparent;
	cursor: pointer;
	text-decoration: none !important;
	transition: transform .15s ease, opacity .15s ease;
}
.csc-btn[hidden] { display: none !important; } /* .csc-btn's own display:inline-flex otherwise beats the browser's native [hidden] rule */
.csc-btn:hover { transform: translateY(-1px); opacity: .92; }
.csc-btn--primary { background: var(--csc-navy); color: var(--csc-white); }
.csc-btn--dark { background: var(--csc-black); color: var(--csc-white); }
.csc-btn--ghost { background: transparent; color: var(--csc-text); border-color: #d0d5dd; }
.csc-btn--block { width: 100%; }

/* Age gate (works on any page, injected via wp_footer) ------------------- */
.csc-age-gate {
	position: fixed; inset: 0; z-index: 9999;
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.csc-age-gate::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,.55) 0%, var(--csc-navy-tint) 100%);
}
.csc-age-gate[hidden] { display: none; }
.csc-age-gate__card {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 540px;
	box-sizing: border-box;
	background: var(--csc-white);
	border: 1px solid var(--csc-blue-border);
	border-radius: var(--csc-radius);
	padding: 36px 32px;
	box-shadow: var(--csc-shadow);
}
.csc-age-gate__eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--csc-navy);
	margin: 0 0 10px;
}
.csc-age-gate__eyebrow::before {
	content: "";
	width: 3px; height: 14px;
	background: var(--csc-navy);
	border-radius: 2px;
	flex-shrink: 0;
}
.csc-age-gate__heading {
	font-size: 26px;
	font-weight: 800;
	color: var(--csc-black);
	margin: 0 0 10px;
}
.csc-age-gate__heading span {
	background: linear-gradient(135deg, var(--csc-navy), #4d6fe0);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.csc-age-gate__sub {
	color: var(--csc-text-muted);
	font-size: 14.5px;
	line-height: 1.5;
	margin: 0 0 22px;
}
.csc-age-gate__select-label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--csc-text);
	margin-bottom: 8px;
}
.csc-age-gate__select {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 13px 14px;
	border: 1px solid var(--csc-blue-border);
	border-radius: var(--csc-radius-sm);
	background: var(--csc-bg-alt);
	color: var(--csc-text);
	font-family: inherit;
	font-size: 14px;
	line-height: normal;
	min-height: 46px;
	margin-bottom: 18px;
}
.csc-age-gate__check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid var(--csc-blue-border);
	border-radius: var(--csc-radius-sm);
	background: var(--csc-bg-alt);
	font-size: 12.5px;
	color: var(--csc-text-muted);
	line-height: 1.4;
	margin-bottom: 10px;
	cursor: pointer;
}
.csc-age-gate__check input {
	flex-shrink: 0;
	accent-color: var(--csc-navy);
	width: 16px; height: 16px;
	margin-top: 2px;
}
.csc-age-gate__check a { color: var(--csc-navy); }
.csc-age-gate__actions {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.csc-age-gate__actions .csc-btn:disabled {
	opacity: .45;
	cursor: not-allowed;
	transform: none !important;
}
.csc-age-gate__leave {
	font-size: 13px;
	color: var(--csc-text-muted);
	text-decoration: underline;
}
.csc-age-gate__footnote {
	font-size: 11px;
	color: var(--csc-text-muted);
	text-align: center;
	margin: 18px 0 0;
}

/* Hero --------------------------------------------------------------------- */
.csc-hero {
	background: linear-gradient(180deg, #fbfcff 0%, #eef3fd 100%);
	overflow: hidden;
	position: relative;
}
/* When a Customizer hero image is set, the section itself becomes a
   full-width background photo (background-image is set inline via
   style="" in the template) with a left-to-right fade so the copy on
   the left stays readable over any photo. */
.csc-hero--has-image {
	background-size: cover;
	background-position: center;
}
.csc-hero--has-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #fbfcff 0%, rgba(251,252,255,0.94) 30%, rgba(251,252,255,0.55) 55%, rgba(251,252,255,0.1) 78%);
	pointer-events: none;
}
.csc-hero__upload-hint {
	margin: 0;
	padding: 8px 24px;
	font-size: 12px;
	text-align: center;
	background: #fff6d9;
	color: #7a6420;
	border-bottom: 1px solid #f0e2a8;
}
.csc-hero__grid {
	position: relative;
	z-index: 1;
	padding: 152px 24px 88px; /* generous top padding so the heading clears the sticky nav — was cramped against it */
	min-height: 360px;
	display: flex;
	align-items: center;
}
.csc-hero__copy { max-width: 620px; }
.csc-eyebrow {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: 12px;
	font-weight: 700;
	color: var(--csc-navy);
	margin: 0 0 14px;
}
.csc-eyebrow--center { text-align: center; }
.csc-hero__copy h1 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 .5em; line-height: 1.15; }
.csc-hero__subtext { color: var(--csc-text-muted); max-width: 46ch; margin-bottom: 24px; }

.csc-hero__badges {
	list-style: none;
	display: flex;
	gap: 28px;
	padding: 0; margin: 0 0 28px;
	flex-wrap: wrap;
}
.csc-hero__badges li { display: flex; flex-direction: column; font-size: 13px; color: var(--csc-text-muted); }
.csc-hero__badges strong { font-size: 14px; color: var(--csc-text); }
.csc-hero__badge-icon { font-size: 28px; margin-bottom: 4px; color: var(--csc-navy); }
.csc-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Full-bleed navy divider strip between the hero and the next section —
   it's now a direct sibling of .csc-hero (not nested inside it), so it
   reads as a clean break between the two rather than blending into the
   hero's own background. Full-bleed width is applied by the same JS
   measurement pass main.js already runs on .csc-hero (see the comment
   near the top of this file for why that's JS, not a CSS calc(vw) trick). */
.csc-trust-bar {
	background: var(--csc-navy);
}
.csc-trust-bar__wrap {
	max-width: var(--csc-max-width);
	margin: 0 auto;
	color: #fff;
}
.csc-trust-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 22px 36px;
}

/*
 * The global CTA band (assets: csc_render_global_cta_band() in
 * functions.php, hooked to get_footer() so it repeats on every page) ends
 * up as a sibling of the page's own content inside Astra's .ast-container
 * — and Astra makes that container a flex row. A second flex item there
 * breaks badly: Astra's flex sizing stretches it to match the OTHER
 * item's full-page height (confirmed live — a 4000px-tall band). Nothing
 * here needs flex layout, so drop that specific .ast-container back to a
 * normal block context, then break the band out to the full viewport
 * width with the standard calc(50vw) trick. That trick is safe here
 * (unlike .csc-hero above) specifically because the display:block fix
 * removes the flex ancestor that was corrupting the width math.
 */
.ast-container:has(.csc-global-cta) {
	display: block !important;
}
.csc-global-cta {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
}
.csc-trust-bar__item { display: flex; align-items: center; justify-content: center; gap: 12px; text-align: left; }
.csc-trust-bar__icon {
	font-size: 30px;
	color: #fff;
	flex-shrink: 0;
	display: inline-flex;
}
.csc-trust-bar__text { display: flex; flex-direction: column; }
.csc-trust-bar__item strong { font-size: 16px; }
.csc-trust-bar__item span { font-size: 13px; color: #c4cdf0; }

/* Sections ------------------------------------------------------------------ */
.csc-section { padding: 56px 0; }
.csc-front-page .csc-section { padding: 72px 0; }
.csc-front-page .csc-section:nth-of-type(even) { background: var(--csc-bg-alt); }
.csc-section__title { font-size: clamp(24px, 3vw, 32px); margin: 0 0 .5em; }
.csc-section__title--center { text-align: center; margin-bottom: 44px; }
.csc-section__heading-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 30px; }
.csc-link { font-weight: 600; font-size: 14px; }

/* Feature grid --------------------------------------------------------------- */
.csc-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.csc-feature-card {
	background: var(--csc-navy-tint);
	border: 1px solid var(--csc-blue-border);
	border-radius: var(--csc-radius);
	padding: 26px;
}
.csc-feature-card__icon { font-size: 36px; color: var(--csc-navy); display: block; margin-bottom: 14px; }
.csc-feature-card h3 { font-size: 17px; margin: 0 0 .4em; }
.csc-feature-card p { color: var(--csc-text-muted); font-size: 14px; margin-bottom: 14px; }
.csc-feature-card__link { font-weight: 700; font-size: 13.5px; }

/* Product carousel ------------------------------------------------------------ */
.csc-product-carousel { position: relative; }
.csc-product-carousel__track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding-bottom: 8px;
	scrollbar-width: none;
	list-style: none;
	margin: 0;
}
.csc-product-carousel__track::-webkit-scrollbar { display: none; }
.csc-product-card {
	flex: 0 0 260px;
	background: var(--csc-white);
	border: 1px solid var(--csc-blue-border);
	border-radius: var(--csc-radius);
	overflow: hidden;
}
.csc-product-card__image { background: var(--csc-navy-tint); display: block; aspect-ratio: 1/1; overflow: hidden; }
.csc-product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.csc-product-card__body { padding: 18px; }
.csc-product-card__body h3 { font-size: 15px; margin: 0 0 6px; text-transform: uppercase; }
.csc-product-card__price { margin: 0 0 14px; }
.csc-price--was { text-decoration: line-through; color: #9aa2b1; margin-right: 8px; font-size: 13px; }
.csc-price--now { font-weight: 700; color: var(--csc-navy); }
.csc-carousel__arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 40px; height: 40px; border-radius: 50%;
	border: 1px solid var(--csc-blue-border);
	background: var(--csc-white);
	cursor: pointer; font-size: 14px;
	box-shadow: var(--csc-shadow);
	z-index: 2;
}
.csc-carousel__arrow--prev { left: -8px; }
.csc-carousel__arrow--next { right: -8px; }

/* Quality section — container-width rounded card with a background photo ---------- */
.csc-quality-section {
	background: var(--csc-white) !important;
}
.csc-quality-section__card {
	position: relative;
	background: linear-gradient(135deg, var(--csc-navy-dark) 0%, var(--csc-navy) 100%);
	background-size: cover;
	background-position: center;
	color: #fff;
	border-radius: var(--csc-radius);
	overflow: hidden;
	padding: 56px;
}
.csc-quality-section__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(17,23,90,0.94) 0%, rgba(17,23,90,0.88) 38%, rgba(26,36,114,0.45) 65%, rgba(26,36,114,0.15) 100%);
	pointer-events: none;
}
.csc-quality-section__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.csc-quality-section h2 { color: #fff; }
.csc-quality-section__intro { color: #c4cdf0; }

.csc-quality-stats { display: flex; align-items: center; gap: 24px; margin: 22px 0; }
.csc-quality-stats__item { display: flex; flex-direction: column; }
.csc-quality-stats__item strong { font-size: 26px; }
.csc-quality-stats__item span { font-size: 13px; color: #a9b6e6; }
.csc-quality-stats__divider { width: 1px; height: 34px; background: rgba(255,255,255,0.2); }

.csc-quality-pills { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; padding: 0; }
.csc-quality-pills li {
	padding: 7px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	background: rgba(255,255,255,0.08);
	color: #c4cdf0;
	border: 1px solid rgba(255,255,255,0.15);
}
.csc-quality-pills li.is-active { background: #fff; color: var(--csc-navy); border-color: #fff; }

.csc-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.csc-quality-section__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.csc-quality-section__note { margin-top: 16px; font-size: 13px; color: #a9b6e6; }

.csc-quality-section__media { position: static; min-height: 1px; }
.csc-quality-section__media-placeholder {
	background: rgba(255,255,255,0.06);
	border: 2px dashed rgba(255,255,255,0.25);
	border-radius: var(--csc-radius);
	aspect-ratio: 4/3;
	display: flex; align-items: center; justify-content: center;
	color: #a9b6e6;
}
.csc-quality-badge {
	position: absolute; bottom: 24px; right: 24px;
	background: var(--csc-white);
	color: var(--csc-navy);
	border-radius: var(--csc-radius-sm);
	padding: 12px 16px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	box-shadow: var(--csc-shadow);
	display: flex; align-items: flex-start; gap: 8px;
}
.csc-quality-badge span { font-weight: 400; color: var(--csc-text-muted); }
.csc-quality-badge__check {
	background: var(--csc-navy); color: #fff;
	width: 18px; height: 18px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 11px; flex-shrink: 0; margin-top: 2px;
}

/* Why choose — bordered icon cards --------------------------------------------------- */
.csc-why-choose__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.csc-why-choose__card {
	border: 1px solid var(--csc-blue-border);
	border-radius: var(--csc-radius);
	padding: 22px;
}
.csc-why-choose__icon { font-size: 32px; color: var(--csc-navy); display: block; margin-bottom: 12px; }
.csc-why-choose__card h3 { font-size: 15px; margin: 0 0 6px; }
.csc-why-choose__card p { margin: 0; font-size: 13.5px; color: var(--csc-text-muted); }

/* FAQ ------------------------------------------------------------------------------ */
.csc-faq-accordion { max-width: 760px; margin: 0 auto; }
.csc-faq-accordion--grid {
	max-width: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 20px;
	align-items: start;
}
.csc-faq-item {
	border: 1px solid #e6e9f0;
	border-radius: var(--csc-radius-sm);
	padding: 6px 20px;
	margin-bottom: 12px;
	background: var(--csc-white);
}
.csc-faq-item summary { cursor: pointer; font-weight: 600; padding: 14px 0; list-style: none; }
.csc-faq-item summary::-webkit-details-marker { display: none; }
.csc-faq-item summary::after { content: "+"; float: right; font-size: 20px; color: var(--csc-navy); }
.csc-faq-item[open] summary::after { content: "–"; }
.csc-faq-item__body { padding-bottom: 16px; color: var(--csc-text-muted); }

/* Floating-product CTA band + nested newsletter card -------------------------------- */
.csc-cta-band {
	background: linear-gradient(135deg, #7c93d4 0%, #6c85c9 100%) !important;
	overflow: visible;
	position: relative;
	padding-top: 72px !important;
	z-index: 1;
}
.csc-cta-band__inner { position: relative; text-align: center; padding-bottom: 88px; z-index: 1; }
.csc-cta-band__copy h2 {
	color: #fff;
	max-width: 640px;
	margin: 0 auto 26px;
	font-size: clamp(20px, 2.6vw, 30px);
}
.csc-cta-band__product {
	position: absolute;
	top: 50%;
	width: 150px;
	filter: drop-shadow(0 18px 24px rgba(0,0,0,0.25));
}
.csc-cta-band__product--left { left: 4%; margin-top: -75px; }
.csc-cta-band__product--right {
	right: 4%;
	top: 0;
	margin-top: -160px;
}

/* Floating vial animation — a gentle up/down drift. The right-hand vial
   (.csc-float--high) drifts higher so it pokes above the band's top
   edge into the section above it. */
@keyframes csc-float-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-16px); }
}
.csc-float {
	animation: csc-float-bob 5.5s ease-in-out infinite;
}
.csc-cta-band__product--left.csc-float { animation-delay: 0s; }
.csc-cta-band__product--right.csc-float--high {
	animation-name: csc-float-bob;
	animation-duration: 6.5s;
	animation-delay: -3s;
}

.csc-newsletter__inner {
	max-width: 820px;
	margin: 0 auto 72px;
	background: rgba(255,255,255,0.55);
	border-radius: 20px;
	padding: 34px 40px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.csc-newsletter__inner h3 { color: var(--csc-navy-dark); margin: 0 0 6px; font-size: 19px; }
.csc-newsletter__inner p { color: #333c5c; margin-bottom: 20px; font-size: 13.5px; }
.csc-newsletter__form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.csc-newsletter__form input[type="email"] {
	flex: 1; padding: 13px 18px; border-radius: 999px; border: none; font-size: 15px;
}
.csc-newsletter__notice { margin-top: 14px; font-size: 14px; }
.csc-newsletter__notice--success { color: var(--csc-navy-dark); font-weight: 600; }
.csc-newsletter__notice--error { color: #a32d2d; font-weight: 600; }

/* --------------------------------------------------------------------------------------
   Light re-skin of Astra's OWN footer widget area + footer bar, so the footer reads as
   part of the same design without overriding any Astra template file. Astra has used
   #colophon as the footer landmark ID and .footer-widget-area for widget columns across
   recent versions — if your Astra version renders different class names, right-click >
   Inspect on the live footer and I can adjust these selectors in a couple of minutes.
   -------------------------------------------------------------------------------------- */
#colophon,
#colophon .footer-widget-area,
#colophon .ast-builder-footer-row-container,
#colophon .site-below-footer-wrap,
#colophon .footer-bar,
#colophon .ast-small-footer {
	background-color: var(--csc-footer-bg);
	color: #c4cdf0;
}
#colophon a { color: #c4cdf0; }
#colophon a:hover { color: #fff; }
#colophon h1, #colophon h2, #colophon h3, #colophon h4, #colophon h5,
#colophon .widget-title { color: #fff; }
#colophon .footer-bar,
#colophon .ast-small-footer,
#colophon .site-below-footer-wrap {
	border-top: 1px solid rgba(255,255,255,0.12);
	font-size: 12px;
}

/* Shop shell spacing (Astra already provides the container/wrapper) ---------------- */
.woocommerce-page .ast-container,
.single-product .ast-container { padding-top: 24px; padding-bottom: 48px; }

/* Responsive --------------------------------------------------------------------------- */
@media (max-width: 900px) {
	.csc-hero__grid { padding: 108px 24px 56px; min-height: 0; }
	.csc-trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 18px 20px; padding: 20px 24px; }
	.csc-feature-grid { grid-template-columns: repeat(2, 1fr); }
	.csc-quality-section__card { padding: 32px; }
	.csc-quality-section__grid { grid-template-columns: 1fr; }
	.csc-quality-section__media { margin-top: 8px; }
	.csc-why-choose__grid { grid-template-columns: repeat(2, 1fr); }
	.csc-faq-accordion--grid { grid-template-columns: 1fr; }
	.csc-cta-band__product { width: 80px; }
	.csc-cta-band__product--right { margin-top: -100px; }
	.csc-newsletter__inner { padding: 28px 24px; }
}
@media (max-width: 560px) {
	.csc-feature-grid { grid-template-columns: 1fr; }
	.csc-trust-bar__grid { grid-template-columns: 1fr 1fr; padding: 18px; }
	.csc-trust-bar__item { justify-content: flex-start; }
	.csc-why-choose__grid { grid-template-columns: 1fr; }
	.csc-newsletter__form { flex-direction: column; }
	.csc-quality-section__ctas { flex-direction: column; }
	.csc-quality-section__card { padding: 24px; border-radius: var(--csc-radius-sm); }
	.csc-cta-band__product { display: none; }
}


/* FAQ answers sometimes contain long unbroken strings (email addresses)
 * glued to surrounding words with non-breaking spaces by the editor. On
 * narrow screens that prevents the line from wrapping at all, so the
 * text overflows past the card edge. Force a wrap so it always fits. */
.csc-faq-item__body {
	overflow-wrap: anywhere;
	word-break: break-word;
}
.csc-faq-item__body a {
	overflow-wrap: anywhere;
	word-break: break-word;
}

/* =========================================================
   Contact Page — new sections (hero button, scroll cue,
   order lookup card, support CTA, get-in-touch grid)
   ========================================================= */

.csc-scroll-cue {
	display: flex;
	justify-content: center;
	margin-top: 28px;
	animation: csc-scroll-bounce 2s ease-in-out infinite;
}
.csc-scroll-cue svg {
	width: 26px;
	height: 26px;
	color: var(--csc-white);
	opacity: 0.85;
}
@keyframes csc-scroll-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(8px); }
}

.coa-hero-actions {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

/* Order lookup card */
.csc-order-lookup {
	max-width: var(--csc-max-width);
	margin: -40px auto 40px;
	padding: 0 24px;
	position: relative;
	z-index: 3;
}
.csc-order-lookup-card {
	display: flex;
	align-items: center;
	gap: 18px;
	background: var(--csc-white);
	border: 1px solid var(--csc-blue-border);
	border-radius: var(--csc-radius);
	box-shadow: var(--csc-shadow);
	padding: 22px 26px;
	max-width: 760px;
	margin: 0 auto;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.csc-order-lookup-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(17,23,90,0.14);
}
.csc-order-lookup-card__icon {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--csc-navy-tint);
	color: var(--csc-navy);
	display: flex;
	align-items: center;
	justify-content: center;
}
.csc-order-lookup-card__icon svg {
	width: 22px;
	height: 22px;
}
.csc-order-lookup-card__body {
	flex: 1 1 auto;
}
.csc-order-lookup-card__title {
	margin: 0 0 4px;
	font-size: 17px;
	font-weight: 700;
	color: var(--csc-text);
}
.csc-order-lookup-card__sub {
	margin: 0;
	font-size: 14px;
	color: var(--csc-text-muted);
	line-height: 1.5;
}
.csc-order-lookup-card__chevron {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	color: var(--csc-text-muted);
}

/* Support CTA card */
.csc-support-cta {
	max-width: 820px;
	margin: 0 auto;
	background: var(--csc-navy-tint);
	border: 1px solid var(--csc-blue-border);
	border-radius: var(--csc-radius);
	padding: 44px 32px;
	text-align: center;
}
.csc-support-cta__icon {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--csc-white);
	color: var(--csc-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	box-shadow: var(--csc-shadow);
}
.csc-support-cta__icon svg {
	width: 24px;
	height: 24px;
}
.csc-support-cta__title {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 800;
	color: var(--csc-text);
}
.csc-support-cta__sub {
	margin: 0 auto 24px;
	max-width: 520px;
	color: var(--csc-text-muted);
	line-height: 1.6;
}
.csc-support-cta .csc-scroll-cue {
	margin-top: 22px;
	animation: none;
}
.csc-support-cta .csc-scroll-cue svg {
	color: var(--csc-navy);
	opacity: 0.5;
}

/* Get in touch / send a message two-column section */
.csc-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}
@media (max-width: 860px) {
	.csc-contact-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}
.csc-contact-col__title {
	margin: 0 0 14px;
	font-size: 26px;
	font-weight: 800;
	color: var(--csc-text);
}
.csc-contact-lead {
	margin: 0 0 28px;
	color: var(--csc-text-muted);
	line-height: 1.6;
	font-size: 15px;
}
.csc-contact-info-cards {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.csc-contact-info-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--csc-white);
	border: 1px solid var(--csc-blue-border);
	border-radius: var(--csc-radius-sm);
	padding: 18px 20px;
}
.csc-contact-info-card__icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--csc-navy-tint);
	color: var(--csc-navy);
	display: flex;
	align-items: center;
	justify-content: center;
}
.csc-contact-info-card__icon svg {
	width: 18px;
	height: 18px;
}
.csc-contact-info-card__label {
	margin: 0 0 3px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--csc-text-muted);
}
.csc-contact-info-card__value {
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	color: var(--csc-text);
}
.csc-contact-info-card__value a {
	color: inherit;
	text-decoration: none;
}
.csc-contact-info-card__value a:hover {
	color: var(--csc-navy);
}

.csc-contact-form-card {
	background: var(--csc-white);
	border: 1px solid var(--csc-blue-border);
	border-radius: var(--csc-radius);
	box-shadow: var(--csc-shadow);
	padding: 32px;
}
@media (max-width: 480px) {
	.csc-contact-form-card {
		padding: 22px 18px;
	}
}
