/* =====================================================================
   AlphaQuest Research — main.css (v3)
   High-fidelity port of the Next.js design (pink palette, polished hero,
   dashboard SVG, story/founder, comprehensive a11y widget).
   ===================================================================== */

/* -------- tokens -------- */
:root {
	--aq-navy-50:  #f4f7fb;
	--aq-navy-100: #e3eaf3;
	--aq-navy-200: #c1cee0;
	--aq-navy-300: #94a8c4;
	--aq-navy-500: #4a6485;
	--aq-navy-600: #2f4763;
	--aq-navy-700: #1d2f47;
	--aq-navy-800: #122036;
	--aq-navy-900: #0A1929;

	--aq-pink-50:  #eaf4fa;
	--aq-pink-100: #d2e7f1;
	--aq-pink-200: #a5cfe3;
	--aq-pink-300: #79b6d5;
	--aq-pink-400: #4c9ec7;
	/* Primary brand action — bumped two stops lighter to match the
	   "lighter sky blue" requested. -500 is the resting button color,
	   -600 is the hover (still legible on white & dark). */
	--aq-pink-500: #4c9ec7;
	--aq-pink-600: #2a7fa8;
	--aq-pink-700: #1f6688;

	--aq-rose-500: #e23e57;
	--aq-emerald:  #0a9d6c;
	--aq-amber-500:#f59e0b;
	--aq-sky-500:  #0ea5e9;

	--aq-bg:           #ffffff;
	--aq-bg-muted:     #f3f8fc;
	--aq-bg-muted-2:   #e4eef6;
	--aq-fg:           var(--aq-navy-900);
	--aq-fg-muted:     var(--aq-navy-600);
	--aq-border:       rgba(10,25,41,.09);
	--aq-border-soft:  rgba(42, 127, 168,.22);
	--aq-card-bg:      #ffffff;
	--aq-card-shadow:  0 1px 2px rgba(10,25,41,.04), 0 10px 28px rgba(10,25,41,.06);
	--aq-card-shadow-hi:0 4px 12px rgba(10,25,41,.06), 0 22px 60px rgba(42, 127, 168,.18);

	--aq-radius:    14px;
	--aq-radius-sm: 8px;
	--aq-radius-lg: 22px;
	--aq-container: 1200px;

	--aq-font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--aq-font-display: "Sora", var(--aq-font-sans);
	--aq-font-mono:    ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

	--aq-shadow-glow: 0 12px 38px -10px rgba(42, 127, 168,.45);

	--a11y-font-scale: 1;
	--a11y-content-scale: 1;
	--a11y-line-height: normal;
	--a11y-letter-spacing: normal;
}
html.dark {
	--aq-bg: #070d18;
	--aq-bg-muted: #0b1426;
	--aq-bg-muted-2: #141a2e;
	--aq-fg: #f1f5fb;
	--aq-fg-muted: #b6c3d6;
	--aq-border: rgba(255,255,255,.08);
	--aq-border-soft: rgba(121,182,213,.22);
	--aq-card-bg: #0f152a;
	--aq-card-shadow: 0 1px 2px rgba(0,0,0,.5), 0 14px 36px rgba(0,0,0,.35);
	--aq-card-shadow-hi: 0 1px 2px rgba(0,0,0,.6), 0 24px 60px rgba(0,0,0,.55);
}

/* -------- base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body.aq-body {
	margin: 0;
	font-family: var(--aq-font-sans);
	background: var(--aq-bg);
	color: var(--aq-fg);
	font-size: calc(16px * var(--a11y-font-scale));
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; }
::selection { background: var(--aq-pink-200); color: var(--aq-navy-900); }

a { color: var(--aq-pink-700); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--aq-pink-600); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
html.dark a { color: var(--aq-pink-300); }
html.dark a:hover { color: var(--aq-pink-200); }

:focus-visible { outline: 2px solid var(--aq-pink-500); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3, h4 { font-family: var(--aq-font-display); color: var(--aq-fg); margin: 0 0 .4em; line-height: 1.18; letter-spacing: -0.01em; }
h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; }
h3 { font-size: 20px; font-weight: 700; }
p  { margin: 0 0 1em; }

.aq-screen-reader, .screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
.aq-skip-link { position: absolute; left: -10000px; top: auto; }
.aq-skip-link:focus { left: 12px; top: 12px; z-index: 999; background: var(--aq-navy-900); color: #fff; padding: 8px 12px; border-radius: 6px; }

/* -------- containers / sections -------- */
.aq-container { width: 100%; max-width: var(--aq-container); margin: 0 auto; padding: 0 20px; }
.aq-container--narrow { max-width: 760px; }

.aq-section { padding: 72px 0; }
@media (min-width: 1024px) { .aq-section { padding: 96px 0; } }
.aq-section--muted { background: var(--aq-bg-muted); }

.aq-section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.aq-eyebrow {
	display: inline-block; font-size: 11px; font-weight: 700; color: var(--aq-pink-700);
	background: var(--aq-pink-50); border: 1px solid var(--aq-pink-200);
	letter-spacing: .18em; text-transform: uppercase;
	padding: 6px 12px; border-radius: 999px; margin: 0;
}
html.dark .aq-eyebrow { color: var(--aq-pink-300); background: rgba(76,158,199,.08); border-color: rgba(76,158,199,.22); }
.aq-section-title { margin: 14px 0 12px; }
.aq-section-sub { color: var(--aq-fg-muted); font-size: 17px; max-width: 60ch; margin: 0 auto; }

/* -------- grids -------- */
.aq-grid { display: grid; gap: 22px; }
.aq-grid--2 { grid-template-columns: 1fr; }
.aq-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .aq-grid--2, .aq-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .aq-grid--3 { grid-template-columns: repeat(3, 1fr); } }

/* services 3-2 layout */
.aq-grid--services { grid-template-columns: 1fr; }
@media (min-width: 640px) { .aq-grid--services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
	.aq-grid--services { grid-template-columns: repeat(6, 1fr); }
	.aq-grid--services > .aq-card { grid-column: span 2; }
	.aq-grid--services > .aq-svc--row2-1 { grid-column: 2 / span 2; }
	.aq-grid--services > .aq-svc--row2-2 { grid-column: 4 / span 2; }
}

.aq-grid--process { grid-template-columns: 1fr; }
@media (min-width: 640px) { .aq-grid--process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .aq-grid--process { grid-template-columns: repeat(5, 1fr); } }

/* -------- header -------- */
.aq-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50;
	background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--aq-border);
}
html.dark .aq-header { background: rgba(7,13,24,.85); }
/* Push page content below the fixed header */
body { padding-top: 72px; }
@media (max-width: 640px) { body { padding-top: 64px; } }
.aq-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.aq-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--aq-fg); font-weight: 700; }
.aq-logo img { height: 40px; width: auto; display: block; }
.aq-logo__name { font-family: var(--aq-font-display); font-weight: 800; font-size: 18px; letter-spacing: .2px; }
.aq-nav { display: none; }
@media (min-width: 1024px) { .aq-nav { display: block; } }
.aq-nav__list { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.aq-nav__link { display: inline-block; padding: 8px 14px; border-radius: 10px; color: var(--aq-fg-muted); font-weight: 500; font-size: 15px; }
.aq-nav__link:hover { background: var(--aq-pink-50); color: var(--aq-pink-700); text-decoration: none; }
html.dark .aq-nav__link:hover { background: rgba(76,158,199,.10); color: var(--aq-pink-300); }
.aq-header__actions { display: flex; align-items: center; gap: 8px; }
.aq-icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: transparent; border: 1px solid var(--aq-border); border-radius: 10px; cursor: pointer; color: var(--aq-fg); }
.aq-icon-btn:hover { background: var(--aq-bg-muted); border-color: var(--aq-border-soft); }
html.dark .aq-icon-btn .aq-sun { display: block; }
html.dark .aq-icon-btn .aq-moon { display: none; }
.aq-icon-btn .aq-sun { display: none; }
.aq-icon-btn .aq-moon { display: block; }
.aq-hidden-sm { display: none; }
@media (min-width: 768px) { .aq-hidden-sm { display: block; } }

/* -------- buttons -------- */
.aq-btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 22px; border-radius: 12px; border: 1px solid transparent;
	font-weight: 600; font-size: 14.5px; cursor: pointer;
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.aq-btn:hover { transform: translateY(-1px); text-decoration: none; }
.aq-btn--lg { padding: 14px 26px; font-size: 15.5px; }
.aq-btn--primary { background: var(--aq-pink-500); color: #fff; box-shadow: 0 8px 22px -6px rgba(76,158,199,.45); }
.aq-btn--primary:hover { background: var(--aq-pink-600); box-shadow: var(--aq-shadow-glow); }
.aq-btn--ghost { background: var(--aq-card-bg); color: var(--aq-fg); border-color: var(--aq-border); }
.aq-btn--ghost:hover { background: var(--aq-bg-muted); border-color: var(--aq-pink-300); color: var(--aq-pink-700); }
html.dark .aq-btn--ghost:hover { color: var(--aq-pink-300); }

.aq-btn--shimmer { position: relative; overflow: hidden; }
.aq-btn--shimmer::after {
	content: ""; position: absolute; inset: 0 auto 0 0; width: 50%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
	transform: translateX(-150%) skewX(-18deg); animation: aq-shimmer 3.6s ease-in-out infinite;
}
@keyframes aq-shimmer { 0%, 30% { transform: translateX(-150%) skewX(-18deg); } 70%, 100% { transform: translateX(380%) skewX(-18deg); } }

/* -------- icons / dots -------- */
.aq-icon { width: 18px; height: 18px; flex-shrink: 0; }
.aq-icon--pink { color: var(--aq-pink-600); }
.aq-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; vertical-align: middle; }
.aq-dot--emerald { background: var(--aq-emerald); }
.aq-dot--pink { background: var(--aq-pink-500); }
.aq-dot--navy { background: var(--aq-navy-700); }
.aq-dot--amber { background: var(--aq-amber-500); }

/* -------- hero -------- */
.aq-hero {
	position: relative; overflow: hidden;
	background: radial-gradient(70% 80% at 75% 15%, var(--aq-pink-50) 0%, transparent 60%), linear-gradient(180deg, #ffffff 0%, var(--aq-bg-muted) 100%);
	padding: 72px 0 88px;
}
html.dark .aq-hero { background: radial-gradient(70% 80% at 75% 15%, rgba(76,158,199,.10) 0%, transparent 60%), var(--aq-navy-900); }
@media (min-width: 1024px) { .aq-hero { padding: 96px 0 116px; } }
.aq-hero__grid {
	position: absolute; inset: 0; opacity: .35; pointer-events: none;
	background-image:
		linear-gradient(to right, rgba(10,25,41,.04) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(10,25,41,.04) 1px, transparent 1px);
	background-size: 60px 60px;
}
html.dark .aq-hero__grid { opacity: .06; }

.aq-hero__inner { display: grid; gap: 40px; align-items: center; position: relative; }
@media (min-width: 1024px) { .aq-hero__inner { grid-template-columns: 7fr 5fr; gap: 56px; } }

.aq-hero__badge {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 14px; border-radius: 999px;
	background: var(--aq-pink-50); border: 1px solid var(--aq-pink-200);
	color: var(--aq-pink-700); font-size: 11.5px; font-weight: 700;
	text-transform: uppercase; letter-spacing: .12em;
}
.aq-pulse { position: relative; width: 8px; height: 8px; display: inline-block; }
.aq-pulse > span:first-child { position: absolute; inset: 0; border-radius: 999px; background: var(--aq-pink-500); animation: aq-ring 1.8s ease-out infinite; }
.aq-pulse > span:last-child { position: relative; display: block; width: 8px; height: 8px; border-radius: 999px; background: var(--aq-pink-600); }
@keyframes aq-ring { 0% { transform: scale(.5); opacity: .65; } 100% { transform: scale(2.4); opacity: 0; } }

.aq-hero__title { margin-top: 20px; font-size: clamp(36px, 5.4vw, 64px); font-weight: 800; letter-spacing: -.02em; line-height: 1.06; }
.aq-hero__title .aq-hero__accent {
	display: inline-block;
	background: linear-gradient(120deg, #D4AF37 0%, #B8860B 55%, #E5B84B 100%);
	background-size: 200% auto;
	-webkit-background-clip: text; background-clip: text; color: transparent;
	animation: aq-gradient-shift 8s ease-in-out infinite;
	padding-bottom: 4px;
}
@keyframes aq-gradient-shift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.aq-hero__sub { color: var(--aq-fg-muted); font-size: 18px; max-width: 58ch; margin: 20px 0 0; }
.aq-hero__cta { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.aq-hero__bullets {
	margin: 28px 0 0; padding: 0; list-style: none;
	display: flex; flex-wrap: wrap; gap: 8px 24px;
	color: var(--aq-fg-muted); font-size: 14.5px;
}
.aq-hero__bullets li { display: inline-flex; align-items: center; gap: 8px; }

.aq-hero__stats {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 18px; margin: 38px 0 0; padding-top: 22px;
	border-top: 1px solid var(--aq-border); max-width: 540px;
}
.aq-hero__stats dd { font-family: var(--aq-font-display); font-weight: 800; font-size: 26px; color: var(--aq-fg); margin: 0; }
.aq-hero__stats dt { margin-top: 4px; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--aq-navy-500); }
html.dark .aq-hero__stats dt { color: var(--aq-navy-300); }

/* hero visual / dashboard mock */
.aq-hero__visual { position: relative; }
.aq-hero__halo {
	position: absolute; inset: -24px; z-index: -1; filter: blur(48px);
	background: radial-gradient(60% 60% at 70% 30%, rgba(42,127,168,.25), transparent 70%);
}
.aq-float { animation: aq-float 8s ease-in-out infinite; }
@keyframes aq-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.aq-dashboard {
	position: relative; background: var(--aq-card-bg);
	border: 1px solid var(--aq-border); border-radius: var(--aq-radius-lg);
	box-shadow: var(--aq-card-shadow-hi); overflow: hidden;
}
.aq-dashboard__chrome {
	display: flex; align-items: center; justify-content: space-between;
	padding: 8px 16px; border-bottom: 1px solid var(--aq-border);
	background: var(--aq-bg-muted);
}
.aq-dashboard__dots { display: flex; gap: 6px; }
.aq-dashboard__dots span { width: 9px; height: 9px; border-radius: 50%; opacity: .85; }
.aq-dashboard__dots span:nth-child(1) { background: #a5cfe3; }
.aq-dashboard__dots span:nth-child(2) { background: #fcd34d; }
.aq-dashboard__dots span:nth-child(3) { background: #86efac; }
.aq-dashboard__title { font-family: var(--aq-font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--aq-navy-500); }
.aq-dashboard__ver { font-family: var(--aq-font-mono); font-size: 10px; color: var(--aq-navy-300); }

.aq-dashboard__quotes {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
	padding: 16px 20px; border-bottom: 1px solid var(--aq-border);
}
@media (min-width: 480px) { .aq-dashboard__quotes { grid-template-columns: repeat(4, 1fr); } }
.aq-dashboard__quotes p { margin: 0; line-height: 1.2; }
.aq-dashboard__quotes .k { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--aq-navy-500); }
.aq-dashboard__quotes .v { font-family: var(--aq-font-display); font-weight: 700; font-size: 18px; margin-top: 2px; font-variant-numeric: tabular-nums; }
.aq-dashboard__quotes .d { margin-top: 2px; font-size: 11px; font-weight: 600; font-variant-numeric: tabular-nums; }
.aq-dashboard__quotes .up { color: var(--aq-emerald); }
.aq-dashboard__quotes .dn { color: var(--aq-rose-500); }
.aq-dashboard__quotes .nu { color: var(--aq-navy-500); }

.aq-dashboard__chart { padding: 12px 8px 4px; }
.aq-dashboard__chart svg { display: block; width: 100%; height: auto; }
.aq-chart-scroll { animation: aq-chart-scroll 22s linear infinite; }
@keyframes aq-chart-scroll { from { transform: translateX(0); } to { transform: translateX(-570px); } }

.aq-dashboard__heat { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; padding: 12px; border-top: 1px solid var(--aq-border); }
.aq-heat { padding: 6px 4px; border-radius: 8px; text-align: center; font-variant-numeric: tabular-nums; }
.aq-heat .l { margin: 0; font-size: 9.5px; font-weight: 700; letter-spacing: .08em; }
.aq-heat .t { margin: 2px 0 0; font-size: 10.5px; font-weight: 700; }
.aq-heat.up { background: #d1fae5; color: #047857; }
.aq-heat.dn { background: #ffe4e6; color: #be123c; }
html.dark .aq-heat.up { background: rgba(16,185,129,.12); color: #6ee7b7; }
html.dark .aq-heat.dn { background: rgba(225,29,72,.12); color: #a5cfe3; }

.aq-dashboard__badge {
	position: absolute; left: 18px; bottom: -20px;
	display: none; align-items: center; gap: 12px;
	background: var(--aq-card-bg); border: 1px solid var(--aq-border);
	padding: 10px 14px; border-radius: 12px; box-shadow: var(--aq-card-shadow);
}
@media (min-width: 540px) { .aq-dashboard__badge { display: inline-flex; } }
.aq-dashboard__badge-tick { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: rgba(16,185,129,.12); color: var(--aq-emerald); }
.aq-dashboard__badge .k { margin: 0; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; color: var(--aq-navy-500); font-weight: 700; }
.aq-dashboard__badge .v { margin: 1px 0 0; font-family: var(--aq-font-mono); font-weight: 700; font-size: 12px; }

/* -------- cards -------- */
.aq-card {
	position: relative; background: var(--aq-card-bg);
	border: 1px solid var(--aq-border); border-radius: var(--aq-radius);
	padding: 28px;
	box-shadow: var(--aq-card-shadow);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.aq-card:hover { transform: translateY(-3px); border-color: var(--aq-border-soft); box-shadow: var(--aq-card-shadow-hi); }
.aq-card__title { margin: 12px 0 8px; font-size: 18px; font-weight: 700; }
.aq-card__body { color: var(--aq-fg-muted); margin: 0; }
.aq-card__proof { margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--aq-border); font-size: 12.5px; color: var(--aq-navy-500); font-style: italic; }
html.dark .aq-card__proof { color: var(--aq-navy-300); }

.aq-card__icon {
	display: grid; place-items: center; width: 56px; height: 56px;
	border-radius: 16px; color: var(--aq-pink-600); background: var(--aq-pink-50);
}
.aq-card__icon .aq-icon { width: 26px; height: 26px; }
.aq-card__icon--ring { background: #fff; border: 2px solid var(--aq-pink-200); }
.aq-card__icon--pinkring { background: var(--aq-pink-50); transition: background .2s ease, color .2s ease; }
.aq-card:hover .aq-card__icon--pinkring { background: var(--aq-pink-500); color: #fff; }
.aq-card__icon--pinksoft { background: var(--aq-pink-50); color: var(--aq-pink-600); width: 44px; height: 44px; border-radius: 12px; }
.aq-card__icon--pink     { background: var(--aq-pink-100); color: var(--aq-pink-700); width: 44px; height: 44px; border-radius: 12px; }
.aq-card__icon--emerald  { background: rgba(10,157,108,.12); color: var(--aq-emerald); width: 44px; height: 44px; border-radius: 12px; }
html.dark .aq-card__icon { background: rgba(76,158,199,.10); color: var(--aq-pink-300); }
html.dark .aq-card__icon--emerald { background: rgba(16,185,129,.12); color: #6ee7b7; }

.aq-card--why { text-align: center; }
.aq-card--why .aq-card__icon { margin: 0 auto; }

.aq-card--service { display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: 32px; }
.aq-card--service .aq-card__icon--ring { width: 64px; height: 64px; border-radius: 999px; border-width: 2px; }
.aq-svc-tint--pink .aq-card__icon--ring  { border-color: var(--aq-pink-200);  color: var(--aq-pink-600); }
.aq-svc-tint--navy .aq-card__icon--ring  { border-color: var(--aq-navy-200);  color: var(--aq-navy-700); }
.aq-svc-tint--sky  .aq-card__icon--ring  { border-color: #bae6fd;             color: var(--aq-sky-500); }
.aq-svc-tint--amber .aq-card__icon--ring { border-color: #fde68a;             color: var(--aq-amber-500); }
.aq-card__list { list-style: none; padding: 0; margin: 14px 0 18px; color: var(--aq-fg-muted); font-size: 14.5px; }
.aq-card__list li { margin: 6px 0; }
.aq-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--aq-pink-600); }
.aq-link .aq-icon { width: 14px; height: 14px; }

/* -------- process steps -------- */
.aq-step { padding: 24px; background: var(--aq-card-bg); border: 1px solid var(--aq-border); border-radius: var(--aq-radius); }
.aq-step__n { font-family: var(--aq-font-display); font-size: 36px; font-weight: 800; color: var(--aq-pink-600); font-variant-numeric: tabular-nums; }
.aq-step__t { margin: 8px 0 4px; font-size: 16px; font-weight: 700; }
.aq-step__d { color: var(--aq-fg-muted); font-size: 14px; margin: 0; }

/* -------- about block -------- */
.aq-about__grid { display: grid; gap: 22px; }
.aq-about__story { grid-column: 1 / -1; }
@media (min-width: 1024px) {
	.aq-about__grid { grid-template-columns: repeat(3, 1fr); }
	.aq-about__story { grid-column: 1 / -1; }
}
.aq-about__head { display: flex; align-items: center; gap: 12px; }
.aq-about__head .aq-card__title { margin: 0; }
.aq-about__beliefs { background: linear-gradient(180deg, var(--aq-pink-50), #fff); border-color: var(--aq-pink-200); }
html.dark .aq-about__beliefs { background: linear-gradient(180deg, rgba(76,158,199,.06), transparent); }
.aq-tick-list { list-style: none; padding: 0; margin: 12px 0 0; color: var(--aq-fg); font-size: 14.5px; }
.aq-tick-list li { display: flex; align-items: flex-start; gap: 8px; margin: 8px 0; }
.aq-tick-list li .aq-icon { color: var(--aq-pink-600); margin-top: 2px; }

/* -------- founder -------- */
.aq-founder__grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .aq-founder__grid { grid-template-columns: 2fr 3fr; gap: 56px; } }
.aq-founder__card { background: var(--aq-card-bg); border: 1px solid var(--aq-border); border-radius: var(--aq-radius); padding: 30px; text-align: center; box-shadow: var(--aq-card-shadow); }
.aq-founder__photo { width: 184px; height: 184px; margin: 0 auto; border-radius: 999px; overflow: hidden; border: 2px solid var(--aq-pink-300); padding: 4px; background: #fff; }
.aq-founder__photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }
.aq-founder__name { margin: 18px 0 4px; font-family: var(--aq-font-display); font-size: 22px; font-weight: 700; }
.aq-founder__role { color: var(--aq-pink-600); font-weight: 600; font-size: 14px; margin: 0; }
.aq-founder__reg-k { margin: 16px 0 0; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--aq-navy-500); }
.aq-founder__reg-v { margin: 2px 0 0; font-family: var(--aq-font-mono); font-weight: 700; font-size: 14px; }
.aq-founder__title { font-size: clamp(26px, 3vw, 36px); margin: 8px 0 16px; color: var(--aq-fg); }
.aq-founder__copy { color: var(--aq-fg); }
.aq-founder__copy p { color: var(--aq-fg); margin: 0 0 16px; }
html.dark .aq-founder__title,
html.dark .aq-founder__copy,
html.dark .aq-founder__copy p { color: var(--aq-fg); }
.aq-founder__note { font-size: 13.5px; color: var(--aq-navy-500); font-style: italic; }
html.dark .aq-founder__note { color: var(--aq-fg-muted); }

/* About cards — ensure body copy stays readable on both themes */
.aq-about__story p,
.aq-about__story li,
.aq-about__grid .aq-card p,
.aq-about__grid .aq-card li,
.aq-about__grid .aq-card .aq-card__title {
	color: #0A1929 !important;
}
.aq-about__grid .aq-section__lede,
#about .aq-section__lede {
	color: #1f2d3d !important;
}
html.dark .aq-about__story p,
html.dark .aq-about__story li,
html.dark .aq-about__grid .aq-card p,
html.dark .aq-about__grid .aq-card li,
html.dark .aq-about__grid .aq-card .aq-card__title {
	color: #f1f5fb !important;
}
html.dark .aq-about__grid .aq-section__lede,
html.dark #about .aq-section__lede {
	color: #b6c3d6 !important;
}

/* Founder section — force readable copy in both modes */
.aq-founder__title,
.aq-founder__copy,
.aq-founder__copy p {
	color: #0A1929 !important;
}
.aq-founder__note { color: #475569 !important; }
html.dark .aq-founder__title,
html.dark .aq-founder__copy,
html.dark .aq-founder__copy p { color: #f1f5fb !important; }
html.dark .aq-founder__note { color: #b6c3d6 !important; }

/* -------- trust strip -------- */
.aq-trust { padding: 22px 0; background: var(--aq-bg); border-bottom: 1px solid var(--aq-border); }
.aq-trust__list { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; list-style: none; margin: 0; padding: 0; color: var(--aq-fg-muted); font-size: 13.5px; font-weight: 500; }

/* -------- FAQ -------- */
.aq-faq { border: 1px solid var(--aq-border); border-radius: var(--aq-radius); overflow: hidden; background: var(--aq-card-bg); }
.aq-faq__item { padding: 18px 22px; border-bottom: 1px solid var(--aq-border); }
.aq-faq__item:last-child { border-bottom: 0; }
.aq-faq__item[open] { background: var(--aq-pink-50); }
html.dark .aq-faq__item[open] { background: rgba(76,158,199,.06); }
.aq-faq__item summary { display: flex; justify-content: space-between; align-items: center; gap: 14px; cursor: pointer; list-style: none; font-weight: 600; }
.aq-faq__item summary::-webkit-details-marker { display: none; }
.aq-faq__plus { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 999px; border: 1px solid var(--aq-pink-200); color: var(--aq-pink-600); font-size: 18px; line-height: 1; transition: transform .2s ease; }
.aq-faq__item[open] .aq-faq__plus { transform: rotate(45deg); }
.aq-faq__item p { margin: 12px 0 0; color: var(--aq-fg-muted); font-size: 14.5px; }

/* -------- contact cards -------- */
.aq-contact-card { text-align: center; }
.aq-contact-card .aq-card__icon { margin: 0 auto 14px; }
.aq-contact-card a { display: block; margin: 4px 0; color: var(--aq-fg); font-weight: 600; }
.aq-contact-card a:hover { color: var(--aq-pink-700); }
.aq-contact-card__big { font-size: 18px !important; }
.aq-contact-card__sub { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--aq-navy-500); margin: 8px 0 0; }
.aq-contact-card__mono { font-family: var(--aq-font-mono); font-weight: 700; font-size: 16px; margin: 2px 0 0; }

/* -------- entrance animations -------- */
@keyframes aq-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.aq-anim { animation: aq-rise .65s cubic-bezier(.21,.83,.4,1) both; }
.aq-anim-d1 { animation-delay: .08s; }
.aq-anim-d2 { animation-delay: .16s; }
.aq-anim-d3 { animation-delay: .24s; }
.aq-anim-d4 { animation-delay: .32s; }
.aq-anim-d5 { animation-delay: .40s; }

/* -------- footer -------- */
.aq-footer { background: var(--aq-navy-900); color: #e5edf8; padding: 56px 0 24px; margin-top: 0; }
.aq-footer a { color: #e5edf8; }
.aq-footer a:hover { color: var(--aq-pink-300); }
.aq-footer__grid { display: grid; gap: 32px; }
@media (min-width: 800px) { .aq-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.aq-footer__bottom { margin-top: 32px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: #b6c3d6; }

/* -------- Google Translate widget -------- */
.aq-translate .goog-te-gadget { font-size: 0 !important; color: transparent !important; }
.aq-translate .goog-te-gadget-simple {
	background: var(--aq-card-bg) !important; border: 1px solid var(--aq-border) !important;
	border-radius: 10px !important; padding: 6px 10px !important;
	font-size: 13px !important; color: var(--aq-fg) !important;
}
.aq-translate .goog-te-gadget-simple a, .aq-translate .goog-te-gadget-simple span { color: var(--aq-fg) !important; }
.aq-translate .goog-te-gadget-icon { display: none !important; }
body { top: 0 !important; position: static !important; }
html { margin-top: 0 !important; }
.skiptranslate,
iframe.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover { display: none !important; visibility: hidden !important; }
.goog-text-highlight { background: transparent !important; box-shadow: none !important; }

/* =====================================================================
   ACCESSIBILITY WIDGET (AccessiBe-style)
   ===================================================================== */
.aq-a11y { position: fixed; right: 18px; bottom: 18px; z-index: 9999; }
.aq-a11y-toggle {
	width: 56px; height: 56px; border-radius: 50%;
	background: var(--aq-pink-500); color: #fff; border: 0; cursor: pointer;
	display: grid; place-items: center;
	box-shadow: 0 14px 32px -8px rgba(42,127,168,.55);
	transition: transform .18s ease, background .18s ease;
}
.aq-a11y-toggle:hover { transform: scale(1.05); background: var(--aq-pink-600); }
.aq-a11y-toggle svg { width: 28px; height: 28px; }

.aq-a11y-panel {
	position: absolute; right: 0; bottom: 70px;
	width: min(420px, 92vw); max-height: min(78vh, 720px);
	background: #fff; color: var(--aq-navy-900);
	border-radius: 18px; border: 1px solid var(--aq-border);
	box-shadow: 0 30px 70px -18px rgba(10,25,41,.30);
	overflow: auto; padding: 0;
}
html.dark .aq-a11y-panel { background: #0f152a; color: #f1f5fb; border-color: rgba(255,255,255,.08); }
.aq-a11y-panel[hidden] { display: none; }

.aq-a11y-hdr {
	display: flex; justify-content: space-between; align-items: center;
	padding: 14px 18px;
	background: linear-gradient(135deg, var(--aq-pink-600), var(--aq-pink-500));
	color: #fff; position: sticky; top: 0; z-index: 2;
}
.aq-a11y-hdr__title { display: inline-flex; align-items: center; gap: 10px; font-family: var(--aq-font-display); font-weight: 700; font-size: 15px; }
.aq-a11y-hdr__title svg { width: 20px; height: 20px; }
.aq-a11y-x { background: rgba(255,255,255,.15); color: #fff; border: 0; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 20px; line-height: 1; }
.aq-a11y-x:hover { background: rgba(255,255,255,.25); }

.aq-a11y-sec { padding: 16px 18px; border-bottom: 1px solid var(--aq-border); }
.aq-a11y-sec h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--aq-navy-500); margin: 0 0 10px; font-family: var(--aq-font-sans); font-weight: 700; }
html.dark .aq-a11y-sec h3 { color: var(--aq-navy-300); }

.aq-a11y-profiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.aq-a11y-profiles button {
	display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
	text-align: left; padding: 10px 12px; border-radius: 10px;
	border: 1px solid var(--aq-border); background: var(--aq-bg-muted);
	color: var(--aq-fg); cursor: pointer; transition: all .18s ease;
}
.aq-a11y-profiles button:hover { border-color: var(--aq-pink-300); background: var(--aq-pink-50); }
.aq-a11y-profiles button.is-active { background: var(--aq-pink-500); color: #fff; border-color: var(--aq-pink-600); }
.aq-a11y-profiles button strong { font-size: 13px; font-weight: 700; }
.aq-a11y-profiles button span { font-size: 11px; opacity: .8; }
.aq-a11y-profiles button.is-active span { opacity: .95; }
html.dark .aq-a11y-profiles button { background: rgba(255,255,255,.04); color: #f1f5fb; }

.aq-a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.aq-a11y-cell { padding: 10px 12px; border: 1px solid var(--aq-border); border-radius: 10px; background: var(--aq-bg-muted); }
html.dark .aq-a11y-cell { background: rgba(255,255,255,.04); }
.aq-a11y-cell__t { margin: 0 0 6px; font-size: 12px; font-weight: 600; color: var(--aq-fg); }
.aq-a11y-step { display: flex; align-items: center; gap: 6px; }
.aq-a11y-step button { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--aq-border); background: #fff; color: var(--aq-fg); cursor: pointer; font-size: 14px; line-height: 1; }
.aq-a11y-step button:hover { background: var(--aq-pink-50); border-color: var(--aq-pink-300); color: var(--aq-pink-700); }
.aq-a11y-val { flex: 1; text-align: center; font-variant-numeric: tabular-nums; font-weight: 700; font-size: 13px; }

.aq-a11y-toggles { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.aq-a11y-toggles button {
	padding: 9px 11px; border-radius: 9px; border: 1px solid var(--aq-border);
	background: #fff; color: var(--aq-fg); font-size: 12.5px; font-weight: 600;
	text-align: left; cursor: pointer; transition: all .18s ease;
}
.aq-a11y-toggles button:hover { border-color: var(--aq-pink-300); color: var(--aq-pink-700); }
.aq-a11y-toggles button.is-on { background: var(--aq-pink-500); color: #fff; border-color: var(--aq-pink-600); }
html.dark .aq-a11y-toggles button { background: rgba(255,255,255,.04); color: #f1f5fb; }

.aq-a11y-segrow { margin: 0 0 12px; }
.aq-a11y-segrow__t { margin: 0 0 6px; font-size: 12px; font-weight: 600; color: var(--aq-fg); }
.aq-a11y-seg { display: flex; flex-wrap: wrap; gap: 6px; }
.aq-a11y-seg button { padding: 6px 10px; border-radius: 999px; border: 1px solid var(--aq-border); background: #fff; color: var(--aq-fg); font-size: 12px; font-weight: 600; cursor: pointer; }
.aq-a11y-seg button:hover { border-color: var(--aq-pink-300); }
.aq-a11y-seg button.is-on { background: var(--aq-pink-500); color: #fff; border-color: var(--aq-pink-600); }
html.dark .aq-a11y-seg button, html.dark .aq-a11y-step button { background: rgba(255,255,255,.04); color: #f1f5fb; }

.aq-a11y-ftr { display: flex; gap: 10px; justify-content: space-between; align-items: center; padding: 14px 18px; }
.aq-a11y-reset { padding: 10px 16px; border-radius: 10px; border: 1px solid var(--aq-pink-200); background: var(--aq-pink-50); color: var(--aq-pink-700); font-weight: 700; cursor: pointer; }
.aq-a11y-reset:hover { background: var(--aq-pink-100); }
.aq-a11y-stmt { font-size: 12.5px; font-weight: 600; }

.aq-a11y-guide {
	position: fixed; left: 0; right: 0; height: 2px; background: var(--aq-pink-500);
	pointer-events: none; z-index: 9998; display: none;
}
html[data-a11y-guide="on"] .aq-a11y-guide { display: block; }

/* a11y effect classes applied via html.data-a11y-* */
html[data-a11y-readable="on"] body { font-family: "Atkinson Hyperlegible", var(--aq-font-sans) !important; }
html[data-a11y-dyslexia="on"] body { font-family: "OpenDyslexic", var(--aq-font-sans) !important; letter-spacing: .02em; }
html[data-a11y-weight="bold"]  p, html[data-a11y-weight="bold"] li, html[data-a11y-weight="bold"] span, html[data-a11y-weight="bold"] a { font-weight: 700 !important; }
html[data-a11y-align="left"]   p, html[data-a11y-align="left"]   li, html[data-a11y-align="left"]   h1, html[data-a11y-align="left"]   h2, html[data-a11y-align="left"]   h3 { text-align: left !important; }
html[data-a11y-align="center"] p, html[data-a11y-align="center"] li, html[data-a11y-align="center"] h1, html[data-a11y-align="center"] h2, html[data-a11y-align="center"] h3 { text-align: center !important; }
html[data-a11y-align="right"]  p, html[data-a11y-align="right"]  li, html[data-a11y-align="right"]  h1, html[data-a11y-align="right"]  h2, html[data-a11y-align="right"]  h3 { text-align: right !important; }
html[data-a11y-align="justify"] p, html[data-a11y-align="justify"] li { text-align: justify !important; }
html[data-a11y-cursor="big-black"], html[data-a11y-cursor="big-black"] * { cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24'><path fill='%23000' d='M5 3l14 9-6 1 4 9-3 1-4-9-5 4z'/></svg>") 0 0, auto !important; }
html[data-a11y-cursor="big-white"], html[data-a11y-cursor="big-white"] * { cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24'><path fill='%23fff' stroke='%23000' stroke-width='1.5' d='M5 3l14 9-6 1 4 9-3 1-4-9-5 4z'/></svg>") 0 0, auto !important; }
html[data-a11y-links="on"]    a { text-decoration: underline !important; background: rgba(42,127,168,.10); padding: 1px 3px; border-radius: 3px; }
html[data-a11y-headings="on"] h1, html[data-a11y-headings="on"] h2, html[data-a11y-headings="on"] h3 { outline: 2px dashed var(--aq-pink-400); outline-offset: 4px; }
html[data-a11y-focus="on"]    :focus-visible { outline: 4px solid var(--aq-pink-500) !important; outline-offset: 3px; }
html[data-a11y-keyboard="on"] :focus { outline: 3px dashed var(--aq-pink-600); outline-offset: 2px; }
html[data-a11y-contrast="high"]  body { background: #fff !important; color: #000 !important; }
html[data-a11y-contrast="high"]  .aq-card, html[data-a11y-contrast="high"] .aq-hero { background: #fff !important; color: #000 !important; border-color: #000 !important; }
html[data-a11y-contrast="dark"]  body, html[data-a11y-contrast="dark"]  .aq-card, html[data-a11y-contrast="dark"]  .aq-hero { background: #000 !important; color: #fff !important; }
html[data-a11y-contrast="light"] body, html[data-a11y-contrast="light"] .aq-card, html[data-a11y-contrast="light"] .aq-hero { background: #fafafa !important; color: #111 !important; }
html[data-a11y-saturation="low"]  body { filter: saturate(.55); }
html[data-a11y-saturation="high"] body { filter: saturate(1.65); }
html[data-a11y-saturation="mono"] body { filter: grayscale(1); }
html[data-a11y-images="off"] img, html[data-a11y-images="off"] picture, html[data-a11y-images="off"] svg.aq-decorative { visibility: hidden !important; }
html[data-a11y-animations="paused"] *, html[data-a11y-animations="paused"] *::before, html[data-a11y-animations="paused"] *::after { animation: none !important; transition: none !important; }

/* honour reduced-motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   LIVE-SITE SYNC additions (hero image, ticker, pricing,
   compliance, newsletter, footer, dark-mode logo)
   ============================================================ */

/* Dark-mode dual logo swap */
.aq-logo__img{display:block;height:auto;max-height:48px;width:auto}
.aq-logo img.aq-logo__img--dark{display:none}
html.dark .aq-logo img.aq-logo__img--light{display:none}
html.dark .aq-logo img.aq-logo__img--dark{display:block}

/* ---- Market ticker ---- */
.aq-ticker{background:#0b1220;color:#e2e8f0;border-bottom:1px solid #1f2937;overflow:hidden;font-size:13px;font-weight:600}
.aq-ticker__track{display:inline-flex;gap:32px;padding:10px 0;white-space:nowrap;animation:aq-ticker 60s linear infinite;will-change:transform}
.aq-ticker__item{display:inline-flex;align-items:center;gap:8px}
.aq-ticker__item strong{color:#fff;letter-spacing:.04em}
.aq-ticker__price{color:#cbd5e1}
.aq-ticker__chg--up{color:#10b981}
.aq-ticker__chg--down{color:#f43f5e}
@keyframes aq-ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ---- Hero illustration variant ---- */
.aq-hero{position:relative;padding:64px 0 96px;overflow:hidden}
.aq-hero__bg{position:absolute;inset:0;background:
   radial-gradient(60% 50% at 80% 20%, rgba(42,127,168,.16), transparent 60%),
   radial-gradient(40% 35% at 10% 80%, rgba(190, 24, 93,.10), transparent 60%),
   linear-gradient(180deg, #fff 0, #eaf4fa 100%);z-index:-1}
html.dark .aq-hero__bg{background:
   radial-gradient(60% 50% at 80% 20%, rgba(42,127,168,.18), transparent 60%),
   radial-gradient(40% 35% at 10% 80%, rgba(190, 24, 93,.18), transparent 60%),
   linear-gradient(180deg, #0b0f1a 0, #1b0a18 100%)}
.aq-hero__inner{display:grid;gap:48px;grid-template-columns:1fr;align-items:center}
@media (min-width:1024px){.aq-hero__inner{grid-template-columns:1.05fr .95fr}}
.aq-hero__visual{position:relative}
.aq-hero__visual-glow{position:absolute;inset:-12% -8%;background:radial-gradient(50% 50% at 50% 50%, rgba(42,127,168,.30), transparent 70%);filter:blur(40px);z-index:0}
.aq-hero__img{position:relative;z-index:1;width:100%;height:auto;border-radius:24px;box-shadow:0 30px 80px -20px rgba(190, 24, 93,.45), 0 0 0 1px rgba(42,127,168,.15)}
/* Theme-aware hero image: only one variant visible at a time */
.aq-hero__img--dark{display:none}
.aq-hero__img--light + .aq-hero__img--dark{position:absolute;inset:0}
html.dark .aq-hero__img--light{display:none}
html.dark .aq-hero__img--dark{display:block;position:relative;inset:auto}
.aq-hero__badge-float{position:absolute;left:16px;bottom:16px;z-index:2;display:inline-flex;flex-direction:column;align-items:flex-start;gap:2px;padding:10px 14px;background:#fff;border:1px solid var(--aq-pink-200,#fbcfe8);border-radius:14px;box-shadow:0 12px 30px -10px rgba(0,0,0,.25);font-size:12px}
.aq-hero__badge-float strong{color:var(--aq-pink-700,#154c68);font-weight:800}
.aq-hero__badge-float small{color:#475569}
html.dark .aq-hero__badge-float{background:#1f1320;color:#fbcfe8;border-color:#7a2a52}

/* ---- Pricing ---- */
.aq-grid--pricing{display:grid;gap:24px;grid-template-columns:1fr}
@media(min-width:768px){.aq-grid--pricing{grid-template-columns:repeat(3,1fr)}}
.aq-price{position:relative;background:#fff;border:1px solid #fde7f1;border-radius:20px;padding:28px;box-shadow:0 8px 30px -16px rgba(190, 24, 93,.25);display:flex;flex-direction:column;gap:14px}
html.dark .aq-price{background:#16101a;border-color:#5b1c3e;color:#f1e4ec}
.aq-price--popular{border-color:var(--aq-pink-500,#2a7fa8);box-shadow:0 20px 60px -20px rgba(42,127,168,.55);transform:translateY(-6px)}
.aq-price__ribbon{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:linear-gradient(135deg,#2a7fa8,#154c68);color:#fff;font-size:11px;font-weight:800;letter-spacing:.08em;padding:6px 14px;border-radius:999px;box-shadow:0 6px 16px -4px rgba(190, 24, 93,.5)}
.aq-price__name{font-family:'Sora',Inter,sans-serif;font-size:20px;font-weight:800;margin:0}
.aq-price__tag{color:#64748b;font-size:14px;margin:0}
html.dark .aq-price__tag{color:#cbb1c0}
.aq-price__starts{display:flex;flex-wrap:wrap;align-items:baseline;gap:8px;margin:8px 0 4px;padding:12px 14px;background:linear-gradient(135deg,#eaf4fa,#fce7f3);border-radius:12px}
html.dark .aq-price__starts{background:linear-gradient(135deg,#2a1521,#3d1830)}
.aq-price__label{font-size:11px;letter-spacing:.08em;color:#9ca3af;font-weight:700}
.aq-price__amount{font-family:'Sora',Inter,sans-serif;font-size:30px;font-weight:800;color:var(--aq-pink-600,#1f6688)}
.aq-price__cadence{font-size:14px;color:#64748b}
.aq-price__choose{font-size:11px;font-weight:800;letter-spacing:.08em;color:#9ca3af;margin:8px 0 0}
.aq-price__billing{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px}
.aq-price__billing li{display:grid;grid-template-columns:1fr auto;column-gap:10px;align-items:center;padding:10px 12px;border:1px solid #fde7f1;border-radius:10px;font-size:13px}
html.dark .aq-price__billing li{border-color:#5b1c3e}
.aq-price__b-name{font-weight:700}
.aq-price__b-desc{grid-column:1/2;color:#64748b;font-size:12px}
html.dark .aq-price__b-desc{color:#cbb1c0}
.aq-price__b-amount{grid-row:1/3;grid-column:2/3;font-weight:800;color:var(--aq-pink-600,#1f6688)}
.aq-price__b-badge{grid-column:1/3;font-size:10px;font-weight:800;letter-spacing:.05em;color:#fff;background:var(--aq-pink-500,#2a7fa8);border-radius:999px;padding:2px 8px;justify-self:start;margin-top:4px}
.aq-price__foot{display:flex;justify-content:space-between;align-items:center;font-size:12px;color:#64748b;margin-top:4px}
.aq-price__rating{color:#f59e0b;font-weight:700}
.aq-price__pay{text-align:center;font-size:12px;color:#64748b;margin:0}
.aq-price-foot-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:32px;padding:20px;background:#eaf4fa;border-radius:16px;border:1px dashed #fbcfe8}
html.dark .aq-price-foot-grid{background:#2a1521;border-color:#5b1c3e}
@media(min-width:768px){.aq-price-foot-grid{grid-template-columns:repeat(4,1fr)}}
.aq-price-foot-grid > div{display:flex;flex-direction:column;gap:4px}
.aq-price-foot-grid strong{font-size:11px;letter-spacing:.08em;color:var(--aq-pink-700,#154c68);font-weight:800}
.aq-price__legal{margin-top:20px;font-size:12px;color:#64748b;text-align:center;max-width:880px;margin-inline:auto}
html.dark .aq-price__legal{color:#cbb1c0}

/* ---- Compliance ---- */
.aq-keyvals{margin:0;display:grid;gap:8px}
.aq-keyvals > div{display:grid;grid-template-columns:160px 1fr;gap:12px;padding:8px 0;border-bottom:1px dashed #fde7f1}
html.dark .aq-keyvals > div{border-color:#5b1c3e}
.aq-keyvals dt{font-size:12px;letter-spacing:.04em;color:#9ca3af;font-weight:700}
.aq-keyvals dd{margin:0;font-weight:600}
.aq-card--warning{background:linear-gradient(135deg,#eaf4fa,#fff);border-color:#fbcfe8}
html.dark .aq-card--warning{background:linear-gradient(135deg,#2a1521,#16101a);border-color:#5b1c3e}
.aq-btn--sm{padding:6px 14px;font-size:13px}
.aq-muted{color:#64748b;font-size:13px}
html.dark .aq-muted{color:#cbb1c0}

/* ---- Newsletter band ---- */
.aq-newsletter{background:linear-gradient(135deg,#eaf4fa 0,#d2e7f1 100%);padding:36px 0;border-top:1px solid #a5cfe3}
html.dark .aq-newsletter{background:linear-gradient(135deg,#0a1424 0,#13213b 100%);border-color:#1f3050}
.aq-newsletter__inner{display:grid;gap:24px;grid-template-columns:1fr;align-items:center}
@media(min-width:900px){.aq-newsletter__inner{grid-template-columns:minmax(0,1.4fr) minmax(0,1fr)}}
.aq-newsletter__copy{min-width:0}
.aq-newsletter h2{font-family:'Sora',Inter,sans-serif;font-size:clamp(18px,2.4vw,24px);font-weight:800;margin:0 0 6px;color:#D4AF37;line-height:1.25}
html.dark .aq-newsletter h2{color:#E5B84B}
.aq-newsletter p{margin:0 0 12px;color:#475569;font-size:13px}
html.dark .aq-newsletter p{color:#c8d4e9}
.aq-newsletter__form{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.aq-newsletter__form input[type="email"]{flex:1 1 240px;min-width:0;padding:13px 18px;border:1px solid #a5cfe3;border-radius:12px;background:#fff;font-size:14px;color:#1d2f47;box-shadow:0 4px 14px -6px rgba(42,127,168,.18)}
.aq-newsletter__form input[type="email"]:focus{outline:none;border-color:var(--aq-pink-500,#2a7fa8);box-shadow:0 0 0 4px rgba(42,127,168,.18)}
.aq-newsletter__form input[type="email"]:invalid{box-shadow:0 4px 14px -6px rgba(42,127,168,.18)}
html.dark .aq-newsletter__form input[type="email"]{background:#10182a;color:#fff;border-color:#1f3050}
.aq-newsletter__form .aq-btn{padding:13px 22px;border-radius:12px;white-space:nowrap}
.aq-newsletter__legal{font-size:12px;color:#64748b;margin-top:12px}
html.dark .aq-newsletter__legal{color:#a8b2c2}
.aq-newsletter__visual{display:flex;justify-content:center;align-items:center;min-width:0}
.aq-newsletter__visual img{max-width:100%;width:auto;height:auto;max-height:140px;object-fit:contain;filter:drop-shadow(0 10px 22px rgba(42,127,168,.30))}
/* Theme-aware logo: light logo on light bg, white logo on dark bg */
.aq-newsletter__logo--dark{display:none}
html.dark .aq-newsletter__logo--light{display:none}
html.dark .aq-newsletter__logo--dark{display:block}
@media(max-width:899px){.aq-newsletter__visual{order:-1}.aq-newsletter__visual img{max-height:80px}}

/* ---- Footer (updated) ---- */
.aq-footer{background:#0a0a0f;color:#cbd5e1}
.aq-footer__grid{display:grid;gap:24px;grid-template-columns:1fr;padding:32px 0 20px}
@media(min-width:768px){.aq-footer__grid{grid-template-columns:2fr 1fr 1fr 1fr 1fr}}
.aq-footer__brand img{display:block;margin-bottom:10px;max-height:40px;width:auto}
.aq-footer__tag,.aq-footer__contact,.aq-footer__addr,.aq-footer__hours{font-size:12px;line-height:1.55;color:#94a3b8;margin:0 0 8px}
.aq-footer__contact a,.aq-footer__list a{color:#e2e8f0;text-decoration:none}
.aq-footer__contact a:hover,.aq-footer__list a:hover{color:#2a7fa8}
.aq-footer__addr{margin:12px 0;font-style:normal}
.aq-footer__hours{margin:8px 0}
.aq-footer__badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.aq-chip{display:inline-block;font-size:11px;font-weight:700;letter-spacing:.04em;padding:4px 10px;border-radius:999px;background:#1f2937;color:#cbd5e1}
.aq-chip--pink{background:linear-gradient(135deg,#2a7fa8,#154c68);color:#fff}
.aq-footer__title{font-size:11px;letter-spacing:.1em;font-weight:800;color:#94a3b8;margin:0 0 8px}
.aq-footer__list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:5px;font-size:13px}
.aq-footer__payments{background:#06060a;padding:12px 0;font-size:11px;color:#94a3b8;border-top:1px solid #1f2937}
.aq-footer__payments p{display:flex;flex-wrap:wrap;gap:14px;margin:0;align-items:center}
.aq-footer__payments strong{color:#cbd5e1;letter-spacing:.06em}
.aq-footer__compliance{background:#06060a;padding:16px 0;border-top:1px solid #1f2937;font-size:11px;color:#7e8a99;line-height:1.55}
.aq-footer__compliance p{margin:0 0 6px}
.aq-footer__compliance strong{color:#cbd5e1}
.aq-footer__copy{margin-top:10px !important;text-align:center;color:#94a3b8;font-size:11px}

/* ===== Footer v2 (Bhagyadhan-style layout) — overrides ===== */
.aq-footer--v2{background:#0a1224;color:#cbd5e1;border-top:1px solid #1a2540}
.aq-footer--v2 .aq-footer__grid{
  display:grid;gap:28px;padding:36px 0 20px;
  grid-template-columns:1fr;
}
@media(min-width:768px){.aq-footer--v2 .aq-footer__grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.aq-footer--v2 .aq-footer__grid{grid-template-columns:1.1fr 1.2fr 1fr 1fr}}

/* Card column */
.aq-footer__card{background:#0d172e;border:1px solid #1f2a4a;border-radius:14px;padding:18px}
.aq-footer__logo img{max-height:60px;width:auto;display:block;margin-bottom:14px;background:#0a1224;border-radius:10px;padding:6px 10px}
.aq-footer__operator{font-size:14px;font-weight:700;color:#e2e8f0;margin:0 0 12px}
.aq-footer__reg{margin:0;display:grid;gap:6px}
.aq-footer__reg > div{display:flex;flex-wrap:wrap;gap:6px;font-size:13px}
.aq-footer__reg dt{color:var(--aq-pink-500,#2a7fa8);font-weight:700;margin:0}
.aq-footer__reg dd{color:#cbd5e1;margin:0}

/* Section titles (gold underline) */
.aq-footer--v2 .aq-footer__title--gold{
  font-family:'Sora',Inter,sans-serif;font-size:13px;font-weight:700;letter-spacing:.14em;
  color:#D4AF37;margin:0 0 14px;padding-bottom:8px;
  border-bottom:1px solid rgba(212,175,55,.25);position:relative;
}
.aq-footer--v2 .aq-footer__title--gold::after{
  content:"";position:absolute;left:0;bottom:-1px;width:40px;height:2px;background:#D4AF37;border-radius:2px;
}

/* Contact list with icons */
.aq-footer__compliance-line{font-size:13px;color:#cbd5e1;margin:0 0 10px}
.aq-footer__compliance-line strong{color:#fff}
.aq-footer__contact-list{list-style:none;padding:0;margin:0 0 14px;display:flex;flex-direction:column;gap:10px}
.aq-footer__contact-list li{display:flex;gap:10px;font-size:13px;line-height:1.55;color:#cbd5e1}
.aq-footer__contact-list a{color:#cbd5e1;text-decoration:none}
.aq-footer__contact-list a:hover{color:var(--aq-pink-500,#2a7fa8)}
.aq-footer__ic{flex:0 0 18px;color:#10B981;margin-top:2px}
.aq-footer__ic .aq-icon{width:18px;height:18px}
/* Alternate footer contact icons: green, blue, green… */
.aq-footer__contact-list > li:nth-child(even) .aq-footer__ic{color:#2563EB}

/* Socials */
.aq-footer__socials{display:flex;gap:10px;margin-top:6px}
.aq-footer__socials a{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:50%;border:1px solid #2a3760;color:#2563EB;transition:all .2s}
.aq-footer__socials a:nth-child(even){color:#10B981}
.aq-footer__socials a:hover{border-color:#10B981;color:#10B981;box-shadow:0 0 0 3px rgba(16,185,129,.18)}
.aq-footer__socials a:nth-child(even):hover{border-color:#2563EB;color:#2563EB;box-shadow:0 0 0 3px rgba(37,99,235,.18)}
.aq-footer__socials .aq-icon{width:16px;height:16px}

/* Bullet & plain lists */
.aq-footer__bullets,.aq-footer__plain{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px;font-size:13px}
.aq-footer__bullets li{position:relative;padding-left:14px}
.aq-footer__bullets li::before{content:"";position:absolute;left:0;top:8px;width:6px;height:6px;border-radius:50%;background:var(--aq-pink-500,#2a7fa8)}
.aq-footer__bullets a,.aq-footer__plain a{color:#cbd5e1;text-decoration:none;transition:color .15s}
.aq-footer__bullets a:hover,.aq-footer__plain a:hover{color:var(--aq-pink-500,#2a7fa8)}

/* Rule + disclaimer */
.aq-footer__rule{border:0;border-top:1px solid rgba(255,255,255,.08);margin:18px 0}
.aq-footer__disclaimer h5{
  font-family:'Sora',Inter,sans-serif;font-size:13px;font-weight:800;letter-spacing:.1em;
  color:var(--aq-pink-500,#2a7fa8);margin:0 0 8px;
}
.aq-footer__disclaimer p{font-size:12.5px;line-height:1.65;color:#94a3b8;margin:0}
.aq-footer__disclaimer strong{color:#e2e8f0}
.aq-footer__disclaimer a{color:var(--aq-pink-500,#2a7fa8);text-decoration:none}
.aq-footer__disclaimer a:hover{text-decoration:underline}
.aq-footer__reg-no{color:var(--aq-pink-500,#2a7fa8);font-weight:700}

/* Bottom row */
.aq-footer__bottom{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;padding-bottom:18px}
.aq-footer__copy{margin:0;font-size:12px;color:#94a3b8}
.aq-footer__regs{display:flex;gap:8px}
.aq-footer__regs span{
  display:inline-flex;align-items:center;font-size:11px;font-weight:700;letter-spacing:.06em;
  color:#cbd5e1;padding:5px 12px;border:1px solid #2a3760;border-radius:8px;background:transparent;
}

/* Kill the old payments/compliance bands that v1 used */
.aq-footer--v2 .aq-footer__payments,
.aq-footer--v2 .aq-footer__compliance{display:none}

/* ===== Compliance — single tabular card ===== */
.aq-compliance-table{padding:0;overflow:hidden}
.aq-compliance-table__wrap{overflow-x:auto}
.aq-ctbl{width:100%;border-collapse:collapse;font-size:14px;line-height:1.55}
.aq-ctbl th,
.aq-ctbl td{padding:14px 18px;text-align:left;vertical-align:top;border-bottom:1px solid var(--aq-border,rgba(10,25,41,.09))}
.aq-ctbl tr:last-child th,
.aq-ctbl tr:last-child td{border-bottom:0}
.aq-ctbl th{width:34%;font-weight:700;color:var(--aq-fg,#0A1929);background:var(--aq-bg-muted,#f3f8fc);font-size:13px;letter-spacing:.02em}
html.dark .aq-ctbl th{color:var(--aq-fg,#f1f5fb);background:rgba(255,255,255,.03)}
.aq-ctbl td{color:var(--aq-fg-muted,#2f4763)}
html.dark .aq-ctbl td{color:var(--aq-fg-muted,#b6c3d6)}
.aq-ctbl td strong{color:var(--aq-fg,#0A1929)}
html.dark .aq-ctbl td strong{color:var(--aq-fg,#f1f5fb)}
.aq-ctbl a{color:var(--aq-pink-600,#1f6688);text-decoration:none}
.aq-ctbl a:hover{text-decoration:underline}
html.dark .aq-ctbl a{color:var(--aq-pink-300,#79b6d5)}
.aq-ctbl__hl{display:inline-block;font-weight:800;color:var(--aq-pink-600,#1f6688);background:var(--aq-pink-50,#eaf4fa);padding:2px 10px;border-radius:6px;letter-spacing:.04em}
html.dark .aq-ctbl__hl{background:rgba(42,127,168,.12);color:var(--aq-pink-300,#79b6d5)}
.aq-ctbl .aq-btn{margin-top:8px}
@media(max-width:640px){
  .aq-ctbl th,.aq-ctbl td{display:block;width:100%;padding:10px 14px;border-bottom:0}
  .aq-ctbl th{background:var(--aq-bg-muted,#f3f8fc);padding-top:14px}
  .aq-ctbl td{border-bottom:1px solid var(--aq-border,rgba(10,25,41,.09));padding-bottom:14px}
  html.dark .aq-ctbl th{background:rgba(255,255,255,.03)}
}

/* ===== Language picker (rebranded; hides 3rd-party branding/banner) ===== */
.aq-translate{display:inline-flex;align-items:center;gap:8px;background:var(--aq-bg-muted,#f3f8fc);border:1px solid var(--aq-border,rgba(10,25,41,.09));padding:4px 10px;border-radius:999px;font-size:13px;color:var(--aq-fg,#0A1929)}
html.dark .aq-translate{background:rgba(255,255,255,.04);color:var(--aq-fg,#f1f5fb)}
.aq-translate__label{display:inline-flex;align-items:center;gap:6px;font-weight:600;color:var(--aq-pink-600,#1f6688);white-space:nowrap}
html.dark .aq-translate__label{color:var(--aq-pink-300,#79b6d5)}
.aq-translate .aq-icon{width:14px;height:14px}
.aq-translate .goog-te-gadget{font-family:inherit!important;font-size:0!important;color:transparent!important}
.aq-translate .goog-te-gadget *{font-family:inherit!important}
.aq-translate .goog-te-gadget>span{display:none!important}
.aq-translate .goog-te-gadget .goog-te-combo{margin:0!important;padding:4px 8px!important;border:0!important;background:transparent!important;color:var(--aq-fg,#0A1929)!important;font-size:13px!important;font-weight:600;cursor:pointer}
html.dark .aq-translate .goog-te-gadget .goog-te-combo{color:var(--aq-fg,#f1f5fb)!important}
.aq-translate .goog-te-gadget .goog-te-combo option{background:var(--aq-bg,#fff);color:var(--aq-fg,#0A1929)}

/* Hide the persistent translate top banner and tooltip globally. */
.skiptranslate,iframe.skiptranslate,iframe.goog-te-banner-frame,#goog-gt-tt,.goog-te-balloon-frame,.goog-tooltip,.goog-tooltip:hover,.goog-text-highlight{display:none!important;visibility:hidden!important}
body{top:0!important;position:static!important}
html{margin-top:0!important}

/* Hide WP admin toolbar on the front-end completely. */
#wpadminbar{display:none!important}
html,html body{margin-top:0!important;padding-top:0!important}

/* Make sure the floating accessibility FAB is visible everywhere. */
.aq-a11y-toggle{position:fixed;right:18px;bottom:18px;width:52px;height:52px;border-radius:999px;border:0;background:var(--aq-pink-500,#2a7fa8);color:#fff;display:inline-flex;align-items:center;justify-content:center;box-shadow:0 14px 36px rgba(42,127,168,.45);cursor:pointer;z-index:9999}
.aq-a11y-toggle:hover{background:var(--aq-pink-600,#1f6688)}
.aq-a11y-toggle svg{width:26px;height:26px}

/* =====================================================================
 * v3.4 layout polish — tighten vertical rhythm + balance hero (May 2026)
 * The earlier spacing felt AI-generated: huge empty bands between every
 * tag-pill / heading. Reduce section padding, section-head margin, and
 * give the hero image more weight so it visually balances the headline.
 * ===================================================================== */
.aq-section { padding: 56px 0 !important; }
@media (min-width: 1024px) { .aq-section { padding: 72px 0 !important; } }
.aq-section + .aq-section { padding-top: 0 !important; }
.aq-section--muted + .aq-section,
.aq-section + .aq-section--muted { padding-top: 48px !important; }
@media (min-width: 1024px) {
  .aq-section--muted + .aq-section,
  .aq-section + .aq-section--muted { padding-top: 64px !important; }
}

.aq-section-head { margin: 0 auto 28px !important; }
@media (min-width: 1024px) { .aq-section-head { margin: 0 auto 36px !important; } }
.aq-section-title { margin: 10px 0 8px !important; }
.aq-section-lead, .aq-section-sub { margin-top: 6px !important; }

/* Tag pills above section titles (FAQ, PRICING, OUR SERVICES, …) */
.aq-eyebrow, .aq-pill, .aq-tag-pill { margin-bottom: 8px !important; }

/* Hero: balance the two columns and lift the illustration. */
.aq-hero { padding: 56px 0 64px !important; }
@media (min-width: 1024px) { .aq-hero { padding: 72px 0 80px !important; } }
@media (min-width: 1024px) {
  .aq-hero__inner { grid-template-columns: 1fr 1.08fr !important; gap: 48px !important; align-items: center !important; }
}
.aq-hero__visual { display: flex; justify-content: center; align-items: center; }
.aq-hero__img {
  width: 100% !important;
  max-width: 640px;
  transform: translateY(-4px);
  border-radius: 22px !important;
  box-shadow: 0 30px 80px -24px rgba(190, 24, 93,.45), 0 0 0 1px rgba(42,127,168,.18) !important;
}
@media (min-width: 1280px) { .aq-hero__img { max-width: 720px; } }
.aq-hero__visual-glow { inset: -6% -4% !important; filter: blur(48px) !important; }

/* Tighten the gap between hero and the next strip (trust-strip etc.). */
.aq-hero + .aq-trust-strip,
.aq-hero + section { margin-top: 0 !important; }

/* Trust strip should be a slim band, not a full section. */
.aq-trust-strip { padding: 18px 0 !important; }

/* FAQ / Contact: kill the giant void between accordion and "Talk to" header. */
#faq + #contact, .aq-section#contact { padding-top: 0 !important; }
#faq { padding-bottom: 40px !important; }
@media (min-width: 1024px) { #faq { padding-bottom: 56px !important; } }

/* Footer sits flush after the last section instead of a 100px void. */
.aq-section:last-of-type { padding-bottom: 56px !important; }
@media (min-width: 1024px) { .aq-section:last-of-type { padding-bottom: 72px !important; } }

/* ============================================================
   v3.4.2 — Legal / Prose pages (Privacy, Terms, Refund, etc.)
   ============================================================ */

/* Constrain the legal column so the eye doesn't run across 1400px. */
.aq-legal,
.aq-prose {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* Wrap the legal copy in a soft surface card so it doesn't look bare. */
.aq-legal {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1px solid var(--aq-border, rgba(255,255,255,.08));
  border-radius: 20px;
  padding: 40px 28px;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,.55);
}
@media (min-width: 768px) {
  .aq-legal { padding: 56px 56px; }
}
@media (min-width: 1024px) {
  .aq-legal { padding: 64px 72px; }
}

/* Pink accent stripe at the top of the card. */
.aq-legal::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--aq-pink-500, #2a7fa8), transparent);
  opacity: .55;
  border-radius: 2px;
}

/* Breadcrumb — kill the ugly "1. 2." numbers, make it a quiet inline trail. */
.aq-breadcrumb { margin: 0 0 18px; font-size: 13px; color: var(--aq-fg-muted, #b6c3d6); }
.aq-breadcrumb ol {
  list-style: none !important;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
}
.aq-breadcrumb li {
  display: inline-flex; align-items: center; gap: 6px;
  list-style: none !important;
}
.aq-breadcrumb li::marker { content: "" !important; }
.aq-breadcrumb a {
  color: var(--aq-fg-muted, #b6c3d6);
  text-decoration: none;
  transition: color .15s ease;
}
.aq-breadcrumb a:hover { color: var(--aq-pink-500, #2a7fa8); }
.aq-breadcrumb [aria-current="page"] { color: rgba(255,255,255,.92); font-weight: 500; }
.aq-breadcrumb .sep { color: rgba(255,255,255,.25); }

/* Page header inside a legal card. */
.aq-legal__head {
  margin: 0 0 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--aq-border, rgba(255,255,255,.08));
}
.aq-legal__meta {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--aq-fg-muted, #b6c3d6);
  letter-spacing: .01em;
}

/* Page title — much smaller than the home-page hero. */
.aq-page-title {
  font-size: clamp(28px, 3.4vw, 40px) !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  margin: 0 !important;
  color: #fff;
}

/* ----- Prose typography rhythm ----- */
.aq-prose,
.aq-legal .aq-prose,
.aq-legal {
  color: var(--aq-navy-700, #1f2d3d);
  font-size: 16px;
  line-height: 1.75;
}
.aq-legal h2,
.aq-prose h2 {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.3;
  font-weight: 700;
  color: var(--aq-navy-900, #0A1929);
  margin: 40px 0 12px;
  letter-spacing: -0.005em;
  position: relative;
  padding-left: 14px;
}
.aq-legal h2::before,
.aq-prose h2::before {
  content: "";
  position: absolute;
  left: 0; top: .35em;
  width: 4px; height: 1em;
  background: var(--aq-pink-500, #2a7fa8);
  border-radius: 3px;
}
.aq-legal h3,
.aq-prose h3 {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--aq-navy-900, #0A1929);
  margin: 28px 0 10px;
}
.aq-legal h4,
.aq-prose h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--aq-navy-700, #1f2d3d);
  margin: 22px 0 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.aq-legal p,
.aq-prose p { margin: 0 0 14px; }
.aq-legal strong,
.aq-prose strong { color: var(--aq-navy-900, #0A1929); font-weight: 600; }
.aq-legal a,
.aq-prose a {
  color: var(--aq-pink-600, #1f6688);
  text-decoration: none;
  border-bottom: 1px solid rgba(219, 39, 119, .35);
  transition: border-color .15s ease, color .15s ease;
}
.aq-legal a:hover,
.aq-prose a:hover { color: var(--aq-pink-500, #2a7fa8); border-bottom-color: var(--aq-pink-500, #2a7fa8); }

/* Dark-mode overrides (restores the original white-on-navy palette) */
html.dark .aq-prose,
html.dark .aq-legal .aq-prose,
html.dark .aq-legal { color: #d8dfe9; }
html.dark .aq-legal h2,
html.dark .aq-prose h2,
html.dark .aq-legal h3,
html.dark .aq-prose h3 { color: #fff; }
html.dark .aq-legal h4,
html.dark .aq-prose h4 { color: #e8ecf3; }
html.dark .aq-legal strong,
html.dark .aq-prose strong { color: #fff; }
html.dark .aq-legal a,
html.dark .aq-prose a {
  color: var(--aq-pink-500, #2a7fa8);
  border-bottom-color: rgba(42,127,168, .35);
}
html.dark .aq-legal a:hover,
html.dark .aq-prose a:hover { color: var(--aq-pink-600, #1f6688); border-bottom-color: var(--aq-pink-600, #1f6688); }
.aq-legal ul, .aq-prose ul,
.aq-legal ol, .aq-prose ol {
  margin: 6px 0 18px;
  padding-left: 22px;
}
.aq-legal li, .aq-prose li {
  margin: 6px 0;
  padding-left: 4px;
}
.aq-legal ul li::marker, .aq-prose ul li::marker { color: var(--aq-pink-500, #2a7fa8); }
.aq-legal ol li::marker, .aq-prose ol li::marker { color: var(--aq-pink-500, #2a7fa8); font-weight: 600; }

.aq-legal hr, .aq-prose hr {
  border: 0;
  height: 1px;
  background: var(--aq-border, rgba(255,255,255,.08));
  margin: 28px 0;
}
.aq-legal blockquote, .aq-prose blockquote {
  margin: 18px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--aq-pink-500, #2a7fa8);
  background: rgba(42,127,168,.06);
  border-radius: 0 10px 10px 0;
  color: #e8ecf3;
}
.aq-legal table, .aq-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}
.aq-legal th, .aq-prose th,
.aq-legal td, .aq-prose td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--aq-border, rgba(255,255,255,.08));
}
.aq-legal th, .aq-prose th {
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.03);
}
.aq-legal code, .aq-prose code {
  background: rgba(255,255,255,.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .92em;
  color: #fbcfe8;
}

/* Light-mode adjustments. */
@media (prefers-color-scheme: light) {
  .aq-legal {
    background: #ffffff;
    border-color: rgba(10,25,41,.08);
    box-shadow: 0 20px 60px -30px rgba(10,25,41,.18);
  }
  .aq-legal, .aq-prose { color: #1f2937; }
  .aq-page-title, .aq-legal h2, .aq-prose h2,
  .aq-legal h3, .aq-prose h3 { color: #0A1929; }
  .aq-legal strong, .aq-prose strong { color: #0A1929; }
  .aq-legal__head { border-bottom-color: rgba(10,25,41,.08); }
  .aq-legal__meta, .aq-breadcrumb { color: #5b6677; }
  .aq-breadcrumb [aria-current="page"] { color: #0A1929; }
  .aq-breadcrumb .sep { color: rgba(10,25,41,.3); }
  .aq-legal th { background: rgba(10,25,41,.04); color: #0A1929; }
  .aq-legal hr, .aq-prose hr { background: rgba(10,25,41,.08); }
}
body.aq-light .aq-legal,
[data-theme="light"] .aq-legal {
  background: #ffffff;
  border-color: rgba(10,25,41,.08);
  box-shadow: 0 20px 60px -30px rgba(10,25,41,.18);
  color: #1f2937;
}
body.aq-light .aq-legal h2,
body.aq-light .aq-legal h3,
body.aq-light .aq-page-title,
[data-theme="light"] .aq-legal h2,
[data-theme="light"] .aq-legal h3,
[data-theme="light"] .aq-page-title { color: #0A1929; }

/* ===== Onboarding (full-page) ===== */
.aq-ob { display:grid; grid-template-columns: 1fr; gap: 24px; max-width: 1100px; margin: 0 auto; padding: 8px 0 48px; }
@media (min-width: 960px) { .aq-ob { grid-template-columns: minmax(0,1fr) 340px; grid-template-areas: "back back" "steps steps" "root summary"; } .aq-ob__back{grid-area:back;} .aq-ob__steps{grid-area:steps;} #aq-ob-root{grid-area:root;} #aq-ob-summary{grid-area:summary;} }
.aq-ob__back { display:inline-block; font-size: 12px; font-weight: 700; letter-spacing:.08em; text-transform:uppercase; color:#475569; text-decoration:none; margin-bottom: 4px; }
.aq-ob__back:hover { color:#0A1929; }
.aq-ob__steps { list-style:none; display:flex; flex-wrap:wrap; gap: 4px 12px; padding: 0; margin: 0 0 8px; align-items:center; }
.aq-ob__step { display:flex; align-items:center; gap: 8px; font-size: 12px; font-weight: 700; color:#94a3b8; text-transform: uppercase; letter-spacing:.06em; }
.aq-ob__step + .aq-ob__step::before { content: "—"; margin-right: 4px; color:#cbd5e1; }
.aq-ob__step-num { display:inline-grid; place-items:center; width: 22px; height: 22px; border-radius: 999px; background:#e5e7eb; color:#475569; font-size: 11px; }
.aq-ob__step.is-active .aq-ob__step-num { background:#c8a14a; color:#fff; }
.aq-ob__step.is-active { color:#0A1929; }
.aq-ob__step.is-done .aq-ob__step-num { background:#0A1929; color:#fff; }
.aq-ob__step.is-done { color:#0A1929; }
.aq-ob__card { background:#fff; border:1px solid #e5e7eb; border-radius: 14px; padding: 24px; box-shadow: 0 1px 2px rgba(15,23,42,.04); }
.aq-ob__card + .aq-ob__card { margin-top: 16px; }
.aq-ob__step-banner { font-size: 11px; font-weight: 800; letter-spacing:.1em; text-transform: uppercase; color:#c8a14a; border-left: 4px solid #c8a14a; padding-left: 10px; margin: 0 0 12px; }
.aq-ob__title { font-family: var(--font-display, serif); font-size: 24px; font-weight: 800; margin: 4px 0; color:#0A1929; }
.aq-ob__subtitle { font-size: 12px; color:#64748b; letter-spacing:.08em; text-transform: uppercase; margin: 0 0 16px; }
.aq-ob__features { list-style:none; padding:0; margin: 0 0 16px; display:grid; gap: 8px; font-size: 14px; color:#1e293b; }
.aq-ob__tick { color:#16a34a; font-weight: 800; margin-right: 6px; }
.aq-ob__label { font-size: 11px; font-weight: 700; letter-spacing:.08em; text-transform: uppercase; color:#475569; display:block; margin-bottom: 6px; }
.aq-ob__input { width: 100%; padding: 12px 14px; border: 1px solid #cbd5e1; border-radius: 10px; font-size: 14px; background:#fff; color:#0A1929; outline: none; transition: border-color .15s, box-shadow .15s; }
.aq-ob__input:focus { border-color:#c8a14a; box-shadow: 0 0 0 3px rgba(200,161,74,.18); }
.aq-ob__coupon { margin: 4px 0 18px; }
.aq-ob__coupon-row { display:flex; gap: 8px; align-items:center; }
.aq-ob__link { background: none; border: 0; color:#0A1929; font-weight: 700; cursor: pointer; padding: 8px 12px; }
.aq-ob__link:hover { color:#c8a14a; }
.aq-ob__hint { font-size: 12px; color:#16a34a; margin: 6px 0 0; }
.aq-ob__btn { display:inline-flex; align-items:center; justify-content:center; gap: 8px; padding: 12px 18px; border-radius: 10px; border: 1px solid #cbd5e1; background:#fff; color:#0A1929; font-weight: 700; font-size: 13px; letter-spacing:.04em; text-transform: uppercase; cursor: pointer; text-decoration: none; }
.aq-ob__btn:hover { border-color:#0A1929; }
.aq-ob__btn--primary { background:#0A1929; color:#fff; border-color:#0A1929; width: 100%; padding: 14px 18px; box-shadow: 0 6px 16px rgba(10,25,41,.18); }
.aq-ob__btn--primary:hover { background:#0e2742; color:#fff; }
.aq-ob__form { display:block; }
.aq-ob__grid { display:grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .aq-ob__grid { grid-template-columns: 1fr 1fr; } .aq-ob__grid-full { grid-column: 1 / -1; } }
.aq-ob__field { display:block; }
.aq-ob__actions { display:flex; gap: 8px; justify-content: flex-end; margin-top: 18px; flex-wrap: wrap; }
.aq-ob__actions .aq-ob__btn--primary { width: auto; flex: 0 1 auto; }
.aq-ob__check { display:flex; gap: 10px; align-items: flex-start; font-size: 14px; color:#1e293b; padding: 12px; border: 1px solid #e5e7eb; border-radius: 10px; background:#f8fafc; }
.aq-ob__check input { margin-top: 4px; }
.aq-ob__note { font-size: 13px; color:#0f172a; background:#ecfeff; border: 1px solid #a5f3fc; padding: 12px 14px; border-radius: 10px; margin: 0 0 12px; }
.aq-ob__error { font-size: 13px; color:#b91c1c; background:#fef2f2; border: 1px solid #fecaca; padding: 10px 12px; border-radius: 10px; margin-top: 12px; }
.aq-ob__ok { font-size: 14px; color:#15803d; font-weight: 700; margin: 0 0 12px; }
.aq-ob__dl { display:grid; gap: 0; margin: 0 0 16px; border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.aq-ob__dl-row { display:flex; justify-content: space-between; padding: 10px 14px; font-size: 14px; }
.aq-ob__dl-row:nth-child(odd) { background:#f8fafc; }
.aq-ob__dl-row dt { color:#475569; }
.aq-ob__dl-row dd { color:#0A1929; font-weight: 700; margin: 0; }
.aq-ob__pay-amt { font-size: 16px; color:#1e293b; margin: 8px 0 16px; }
.aq-ob__pay-amt strong { font-size: 22px; color:#0A1929; }
.aq-ob__sum { position: sticky; top: 90px; }
.aq-ob__sum-label { font-size: 11px; font-weight: 800; letter-spacing:.1em; text-transform: uppercase; color:#64748b; margin: 0 0 4px; }
.aq-ob__sum-title { font-family: var(--font-display, serif); font-size: 18px; font-weight: 800; margin: 2px 0; color:#0A1929; }
.aq-ob__sum-sub { font-size: 11px; letter-spacing:.08em; text-transform: uppercase; color:#64748b; margin: 0 0 12px; }
.aq-ob__sum hr { border: 0; border-top: 1px solid #e5e7eb; margin: 10px 0; }
.aq-ob__sum-row { display:flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color:#1e293b; }
.aq-ob__sum-row--discount strong { color:#16a34a; }
.aq-ob__sum-row--total { border-top: 1px solid #e5e7eb; padding-top: 10px; margin-top: 6px; font-size: 16px; }
.aq-ob__sum-total { font-size: 20px; color:#0A1929; }
.aq-ob__sum-note { font-size: 10px; color:#64748b; margin: 8px 0 4px; letter-spacing:.06em; text-transform: uppercase; }
.aq-ob__sum-pay { font-size: 11px; color:#475569; margin: 0; letter-spacing:.06em; text-transform: uppercase; }
.aq-ob__success { text-align: center; padding: 36px 24px; }
.aq-ob__success-icon { width: 64px; height: 64px; border-radius: 999px; background:#dcfce7; color:#15803d; display:inline-grid; place-items:center; font-size: 32px; font-weight: 900; margin: 0 auto 12px; }
.aq-ob__noscript { font-size: 14px; color:#b91c1c; }
body.aq-light .aq-ob__card,
[data-theme="light"] .aq-ob__card { background:#fff; }
.aq-price__b-link { display:grid; grid-template-columns: 1fr auto; grid-template-areas: "name amount" "desc amount" "badge badge"; gap: 2px 12px; padding: 8px 6px; color: inherit; text-decoration: none; border-radius: 8px; transition: background-color .15s; }
.aq-price__b-link:hover { background:#f8fafc; }
.aq-price__b-link .aq-price__b-name { grid-area: name; font-weight: 700; }
.aq-price__b-link .aq-price__b-desc { grid-area: desc; font-size: 12px; color:#64748b; }
.aq-price__b-link .aq-price__b-amount { grid-area: amount; align-self: center; font-weight: 800; color:#0A1929; }
.aq-price__b-link .aq-price__b-badge { grid-area: badge; font-size: 10px; font-weight: 700; color:#15803d; }

/* Make pricing billing rows fully clickable */
.aq-price__billing li:has(> .aq-price__b-link) { padding: 0; border: 0; background: transparent; }
.aq-price__b-link { cursor: pointer; padding: 12px 14px; border: 1px solid var(--aq-border, rgba(10,25,41,.09)); border-radius: 10px; outline: none; transition: border-color .15s, box-shadow .15s, background-color .15s, transform .05s; }
.aq-price__b-link:hover { border-color: #0A1929; background:#f8fafc; box-shadow: 0 4px 14px rgba(10,25,41,.08); }
.aq-price__b-link:focus-visible { border-color: #c8a14a; box-shadow: 0 0 0 3px rgba(200,161,74,.25); }
.aq-price__b-link:active { transform: translateY(1px); }
.aq-price__b-link::after { content: "Subscribe \2192"; grid-area: name / amount; justify-self: end; align-self: end; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--aq-pink-600, #1f6688); opacity: 0; transition: opacity .15s; pointer-events:none; }
.aq-price__b-link:hover::after, .aq-price__b-link:focus-visible::after { opacity: 1; }
.aq-price__b-link .aq-price__b-amount { color: var(--aq-pink-600, #1f6688); }
html.dark .aq-price__b-link { border-color: rgba(255,255,255,.10); background: rgba(255,255,255,.02); }
html.dark .aq-price__b-link:hover { background: rgba(255,255,255,.06); border-color: #c8a14a; }

/* Subscribe page — collapse the empty gap between onboarding flow and footer */
body.page-template-page-subscribe .aq-main > .aq-section { padding-bottom: 0; }
body.page-template-page-subscribe .aq-ob { padding-bottom: 16px; }
body.page-template-page-subscribe .aq-newsletter { margin-top: 0; }
body.page-template-page-subscribe .aq-footer { margin-top: 0; }

/* Kill any inherited link underline on clickable pricing rows */
.aq-price__b-link,
.aq-price__b-link:hover,
.aq-price__b-link:focus,
.aq-price__b-link:active,
.aq-price__b-link *,
.aq-price__b-link *:hover {
  text-decoration: none !important;
  text-decoration-line: none !important;
  border-bottom: 0 !important;
}

/* ============================================================
   v2 POLISH PASS — typography, dark-mode contrast, page hero
   ============================================================ */

/* 1. Tighter heading scale (less "AI-bombastic") */
h1 { font-size: clamp(32px, 4vw, 44px) !important; font-weight: 700 !important; letter-spacing: -0.02em !important; }
h2 { font-size: clamp(24px, 2.8vw, 32px) !important; font-weight: 600 !important; letter-spacing: -0.015em !important; }
h3 { font-size: clamp(18px, 1.6vw, 20px) !important; font-weight: 600 !important; }
.aq-page-title { font-size: clamp(28px, 3.4vw, 38px) !important; font-weight: 700 !important; letter-spacing: -0.02em !important; margin: 6px 0 12px !important; }
.aq-section-title { font-size: clamp(22px, 2.4vw, 30px) !important; font-weight: 600 !important; }
.aq-lede { color: var(--aq-fg-muted, #5b6677); font-size: 16px; line-height: 1.6; margin: 0 0 20px; max-width: 64ch; }

/* 2. Guaranteed dark-mode contrast */
html.dark .aq-page-title,
html.dark .aq-section-title { color: #f1f5fb !important; }
html.dark h1, html.dark h2, html.dark h3, html.dark h4 { color: #f1f5fb; }
/* But keep onboarding card titles dark (white card) */
.aq-ob__card .aq-ob__title,
.aq-ob__card h2, .aq-ob__card h3, .aq-ob__card h4,
.aq-ob__summary h3, .aq-ob__summary .aq-ob__sum-title,
html.dark .aq-ob__card .aq-ob__title,
html.dark .aq-ob__card h2, html.dark .aq-ob__card h3, html.dark .aq-ob__card h4,
html.dark .aq-ob__summary h3, html.dark .aq-ob__summary .aq-ob__sum-title { color: #0A1929 !important; }
/* Legal/prose white-card pages also stay dark text in dark mode */
.aq-legal, .aq-legal h1, .aq-legal h2, .aq-legal h3, .aq-legal h4, .aq-legal p, .aq-legal li, .aq-legal blockquote { color: #1f2937 !important; }
html.dark .aq-legal h1, html.dark .aq-legal h2, html.dark .aq-legal h3, html.dark .aq-legal h4,
html.dark .aq-legal .aq-page-title { color: #0A1929 !important; }
html.dark .aq-legal p, html.dark .aq-legal li, html.dark .aq-legal blockquote { color: #334155 !important; }
html.dark .aq-legal a { color: var(--aq-pink-700, #154c68) !important; }
html.dark .aq-legal__meta { color: #64748b !important; }
html.dark .aq-legal strong { color: #0A1929 !important; }
html.dark .aq-legal code { background: #f1f5f9 !important; color: #0A1929 !important; padding: 1px 6px; border-radius: 4px; }
html.dark .aq-lede,
html.dark .aq-section-sub { color: #c9d4e3 !important; }
html.dark .aq-breadcrumb,
html.dark .aq-breadcrumb a,
html.dark .aq-breadcrumb [aria-current="page"] { color: #c9d4e3 !important; }
html.dark .aq-breadcrumb a { color: var(--aq-pink-300, #f9a8d4) !important; }
html.dark .aq-breadcrumb [aria-current="page"] { color: #ffffff !important; font-weight: 600; }
html.dark .aq-breadcrumb .sep { color: #4b5870 !important; }

/* 3. Onboarding stepper — readable in dark mode */
html.dark .aq-ob__step-label { color: #94a3b8 !important; }
html.dark .aq-ob__step.is-active .aq-ob__step-label,
html.dark .aq-ob__step.is-done .aq-ob__step-label { color: #f1f5fb !important; }
html.dark .aq-ob__back { color: var(--aq-pink-300, #f9a8d4) !important; }

/* 4. Onboarding card stays light (form sheet) even in dark mode for max readability */
.aq-ob__card { background: #ffffff !important; color: #0A1929 !important; border: 1px solid rgba(10,25,41,.08) !important; }
.aq-ob__card h2, .aq-ob__card h3, .aq-ob__card label, .aq-ob__card .aq-ob__plan-title { color: #0A1929 !important; }
.aq-ob__card p, .aq-ob__card li, .aq-ob__card small, .aq-ob__card .aq-ob__plan-meta { color: #475569 !important; }
.aq-ob__card input, .aq-ob__card select, .aq-ob__card textarea {
	background: #ffffff !important; color: #0A1929 !important;
	border: 1px solid #d9dee6 !important;
}
.aq-ob__card input::placeholder { color: #94a3b8 !important; }
.aq-ob__summary { background: #ffffff !important; color: #0A1929 !important; border: 1px solid rgba(10,25,41,.08) !important; }
.aq-ob__summary h3, .aq-ob__summary .aq-ob__plan-title { color: #0A1929 !important; }
.aq-ob__summary p, .aq-ob__summary li, .aq-ob__summary small { color: #475569 !important; }

/* 5. Page hero — centered, eyebrow + title + lede for plain pages */
.aq-page-hero { text-align: center; padding: 8px 0 24px; }
.aq-page-hero .aq-eyebrow { margin-bottom: 14px; }
.aq-page-hero .aq-page-title { margin: 0 auto 14px; max-width: 22ch; }
.aq-page-hero .aq-lede { margin: 0 auto; max-width: 60ch; text-align: center; color: var(--aq-fg-muted, #5b6677); }

/* 6. Plain-page body content — generous, readable */
.aq-container > p,
.aq-container > h2,
.aq-container > h3,
.aq-container > ul,
.aq-container > ol { max-width: 70ch; }
.aq-container > h2 { margin-top: 36px; }
.aq-container > h3 { margin-top: 24px; }

/* 7. Subscribe / onboarding — give the wizard breathing room */
body.page-template-page-subscribe .aq-main > .aq-section { padding-top: 36px !important; }
body.page-template-page-subscribe .aq-page-title { font-size: clamp(24px, 2.6vw, 30px) !important; }
body.page-template-page-subscribe .aq-lede { font-size: 15px; }

/* 8. Body-text legibility */
body.aq-body { font-size: 15.5px; line-height: 1.65; }
html.dark body.aq-body { color: #e2e8f0; }
html.dark .aq-section { color: #e2e8f0; }

/* --- Onboarding "select a plan first" modal --- */
.aq-ob-modal__overlay {
	position: fixed; inset: 0; background: rgba(10,25,41,.72);
	display: flex; align-items: center; justify-content: center;
	z-index: 10000; padding: 20px; backdrop-filter: blur(4px);
	animation: aqOvFade .18s ease-out;
}
@keyframes aqOvFade { from { opacity: 0; } to { opacity: 1; } }
.aq-ob-modal {
	background: #fff; color: #0A1929;
	border-radius: 16px; max-width: 440px; width: 100%;
	padding: 32px 28px; text-align: center;
	box-shadow: 0 20px 60px rgba(10,25,41,.45);
	animation: aqMdPop .22s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes aqMdPop { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.aq-ob-modal__icon {
	width: 56px; height: 56px; margin: 0 auto 14px;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--aq-pink-500,#2a7fa8), var(--aq-pink-700,#154c68));
	color: #fff; font-size: 28px; border-radius: 50%;
	box-shadow: 0 6px 20px rgba(42,127,168,.35);
}
.aq-ob-modal__title { font-size: 22px; font-weight: 700; margin: 0 0 10px; letter-spacing: -.01em; color:#0A1929 !important; }
.aq-ob-modal__body  { font-size: 15px; color:#475569; margin: 0 0 22px; line-height: 1.55; }
.aq-ob-modal__actions { display: flex; justify-content: center; }
.aq-ob-modal__btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 22px; border-radius: 10px; border: 0; cursor: pointer;
	font-weight: 700; font-size: 15px; letter-spacing: .01em;
	transition: transform .12s, box-shadow .15s, background-color .15s;
}
.aq-ob-modal__btn--primary {
	background: var(--aq-pink-600, #1f6688); color: #fff;
	box-shadow: 0 4px 14px rgba(219,39,119,.35);
}
.aq-ob-modal__btn--primary:hover { background: var(--aq-pink-700, #154c68); transform: translateY(-1px); }
.aq-ob-modal__btn--primary:active { transform: translateY(0); }

/* =====================================================================
   RESPONSIVE + ACCESSIBILITY PASS  (mobile ≤640, tablet 641-1023, desktop ≥1024)
   ===================================================================== */

/* --- Visibility helpers --- */
.aq-show-md { display: inline-flex; }
@media (min-width: 1024px) { .aq-show-md { display: none !important; } }
.aq-hidden-md { display: block; }
@media (max-width: 1023px) { .aq-hidden-md { display: none !important; } }

/* --- Touch target minimum (WCAG 2.5.5) --- */
.aq-btn, .aq-icon-btn, .aq-nav__link, .aq-mobile-nav a,
.aq-footer a, .aq-a11y-toggle, button, [role="button"], input[type="submit"] {
	min-height: 44px;
}
.aq-icon-btn { min-width: 44px; width: 44px; height: 44px; }

/* --- Header on mobile --- */
@media (max-width: 1023px) {
	.aq-header__inner { padding: 10px 16px; gap: 8px; }
	.aq-header__actions { gap: 6px; }
	.aq-nav { display: none; }
	.aq-translate { display: none !important; }
}

/* --- Mobile nav drawer --- */
.aq-mobile-nav {
	position: fixed; top: 64px; left: 0; right: 0;
	background: var(--aq-bg, #fff);
	border-top: 1px solid var(--aq-border, rgba(10,25,41,.08));
	padding: 16px 20px 24px;
	z-index: 95; max-height: calc(100vh - 64px); overflow-y: auto;
	box-shadow: 0 8px 28px rgba(10,25,41,.12);
	animation: aqDrawer .18s ease-out;
}
@keyframes aqDrawer { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
html.dark .aq-mobile-nav { background: #0a1426; border-color: rgba(255,255,255,.08); }
.aq-mobile-nav[hidden] { display: none; }
.aq-mobile-nav__list { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 4px; }
.aq-mobile-nav__list li { margin: 0; }
.aq-mobile-nav__list a {
	display: block; padding: 12px 14px; border-radius: 10px;
	color: var(--aq-fg); text-decoration: none; font-weight: 500; font-size: 16px;
	transition: background-color .15s;
}
.aq-mobile-nav__list a:hover, .aq-mobile-nav__list a:focus-visible {
	background: var(--aq-bg-muted, rgba(10,25,41,.04)); color: var(--aq-pink-600, #1f6688);
}
html.dark .aq-mobile-nav__list a:hover, html.dark .aq-mobile-nav__list a:focus-visible {
	background: rgba(255,255,255,.06); color: var(--aq-pink-300, #f9a8d4);
}
.aq-mobile-nav .aq-btn--block { width: 100%; justify-content: center; }
@media (min-width: 1024px) { .aq-mobile-nav, #aq-mobile-toggle { display: none !important; } }

/* --- Body scroll lock when drawer open --- */
body.aq-nav-open { overflow: hidden; }

/* --- Typography on small screens --- */
@media (max-width: 640px) {
	body.aq-body { font-size: 15px; }
	h1, .aq-page-title { font-size: clamp(26px, 7vw, 32px) !important; }
	h2, .aq-section-title { font-size: clamp(22px, 5.5vw, 28px) !important; }
	h3 { font-size: 17px !important; }
	.aq-lede { font-size: 15px; }
	.aq-section { padding: 32px 0 !important; }
	.aq-section-head { margin: 0 auto 22px !important; }
}

/* --- Hero responsive --- */
@media (max-width: 1023px) {
	.aq-hero { padding: 32px 0 40px !important; }
	.aq-hero__inner { grid-template-columns: 1fr !important; gap: 28px !important; }
	.aq-hero__img { max-width: 100%; }
	.aq-hero__stats { grid-template-columns: repeat(3, 1fr) !important; gap: 16px; }
}
@media (max-width: 480px) {
	.aq-hero__stats { grid-template-columns: repeat(2, 1fr) !important; }
	.aq-hero__cta { flex-direction: column; align-items: stretch; }
	.aq-hero__cta .aq-btn { width: 100%; justify-content: center; }
}

/* --- Pricing cards stack on mobile --- */
@media (max-width: 767px) {
	.aq-grid--pricing { grid-template-columns: 1fr !important; gap: 18px; }
	.aq-price { padding: 22px 18px !important; }
}

/* --- Forms full-width & comfortable on mobile --- */
@media (max-width: 640px) {
	.aq-form input, .aq-form select, .aq-form textarea,
	.aq-ob__input, .aq-ob__card input, .aq-ob__card select, .aq-ob__card textarea {
		font-size: 16px !important; /* prevent iOS zoom */
		padding: 12px 14px !important;
	}
	.aq-grid--2, .aq-grid--3 { grid-template-columns: 1fr !important; }
	.aq-card { padding: 20px !important; }
}

/* --- Onboarding wizard on mobile --- */
@media (max-width: 959px) {
	.aq-ob { display: block !important; }
	.aq-ob__summary { margin-top: 18px; }
}
@media (max-width: 640px) {
	.aq-ob__steps { gap: 6px !important; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
	.aq-ob__steps::-webkit-scrollbar { display: none; }
	.aq-ob__step { flex: 0 0 auto; }
	.aq-ob__step-label { font-size: 11px !important; }
	.aq-ob__card { padding: 18px !important; }
	.aq-ob__title { font-size: 18px !important; }
	.aq-ob__btn { width: 100%; justify-content: center; min-height: 48px; font-size: 15px; }
	.aq-ob__grid { grid-template-columns: 1fr !important; }
	.aq-ob__coupon-row { flex-direction: column; align-items: stretch; gap: 8px; }
	.aq-ob-modal { padding: 24px 20px; }
	.aq-ob-modal__title { font-size: 19px; }
}

/* --- Footer on mobile --- */
@media (max-width: 767px) {
	.aq-footer__grid { grid-template-columns: 1fr !important; gap: 24px; }
	.aq-footer__bottom { flex-direction: column; align-items: flex-start !important; gap: 12px; text-align: left; }
}
@media (min-width: 768px) and (max-width: 1023px) {
	.aq-footer__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 28px; }
}

/* --- Newsletter on mobile --- */
@media (max-width: 640px) {
	.aq-newsletter__inner { grid-template-columns: 1fr !important; padding: 24px 18px !important; }
	.aq-newsletter form { flex-direction: column; align-items: stretch; }
	.aq-newsletter input, .aq-newsletter button { width: 100%; }
}

/* --- Container padding --- */
@media (max-width: 640px) { .aq-container { padding: 0 16px; } }

/* --- Accessibility widget on mobile (smaller, out of thumb reach for footer) --- */
@media (max-width: 640px) {
	.aq-a11y { right: 12px; bottom: 12px; }
	.aq-a11y-toggle { width: 48px; height: 48px; }
	.aq-a11y-panel { width: calc(100vw - 24px) !important; max-width: 360px; right: 0; }
}

/* --- A11y: focus-visible rings on all interactive elements --- */
a:focus-visible, button:focus-visible, [role="button"]:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--aq-pink-500, #2a7fa8);
	outline-offset: 2px;
	border-radius: 6px;
}

/* --- A11y: reduced motion --- */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}

/* --- A11y: high-contrast tweaks for dark mode text --- */
html.dark .aq-eyebrow { color: #fbcfe8 !important; }
html.dark .aq-trust__list { color: #cbd5e1 !important; }

/* --- A11y: ensure skip link visible on focus --- */
.aq-skip-link:focus { left: 12px !important; top: 12px !important; }

/* --- Tables (legal pages) responsive scroll --- */
.aq-container table { display: block; overflow-x: auto; width: 100%; max-width: 100%; }

/* --- Images never overflow --- */
img, video, iframe, svg { max-width: 100%; }

/* --- Sticky header offset for anchor links --- */
:target { scroll-margin-top: 80px; }

/* ===== CONTACT PAGE v3 ===================================================== */
.aq-contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 28px; align-items: start; }
@media (max-width: 900px) { .aq-contact-grid { grid-template-columns: 1fr; gap: 20px; } }

.aq-contact-info { background: #ffffff; border: 1px solid var(--aq-border, #e6ebf2); border-radius: 18px; padding: 28px; box-shadow: 0 6px 24px -18px rgba(10,25,41,.18); }
.aq-contact-info h3 { font-size: 22px; margin: 0 0 6px; color: var(--aq-navy-900, #0A1929); }
.aq-contact-info__sub { color: var(--aq-navy-500, #5b6b80); margin: 0 0 22px; font-size: 14.5px; }
.aq-contact-info__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.aq-contact-info__list li { display: flex; gap: 14px; align-items: flex-start; }
.aq-contact-info__ic { flex: 0 0 40px; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, #ffe6f0, #ffd1e3); color: var(--aq-pink-700, #154c68); }
.aq-contact-info__ic .aq-icon { width: 20px; height: 20px; }
.aq-contact-info__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.aq-contact-info__label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--aq-navy-500, #5b6b80); }
.aq-contact-info__body a { color: var(--aq-navy-900, #0A1929); font-weight: 600; text-decoration: none; word-break: break-word; }
.aq-contact-info__body a:hover { color: var(--aq-pink-700, #154c68); }
.aq-contact-info__body small { display: block; margin-top: 2px; font-size: 12.5px; color: var(--aq-navy-500, #5b6b80); }
.aq-contact-info__body address { font-style: normal; color: var(--aq-navy-700, #1f2d3d); font-size: 14.5px; line-height: 1.55; }

/* Form */
.aq-contact-form { background: #ffffff; border: 1px solid var(--aq-border, #e6ebf2); border-radius: 18px; padding: 28px; box-shadow: 0 6px 24px -18px rgba(10,25,41,.18); display: flex; flex-direction: column; gap: 16px; }
.aq-contact-form__title { font-size: 22px; margin: 0 0 4px; color: var(--aq-navy-900, #0A1929); }
.aq-form { display: flex; flex-direction: column; gap: 14px; }
.aq-form label, .aq-field { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.aq-form .aq-field__label, .aq-form label > span { font-size: 13px; font-weight: 600; color: var(--aq-navy-700, #1f2d3d); }
.aq-form input[type="text"], .aq-form input[type="email"], .aq-form input[type="tel"], .aq-form textarea, .aq-form select {
	width: 100%; box-sizing: border-box; padding: 12px 14px; border: 1px solid var(--aq-border, #d8e0ea); border-radius: 12px; background: #fbfcfe; color: var(--aq-navy-900, #0A1929); font: inherit; font-size: 16px; line-height: 1.5; transition: border-color .15s, box-shadow .15s, background .15s;
}
.aq-form input:focus, .aq-form textarea:focus, .aq-form select:focus { outline: none; border-color: var(--aq-pink-500, #2a7fa8); background: #ffffff; box-shadow: 0 0 0 4px rgba(42,127,168,.15); }
.aq-form textarea { resize: vertical; min-height: 120px; }
.aq-form ::placeholder { color: #94a1b3; }
.aq-contact-form__submit { align-self: flex-start; min-width: 180px; }

/* Dark mode */
html.dark .aq-contact-info, html.dark .aq-contact-form { background: #0f1b2d; border-color: #1f2f47; box-shadow: 0 6px 24px -18px rgba(0,0,0,.6); }
html.dark .aq-contact-info h3, html.dark .aq-contact-form__title, html.dark .aq-contact-info__body a, html.dark .aq-contact-info__body address { color: #f1f5fb; }
html.dark .aq-contact-info__sub, html.dark .aq-contact-info__label, html.dark .aq-contact-info__body small { color: #9ba9be; }
html.dark .aq-form .aq-field__label, html.dark .aq-form label > span { color: #d5dde9; }
html.dark .aq-form input, html.dark .aq-form textarea, html.dark .aq-form select { background: #0a1424; border-color: #1f2f47; color: #f1f5fb; }
html.dark .aq-form ::placeholder { color: #5e6e84; }
html.dark .aq-contact-info__ic { background: linear-gradient(135deg, rgba(42,127,168,.22), rgba(190, 24, 93,.28)); color: #ffb3d1; }

/* ===== PRICING CARDS — toned-down palette ================================= */
/* Replace pink-heavy palette with neutral grays + a single pink accent on the popular card and amounts. */
.aq-price { border-color: #e5e7eb; box-shadow: 0 6px 24px -18px rgba(10,25,41,.18); }
.aq-price__starts { background: #f7f8fa; border: 1px solid #eef0f3; }
.aq-price__amount { color: var(--aq-navy-900, #0A1929); }
.aq-price__billing li { border-color: #e6e9ee; }
.aq-price__b-link { border-color: #e6e9ee; }
.aq-price__b-link:hover { border-color: var(--aq-pink-500, #2a7fa8); }
.aq-price__b-link .aq-price__b-amount { color: var(--aq-navy-900, #0A1929); }
.aq-price__b-link::after { color: var(--aq-pink-600, #1f6688); }

/* Popular card: keep a subtle pink halo (single accent) */
.aq-price--popular { border-color: #f3b5cc; box-shadow: 0 18px 50px -28px rgba(42,127,168,.45); }

/* Footer info strip: neutral with subtle pink eyebrow */
.aq-price-foot-grid { background: #f7f8fa; border: 1px dashed #d6dbe3; }
.aq-price-foot-grid strong { color: var(--aq-navy-500, #5b6b80); }

/* Dark mode — keep neutral surfaces */
html.dark .aq-price { background: #0f1b2d; border-color: #1f2f47; color: #e8edf4; box-shadow: 0 8px 30px -22px rgba(0,0,0,.7); }
html.dark .aq-price__starts { background: #0a1424; border-color: #1f2f47; }
html.dark .aq-price__amount, html.dark .aq-price__b-link .aq-price__b-amount { color: #f1f5fb; }
html.dark .aq-price__billing li, html.dark .aq-price__b-link { border-color: #1f2f47; background: transparent; }
html.dark .aq-price__b-link:hover { background: rgba(42,127,168,.06); border-color: var(--aq-pink-500, #2a7fa8); }
html.dark .aq-price--popular { border-color: #154c68; box-shadow: 0 18px 50px -28px rgba(42,127,168,.35); }
html.dark .aq-price-foot-grid { background: #0f1b2d; border-color: #1f2f47; }
html.dark .aq-price-foot-grid strong { color: #9ba9be; }

/* ===== PRICING CARDS — pink hover accent ================================== */
.aq-price { transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.aq-price:hover,
.aq-price:focus-within {
	border-color: var(--aq-pink-500, #2a7fa8);
	box-shadow: 0 18px 50px -22px rgba(42,127,168,.45);
	transform: translateY(-4px);
}
.aq-price--popular:hover,
.aq-price--popular:focus-within {
	border-color: var(--aq-pink-600, #1f6688);
	box-shadow: 0 22px 60px -22px rgba(42,127,168,.55);
	transform: translateY(-10px);
}
html.dark .aq-price:hover,
html.dark .aq-price:focus-within { border-color: var(--aq-pink-500, #2a7fa8); box-shadow: 0 18px 50px -22px rgba(42,127,168,.35); }

@media (prefers-reduced-motion: reduce) {
	.aq-price, .aq-price:hover, .aq-price--popular:hover { transition: none; transform: none; }
}

/* ===== Entrance animation safety net =======================================
   Keep .aq-anim elements visible at all times. We override the original
   keyframe (which started at opacity:0) so a stalled / reduced-motion /
   delayed animation can never leave the card blank. */
@keyframes aq-rise { from { opacity: 1; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.aq-anim { opacity: 1 !important; animation: aq-rise .5s cubic-bezier(.21,.83,.4,1) both; }
@media (prefers-reduced-motion: reduce) {
	.aq-anim { animation: none !important; transform: none !important; opacity: 1 !important; }
}

/* ===== Pricing billing rows — space between amount and Subscribe cue ====== */
.aq-price__b-link {
	grid-template-areas: "name amount" "desc amount" "sub  sub" "badge badge" !important;
	row-gap: 6px !important;
	padding-bottom: 10px !important;
}
.aq-price__b-link .aq-price__b-amount {
	align-self: start !important;
	padding-left: 14px;
}
/* Move the Subscribe cue to its own row below the amount/desc */
.aq-price__b-link::after {
	grid-area: sub !important;
	justify-self: end !important;
	align-self: end !important;
	margin-top: 4px;
}

/* ===== Pink primary buttons: crisp WHITE label in all modes ============= */
.aq-btn--primary,
.aq-btn--primary:hover,
.aq-btn--primary:focus,
.aq-btn--primary:visited,
.aq-btn.aq-btn--primary,
.aq-btn.aq-btn--primary *,
a.aq-btn--primary,
a.aq-btn--primary *,
button.aq-btn--primary,
button.aq-btn--primary *,
html.dark .aq-btn--primary,
html.dark .aq-btn--primary *,
html.dark a.aq-btn--primary,
html.dark a.aq-btn--primary * {
	color: #ffffff !important;
	text-decoration: none !important;
}
.aq-btn--primary .aq-icon { stroke: #ffffff !important; color: #ffffff !important; }

/* "Save up to 30%" badge on pink: keep readable white text */
.aq-price__b-badge,
.aq-price__b-link .aq-price__b-badge,
html.dark .aq-price__b-badge {
	color: #ffffff !important;
	background: var(--aq-pink-600, #1f6688) !important;
}

/* ============================================================
   v3.4.3 — Light-mode prose safety net
   Forces dark text inside muted sections (About → "Why we exist"
   block etc.) so a future regression can't accidentally render
   white text on a light-pink background. The html.dark override
   restores the original light text for dark mode.
   ============================================================ */
.aq-section--muted .aq-prose,
.aq-section--muted .aq-prose p,
.aq-section--muted .aq-prose li,
.aq-section--muted .aq-prose h2,
.aq-section--muted .aq-prose h3,
.aq-section--muted .aq-prose h4 {
  color: var(--aq-navy-800, #15243a) !important;
}
.aq-section--muted .aq-prose strong { color: var(--aq-navy-900, #0A1929) !important; }
.aq-section--muted .aq-prose a {
  color: var(--aq-pink-600, #1f6688) !important;
  border-bottom-color: rgba(219, 39, 119, .35) !important;
}

html.dark .aq-section--muted .aq-prose,
html.dark .aq-section--muted .aq-prose p,
html.dark .aq-section--muted .aq-prose li,
html.dark .aq-section--muted .aq-prose h4 {
  color: #d8dfe9 !important;
}
html.dark .aq-section--muted .aq-prose h2,
html.dark .aq-section--muted .aq-prose h3 { color: #ffffff !important; }
html.dark .aq-section--muted .aq-prose strong { color: #ffffff !important; }
html.dark .aq-section--muted .aq-prose a {
  color: var(--aq-pink-500, #2a7fa8) !important;
  border-bottom-color: rgba(42,127,168, .35) !important;
}
