/**
 * AgentAuto - Main Stylesheet v3.0
 *
 * Premium design: gradients, glassmorphism, halo effects, micro-interactions.
 * CSS Grid + Flexbox, BEM naming, mobile-first.
 * Zero framework, zero dependencies.
 *
 * @package AgentAuto
 * @since 3.0.0
 */

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--aa-font-system);
	color: var(--aa-gray-900);
	line-height: 1.6;
	background: var(--aa-white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--aa-primary);
	text-decoration: none;
	transition: color var(--aa-transition);
}

a:hover {
	color: var(--aa-primary-dark);
}

a:focus-visible {
	outline: 2px solid var(--aa-primary);
	outline-offset: 2px;
	border-radius: 2px;
}

ul, ol {
	list-style: none;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */

.section__inner {
	max-width: var(--aa-max-width);
	margin: 0 auto;
	padding: 6rem 1.5rem;
}

.section__inner--narrow {
	max-width: 800px;
}

.section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
	border: 1px solid rgba(37, 99, 235, 0.15);
	border-radius: 100px;
	padding: 0.4rem 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--aa-primary);
	margin-bottom: 1.5rem;
}

.section__eyebrow svg {
	flex-shrink: 0;
}

/* Danger variant for problem section */
.section__eyebrow--danger {
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(249, 115, 22, 0.08));
	border-color: rgba(239, 68, 68, 0.15);
	color: #ef4444;
}

/* Success variant for solution section */
.section__eyebrow--success {
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(37, 99, 235, 0.08));
	border-color: rgba(16, 185, 129, 0.15);
	color: #10b981;
}

.section__title {
	font-size: clamp(1.875rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--aa-dark);
	text-align: center;
	line-height: 1.15;
	margin-bottom: 1.25rem;
	letter-spacing: -0.02em;
}

.section__intro {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	color: var(--aa-gray-600);
	text-align: center;
	max-width: 640px;
	margin: 0 auto 3.5rem;
	line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	padding: 0.9375rem 2rem;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1rem;
	font-family: var(--aa-font-system);
	cursor: pointer;
	transition: all var(--aa-transition);
	border: none;
	text-decoration: none;
	line-height: 1.2;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.btn svg {
	flex-shrink: 0;
	transition: transform var(--aa-transition);
}

.btn:hover svg {
	transform: translateX(3px);
}

.btn--primary {
	background: linear-gradient(135deg, var(--aa-primary) 0%, #7c3aed 100%);
	color: var(--aa-white);
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn--primary:hover,
.btn--primary:focus {
	color: var(--aa-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn--primary:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn--large {
	font-size: 1.125rem;
	padding: 1.0625rem 2.5rem;
	border-radius: 14px;
}

.btn--header {
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	border-radius: 10px;
}

.btn--glow {
	animation: agentauto-glow 2.5s ease-in-out infinite;
}

@keyframes agentauto-glow {
	0%, 100% { box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3), 0 0 0 0 rgba(37, 99, 235, 0.3); }
	50% { box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3), 0 0 0 14px rgba(37, 99, 235, 0); }
}

/* Hero CTA - bigger and more spectacular */
.btn--hero {
	font-size: 1.2rem;
	padding: 1.25rem 3rem;
	border-radius: 16px;
	letter-spacing: -0.01em;
	box-shadow: 0 4px 25px rgba(37, 99, 235, 0.4), 0 0 0 0 rgba(37, 99, 235, 0.3);
}

.btn--hero:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 40px rgba(37, 99, 235, 0.5), 0 0 60px rgba(37, 99, 235, 0.15);
}

/* Demo CTA button */
.btn--demo {
	font-size: 1.15rem;
	padding: 1.125rem 2.75rem;
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	box-shadow: 0 4px 25px rgba(59, 130, 246, 0.4);
}

.btn--demo:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 40px rgba(59, 130, 246, 0.5);
}

/* Final CTA inverted button */
.btn--final {
	background: var(--aa-white);
	color: var(--aa-primary-dark);
	font-size: 1.15rem;
	padding: 1.125rem 2.75rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--final:hover {
	background: var(--aa-gray-50);
	color: var(--aa-primary-dark);
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Shimmer effect on buttons */
.btn--primary::after,
.btn--hero::after,
.btn--demo::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.1) 45%,
		rgba(255, 255, 255, 0.2) 50%,
		rgba(255, 255, 255, 0.1) 55%,
		transparent 100%
	);
	transform: rotate(30deg) translateX(-100%);
	animation: btn-shimmer 4s ease-in-out infinite;
}

@keyframes btn-shimmer {
	0%, 100% { transform: rotate(30deg) translateX(-100%); }
	50% { transform: rotate(30deg) translateX(100%); }
}

.btn--outline {
	background: transparent;
	color: var(--aa-primary);
	border: 2px solid var(--aa-primary);
	box-shadow: none;
}

.btn--outline:hover {
	background: var(--aa-primary);
	color: var(--aa-white);
}

/* --- Phone CTA line (below buttons) --- */
.cta-phone {
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0.75rem 0 0;
	text-align: center;
}

.cta-phone a {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: color var(--aa-transition);
}

.cta-phone a:hover {
	color: var(--aa-white);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	padding: 0.75rem 1.5rem;
	transition: all var(--aa-transition);
}

.site-header--scrolled {
	box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
	background: rgba(255, 255, 255, 0.92);
}

.site-header__inner {
	max-width: var(--aa-max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.site-header__logo {
	display: flex;
	align-items: center;
}

.site-header__logo img,
.site-header__logo svg {
	height: 28px;
	width: auto;
}

.site-header__logo a,
.site-header__logo-link {
	display: flex;
	align-items: center;
	color: var(--aa-dark);
	text-decoration: none;
}

.site-header__logo-link svg {
	height: 28px;
	width: auto;
}

.site-header__logo-text {
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--aa-dark);
}

/* Header CTA - flex shrink for small screens */
.site-header .btn--header {
	white-space: nowrap;
	flex-shrink: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ============================================
   HERO
   ============================================ */

.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 7rem 1.5rem 4rem;
	position: relative;
	overflow: hidden;
	background: var(--aa-dark);
	color: var(--aa-white);
}

/* Animated gradient background */
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.25) 0%, transparent 60%),
		radial-gradient(ellipse 60% 50% at 80% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
		radial-gradient(ellipse 50% 40% at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 60%);
	animation: hero-bg 8s ease-in-out infinite alternate;
}

@keyframes hero-bg {
	0% { opacity: 0.8; transform: scale(1); }
	100% { opacity: 1; transform: scale(1.05); }
}

/* Grid pattern overlay */
.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 70%);
}

.hero__inner {
	max-width: var(--aa-max-width);
	margin: 0 auto;
	text-align: center;
	width: 100%;
	position: relative;
	z-index: 1;
}

.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 100px;
	padding: 0.5rem 1.25rem;
	font-size: 0.85rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
	backdrop-filter: blur(10px);
}

.hero__eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #10b981;
	animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
	0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
	50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.hero__title {
	font-size: clamp(2.25rem, 5.5vw, 4rem);
	font-weight: 800;
	color: var(--aa-white);
	line-height: 1.1;
	margin-bottom: 1.75rem;
	letter-spacing: -0.03em;
}

.hero__title-highlight {
	background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero__subtitle {
	font-size: clamp(1.125rem, 2.5vw, 1.3rem);
	color: rgba(255, 255, 255, 0.65);
	max-width: 620px;
	margin: 0 auto 2.75rem;
	line-height: 1.65;
}

/* Hero Promises Bullet List */
.hero__promises {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 3rem;
}

.hero__promise {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 1rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	padding: 0.5rem 1rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 100px;
	backdrop-filter: blur(8px);
	transition: all var(--aa-transition);
}

.hero__promise:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.12);
	transform: translateX(4px);
}

.hero__promise svg {
	flex-shrink: 0;
	color: #10b981;
}

/* Hero CTA Block with Halo */
.hero__cta-block {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-bottom: 3.5rem;
}

.hero__cta-halo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 250px;
	height: 100px;
	border-radius: 50%;
	background: radial-gradient(ellipse, rgba(37, 99, 235, 0.3) 0%, rgba(124, 58, 237, 0.15) 40%, transparent 70%);
	filter: blur(30px);
	animation: halo-pulse 3s ease-in-out infinite;
	pointer-events: none;
}

@keyframes halo-pulse {
	0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
	50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

.hero__no-obligation {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.45);
}

/* Hero Proof - Enhanced with Stars */
.hero__proof {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	padding: 1rem 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 100px;
	backdrop-filter: blur(10px);
}

.hero__proof-avatars {
	display: flex;
}

.hero__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border: 2px solid var(--aa-dark);
	font-size: 0.75rem;
	margin-right: -8px;
	color: white;
	font-weight: 600;
}

.hero__avatar:last-child {
	margin-right: 0;
}

.hero__avatar--more {
	background: linear-gradient(135deg, #7c3aed, #ec4899);
	font-size: 0.85rem;
}

.hero__proof-content {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.hero__proof-stars {
	display: flex;
	gap: 1px;
}

.hero__proof-text {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
}

.hero__proof-text strong {
	color: rgba(255, 255, 255, 0.9);
}

/* Legacy hero__actions (keep for backward compat) */
.hero__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	margin-bottom: 3.5rem;
}

.hero__actions .btn--primary {
	box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
	background: var(--aa-white);
	border-bottom: 1px solid var(--aa-gray-100);
	padding: 1.5rem;
	text-align: center;
}

.trust-bar__inner {
	max-width: var(--aa-max-width);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.trust-bar__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--aa-gray-500);
	font-weight: 500;
}

.trust-bar__item svg {
	color: var(--aa-success);
	flex-shrink: 0;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem {
	background: var(--aa-white);
}

.problem__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.problem__card {
	background: var(--aa-white);
	border-radius: var(--aa-radius-lg);
	padding: 2rem;
	border: 1px solid var(--aa-gray-200);
	transition: all var(--aa-transition);
	position: relative;
	overflow: hidden;
}

.problem__card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ef4444, #f97316);
	opacity: 0;
	transition: opacity var(--aa-transition);
}

.problem__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--aa-shadow-lg);
	border-color: transparent;
}

.problem__card:hover::before {
	opacity: 1;
}

/* Impact Badge */
.problem__badge {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.125rem;
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.06), rgba(249, 115, 22, 0.06));
	border: 1px solid rgba(239, 68, 68, 0.12);
	border-radius: 12px;
	padding: 0.75rem 1rem;
	margin-bottom: 1.25rem;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #ef4444;
}

.problem__badge-number {
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1;
	background: linear-gradient(135deg, #ef4444, #f97316);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.problem__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(249, 115, 22, 0.08));
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	color: #ef4444;
}

.problem__card-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--aa-dark);
	margin-bottom: 0.625rem;
}

.problem__card-text {
	color: var(--aa-gray-600);
	line-height: 1.65;
	font-size: 0.95rem;
	margin-bottom: 1.25rem;
}

/* Consequence List */
.problem__consequences {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--aa-gray-100);
}

.problem__consequences li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: var(--aa-gray-600);
	line-height: 1.4;
}

.problem__consequences svg {
	flex-shrink: 0;
	color: #ef4444;
	opacity: 0.7;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution {
	background: linear-gradient(180deg, var(--aa-gray-50) 0%, var(--aa-white) 100%);
}

.solution__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.solution__card {
	background: var(--aa-white);
	border-radius: var(--aa-radius-lg);
	padding: 2rem;
	border: 1px solid var(--aa-gray-200);
	transition: all var(--aa-transition);
	position: relative;
	display: flex;
	flex-direction: column;
}

.solution__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--aa-shadow-lg);
	border-color: rgba(37, 99, 235, 0.2);
}

.solution__card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.solution__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--aa-primary), #7c3aed);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	flex-shrink: 0;
}

.solution__result-badge {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(37, 99, 235, 0.08));
	border: 1px solid rgba(16, 185, 129, 0.15);
	border-radius: 100px;
	padding: 0.25rem 0.75rem;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #10b981;
	white-space: nowrap;
}

.solution__card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--aa-dark);
	margin-bottom: 0.5rem;
}

.solution__card-text {
	color: var(--aa-gray-600);
	line-height: 1.65;
	font-size: 0.925rem;
	margin-bottom: 1.25rem;
}

/* Solution Benefits List */
.solution__benefits {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid var(--aa-gray-100);
}

.solution__benefits li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: var(--aa-gray-600);
	line-height: 1.4;
}

.solution__benefits svg {
	flex-shrink: 0;
	color: #10b981;
}

.solution__cta {
	text-align: center;
	margin-top: 3rem;
}

/* ============================================
   DEMO CTA SECTION
   ============================================ */

.demo-cta {
	background: var(--aa-dark);
	color: var(--aa-white);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.demo-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 50% 50%, rgba(37, 99, 235, 0.2) 0%, transparent 70%),
		radial-gradient(ellipse 40% 40% at 80% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
}

/* Animated grid on demo-cta */
.demo-cta::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 50px 50px;
	mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

.demo-cta__inner {
	max-width: 680px;
	margin: 0 auto;
	padding: 6rem 1.5rem;
	position: relative;
	z-index: 1;
}

.demo-cta__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	padding: 0.4rem 1.25rem;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 2rem;
	color: #60a5fa;
}

.demo-cta__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #10b981;
	animation: pulse-dot 2s ease-in-out infinite;
}

.demo-cta__title {
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: var(--aa-white);
	letter-spacing: -0.02em;
}

.demo-cta__text {
	font-size: 1.1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 2.5rem;
}

/* Demo CTA Checklist */
.demo-cta__checklist {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 2.5rem;
}

.demo-cta__checklist li {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.75);
	padding: 0.375rem 1rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 100px;
}

.demo-cta__checklist svg {
	color: #10b981;
	flex-shrink: 0;
}

/* Demo CTA Action with Halo */
.demo-cta__action {
	position: relative;
	margin-bottom: 2rem;
}

.demo-cta__halo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 120px;
	border-radius: 50%;
	background: radial-gradient(ellipse, rgba(59, 130, 246, 0.35) 0%, rgba(139, 92, 246, 0.15) 40%, transparent 70%);
	filter: blur(35px);
	animation: halo-pulse 3s ease-in-out infinite;
	pointer-events: none;
}

/* Demo CTA Social Counter */
.demo-cta__social {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 100px;
	backdrop-filter: blur(10px);
}

.demo-cta__social-avatars {
	display: flex;
}

.demo-cta__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6, #8b5cf6);
	border: 2px solid var(--aa-dark);
	font-size: 0.65rem;
	margin-right: -6px;
	color: white;
	font-weight: 600;
}

.demo-cta__avatar:last-child {
	margin-right: 0;
}

.demo-cta__social-text {
	font-size: 0.825rem;
	color: rgba(255, 255, 255, 0.5);
}

.demo-cta__social-text strong {
	color: rgba(255, 255, 255, 0.85);
}

/* Legacy demo-cta styles */
.demo-cta__reassurance {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
	background: var(--aa-white);
}

.benefits__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.benefits__card {
	text-align: center;
	padding: 2.5rem 1.25rem;
	border-radius: var(--aa-radius-lg);
	background: linear-gradient(135deg, var(--aa-gray-50) 0%, var(--aa-white) 100%);
	border: 1px solid var(--aa-gray-200);
	transition: all var(--aa-transition);
}

.benefits__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--aa-shadow);
	border-color: transparent;
}

.benefits__number {
	display: block;
	font-size: clamp(2.5rem, 5vw, 3.25rem);
	font-weight: 800;
	background: linear-gradient(135deg, var(--aa-primary), #7c3aed);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 0.625rem;
}

.benefits__label {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	color: var(--aa-dark);
	margin-bottom: 0.5rem;
}

.benefits__desc {
	font-size: 0.875rem;
	color: var(--aa-gray-500);
	line-height: 1.5;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
	background: linear-gradient(180deg, var(--aa-gray-50) 0%, var(--aa-white) 100%);
}

.how-it-works__steps {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	max-width: 480px;
	margin: 0 auto;
}

.how-it-works__step {
	text-align: center;
	padding: 1.5rem;
}

.how-it-works__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 18px;
	background: linear-gradient(135deg, var(--aa-primary), #7c3aed);
	color: var(--aa-white);
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 1.25rem;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.how-it-works__step-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--aa-dark);
	margin-bottom: 0.5rem;
}

.how-it-works__step-text {
	color: var(--aa-gray-600);
	line-height: 1.65;
	font-size: 0.95rem;
}

.how-it-works__connector {
	width: 2px;
	height: 40px;
	background: linear-gradient(180deg, var(--aa-primary), rgba(124, 58, 237, 0.3));
	border-radius: 2px;
}

.how-it-works__cta {
	text-align: center;
	margin-top: 3rem;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */

.social-proof {
	background: var(--aa-white);
}

.social-proof__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.social-proof__card {
	background: var(--aa-white);
	border-radius: var(--aa-radius-lg);
	padding: 2rem;
	border: 1px solid var(--aa-gray-200);
	transition: all var(--aa-transition);
	position: relative;
}

.social-proof__card::before {
	content: '\201C';
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	font-size: 4rem;
	font-family: Georgia, serif;
	color: var(--aa-gray-100);
	line-height: 1;
}

.social-proof__card:hover {
	border-color: rgba(37, 99, 235, 0.15);
	box-shadow: var(--aa-shadow);
}

.social-proof__rating {
	display: flex;
	gap: 2px;
	margin-bottom: 1rem;
}

.social-proof__text {
	margin-bottom: 1.5rem;
	position: relative;
}

.social-proof__text p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--aa-gray-700);
	font-style: italic;
}

.social-proof__author {
	display: flex;
	flex-direction: column;
}

.social-proof__name {
	font-weight: 700;
	color: var(--aa-dark);
	font-style: normal;
	font-size: 0.95rem;
}

.social-proof__role {
	font-size: 0.825rem;
	color: var(--aa-gray-500);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
	background: linear-gradient(180deg, var(--aa-gray-50) 0%, var(--aa-white) 100%);
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-bottom: 3rem;
}

.faq__item {
	background: var(--aa-white);
	border-radius: 12px;
	border: 1px solid var(--aa-gray-200);
	overflow: hidden;
	transition: all var(--aa-transition);
}

.faq__item:hover {
	border-color: rgba(37, 99, 235, 0.2);
}

.faq__item[open] {
	border-color: var(--aa-primary);
	box-shadow: 0 2px 12px rgba(37, 99, 235, 0.08);
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	color: var(--aa-dark);
	list-style: none;
	user-select: none;
	transition: color var(--aa-transition);
}

.faq__question:hover {
	color: var(--aa-primary);
}

.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { content: ''; }

.faq__icon {
	flex-shrink: 0;
	transition: transform var(--aa-transition);
	color: var(--aa-gray-400);
}

.faq__item[open] .faq__icon {
	transform: rotate(180deg);
	color: var(--aa-primary);
}

.faq__answer {
	padding: 0 1.5rem 1.25rem;
}

.faq__answer p {
	color: var(--aa-gray-600);
	line-height: 1.7;
	font-size: 0.95rem;
}

.faq__cta {
	text-align: center;
}

.faq__cta-text {
	margin-bottom: 1.25rem;
	color: var(--aa-gray-600);
	font-size: 1.05rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
	background: linear-gradient(135deg, var(--aa-primary) 0%, #7c3aed 50%, #ec4899 100%);
	color: var(--aa-white);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.final-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 40px 40px;
}

.final-cta__inner {
	max-width: 680px;
	margin: 0 auto;
	padding: 6rem 1.5rem;
	position: relative;
	z-index: 1;
}

.final-cta__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 100px;
	padding: 0.4rem 1.25rem;
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

.final-cta__badge svg {
	flex-shrink: 0;
}

.final-cta__title {
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 800;
	margin-bottom: 1.25rem;
	color: var(--aa-white);
	letter-spacing: -0.02em;
}

.final-cta__text {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 2.75rem;
	color: rgba(255, 255, 255, 0.8);
}

/* Final CTA Action with Halo */
.final-cta__action {
	position: relative;
	margin-bottom: 2.5rem;
}

.final-cta__halo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 280px;
	height: 100px;
	border-radius: 50%;
	background: radial-gradient(ellipse, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 40%, transparent 70%);
	filter: blur(25px);
	animation: halo-pulse-white 3s ease-in-out infinite;
	pointer-events: none;
}

@keyframes halo-pulse-white {
	0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
	50% { opacity: 1; transform: translate(-50%, -50%) scale(1.25); }
}

/* Objection Killers Grid */
.final-cta__objections {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.final-cta__objection {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1.25rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	backdrop-filter: blur(10px);
	width: 100%;
	max-width: 300px;
}

.final-cta__objection svg {
	color: rgba(255, 255, 255, 0.9);
	flex-shrink: 0;
}

.final-cta__objection strong {
	display: block;
	font-size: 0.95rem;
	color: var(--aa-white);
}

.final-cta__objection span {
	display: block;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.6);
}

/* Legacy checklist */
.final-cta__checklist {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.875rem;
}

.final-cta__checklist li {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
}

.final-cta__checklist svg {
	stroke: var(--aa-white);
	flex-shrink: 0;
}

/* ============================================
   FOOTER — Compact 4-column layout
   ============================================ */

.site-footer {
	background: var(--aa-dark);
	color: var(--aa-gray-300);
}

.site-footer__inner {
	max-width: var(--aa-max-width);
	margin: 0 auto;
	padding: 1.75rem 1.5rem 1rem;
}

/* --- Columns grid (mobile: stack) --- */
.site-footer__cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

/* --- Each column --- */
.site-footer__col {
	min-width: 0;
}

/* --- Logo --- */
.site-footer__logo {
	margin-bottom: 0.375rem;
}

.site-footer__logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.site-footer__logo-link svg {
	height: 24px;
	width: auto;
}

.site-footer__logo-text {
	font-size: 1rem;
	font-weight: 800;
	color: var(--aa-white);
	letter-spacing: -0.02em;
}

/* --- Tagline --- */
.site-footer__tagline {
	font-size: 0.75rem;
	color: var(--aa-gray-500);
	line-height: 1.4;
	margin: 0;
}

/* --- Column title --- */
.site-footer__col-title {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--aa-gray-400);
	margin: 0 0 0.375rem;
}

/* --- Column list --- */
.site-footer__list {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__list li {
	line-height: 1.3;
}

.site-footer__list a {
	font-size: 0.75rem;
	color: var(--aa-gray-400);
	transition: color var(--aa-transition);
	text-decoration: none;
}

.site-footer__list a:hover {
	color: var(--aa-white);
}

/* --- Muted text (address) --- */
.site-footer__muted {
	font-size: 0.75rem;
	color: var(--aa-gray-600);
}

/* --- Copyright (inside contact column) --- */
.site-footer__copyright {
	font-size: 0.65rem;
	color: var(--aa-gray-600);
	line-height: 1.5;
	margin: 0.75rem 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding-top: 0.5rem;
}

.site-footer__copyright a {
	color: var(--aa-gray-400);
	font-weight: 600;
	text-decoration: none;
	transition: color var(--aa-transition);
}

.site-footer__copyright a:hover {
	color: var(--aa-white);
}

/* ============================================
   STICKY BAR (Mobile only)
   ============================================ */

.sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-top: 1px solid var(--aa-gray-200);
	padding: 0.75rem 1rem;
	transform: translateY(100%);
	transition: transform var(--aa-transition);
	display: block;
}

.sticky-bar--visible {
	transform: translateY(0);
}

/* Ensure sticky bar content doesn't shift layout */
.sticky-bar ~ * { /* prevent any content from being hidden behind sticky bar */
}

/* Add bottom padding to body when sticky bar visible on mobile */
body.has-sticky-bar {
	padding-bottom: 70px;
}

.sticky-bar__inner {
	max-width: var(--aa-max-width);
	margin: 0 auto;
}

.btn--sticky {
	width: 100%;
	padding: 0.875rem;
	font-size: 1rem;
	border-radius: 12px;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */

[data-reveal] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger children animations */
[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
[data-reveal]:nth-child(4) { transition-delay: 0.3s; }

/* ============================================
   PAGE TEMPLATE (for legal pages)
   ============================================ */

.page-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 7rem 1.5rem 4rem;
}

.page-content h1 {
	font-size: 2rem;
	font-weight: 800;
	color: var(--aa-dark);
	margin-bottom: 1.5rem;
}

.page-content h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--aa-dark);
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.page-content p {
	margin-bottom: 1rem;
	line-height: 1.7;
	color: var(--aa-gray-700);
}

.page-content ul, .page-content ol {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
	list-style: disc;
}

.page-content li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
	color: var(--aa-gray-700);
}

.page-legal__updated {
	font-size: 0.875rem;
	color: var(--aa-gray-500);
	margin-bottom: 2rem;
}

/* ============================================
   404 PAGE
   ============================================ */

.error-404 {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem 1.5rem;
}

.error-404__code {
	font-size: clamp(4rem, 10vw, 8rem);
	font-weight: 800;
	background: linear-gradient(135deg, var(--aa-gray-200), var(--aa-gray-300));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
	margin-bottom: 1rem;
}

.error-404__title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--aa-dark);
	margin-bottom: 1rem;
}

.error-404__text {
	color: var(--aa-gray-600);
	margin-bottom: 2rem;
	max-width: 500px;
}

/* ============================================
   RESPONSIVE - Small Mobile fixes (max 374px)
   iPhone SE, Galaxy S, very small screens
   ============================================ */

@media (max-width: 374px) {
	/* Header: tighter on very small screens */
	.site-header { padding: 0.5rem 1rem; }
	.site-header__logo img,
	.site-header__logo svg,
	.site-header__logo-link svg {
		height: 24px;
	}

	/* Tighter padding on very small screens */
	.section__inner { padding: 3.5rem 1rem; }
	.hero { padding: 5rem 1rem 3rem; }
	.demo-cta__inner,
	.final-cta__inner { padding: 3.5rem 1rem; }

	/* Hero adjustments */
	.hero__title { font-size: 1.75rem; margin-bottom: 1.25rem; }
	.hero__subtitle { font-size: 1rem; margin-bottom: 2rem; }
	.hero__eyebrow { font-size: 0.75rem; padding: 0.375rem 0.875rem; }
	.hero__promises { gap: 0.5rem; margin-bottom: 2rem; }
	.hero__promise { font-size: 0.85rem; padding: 0.375rem 0.75rem; }
	.hero__cta-block { margin-bottom: 2.5rem; }
	.hero__no-obligation { font-size: 0.75rem; }

	/* CTA buttons resize for tiny screens */
	.btn--hero {
		font-size: 0.95rem;
		padding: 1rem 1.5rem;
		border-radius: 12px;
		white-space: normal;
		text-align: center;
	}
	.btn--demo,
	.btn--final {
		font-size: 0.95rem;
		padding: 1rem 1.5rem;
		white-space: normal;
		text-align: center;
	}
	.btn--large {
		font-size: 0.95rem;
		padding: 0.875rem 1.5rem;
	}
	.btn--header {
		font-size: 0.75rem;
		padding: 0.5rem 0.75rem;
	}
	.btn--header svg {
		display: none;
	}

	/* Hero proof compact */
	.hero__proof {
		padding: 0.75rem 1rem;
		gap: 0.625rem;
		border-radius: 16px;
		flex-direction: column;
	}
	.hero__proof-text { font-size: 0.75rem; text-align: center; }
	.hero__avatar { width: 26px; height: 26px; font-size: 0.65rem; }

	/* Trust bar compact */
	.trust-bar { padding: 1rem 0.75rem; }
	.trust-bar__inner { gap: 0.75rem; flex-direction: column; }
	.trust-bar__item { font-size: 0.8rem; }

	/* Problem cards */
	.problem__card { padding: 1.5rem; }
	.problem__badge { padding: 0.5rem 0.75rem; }
	.problem__badge-number { font-size: 1.5rem; }
	.problem__icon { width: 44px; height: 44px; border-radius: 12px; }
	.problem__card-title { font-size: 1.05rem; }

	/* Solution cards */
	.solution__card { padding: 1.5rem; }
	.solution__card-header { flex-direction: column; gap: 0.75rem; }
	.solution__icon { width: 40px; height: 40px; }

	/* Benefits smaller */
	.benefits__grid { grid-template-columns: 1fr; }
	.benefits__card { padding: 1.75rem 1rem; }
	.benefits__number { font-size: 2.25rem; }

	/* Demo CTA */
	.demo-cta__badge { font-size: 0.7rem; padding: 0.35rem 0.875rem; }
	.demo-cta__text { font-size: 0.95rem; margin-bottom: 1.75rem; }
	.demo-cta__checklist { gap: 0.5rem; margin-bottom: 1.75rem; }
	.demo-cta__checklist li { font-size: 0.825rem; padding: 0.3rem 0.75rem; }
	.demo-cta__social { padding: 0.5rem 0.875rem; gap: 0.5rem; }
	.demo-cta__social-text { font-size: 0.75rem; }

	/* Final CTA */
	.final-cta__badge { font-size: 0.7rem; padding: 0.35rem 0.875rem; }
	.final-cta__text { font-size: 0.95rem; }
	.final-cta__objection {
		padding: 0.625rem 0.875rem;
		gap: 0.5rem;
		max-width: 100%;
	}
	.final-cta__objection strong { font-size: 0.85rem; }
	.final-cta__objection span { font-size: 0.7rem; }

	/* FAQ compact */
	.faq__question { padding: 1rem; font-size: 0.9rem; }
	.faq__answer { padding: 0 1rem 1rem; }
	.faq__answer p { font-size: 0.875rem; }

	/* How it works */
	.how-it-works__number { width: 48px; height: 48px; font-size: 1.25rem; border-radius: 14px; }
	.how-it-works__step { padding: 1rem; }

	/* Social proof */
	.social-proof__card { padding: 1.5rem; }
	.social-proof__text p { font-size: 0.9rem; }
}

/* ============================================
   RESPONSIVE - Mobile landscape / Large mobile (480px+)
   ============================================ */

@media (min-width: 480px) {
	/* Benefits go to 2x2 grid */
	.benefits__grid { grid-template-columns: repeat(2, 1fr); }

	/* Hero CTA button breathes more */
	.btn--hero {
		font-size: 1.1rem;
		padding: 1.125rem 2.5rem;
	}

	/* Hero proof in row layout */
	.hero__proof {
		flex-direction: row;
		border-radius: 100px;
	}

	/* Trust bar in a row */
	.trust-bar__inner {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	/* Objections side by side (2 + 1) */
	.final-cta__objections {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
	.final-cta__objection:last-child {
		grid-column: 1 / -1;
		justify-self: center;
		max-width: 200px;
	}

	/* Demo checklist can go inline if items fit */
	.demo-cta__checklist {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.5rem;
	}
}

/* ============================================
   RESPONSIVE - Small Tablet (640px+)
   ============================================ */

@media (min-width: 640px) {
	.section__inner { padding: 5rem 1.5rem; }

	/* Problem: 2 cols on small tablet, not 3 yet */
	.problem__grid { grid-template-columns: repeat(2, 1fr); }

	/* Solution: 2 cols */
	.solution__grid { grid-template-columns: repeat(2, 1fr); }

	/* Social proof: 2 cols */
	.social-proof__grid { grid-template-columns: repeat(2, 1fr); }

	/* Hero promises in row */
	.hero__promises {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	/* Hero actions in row */
	.hero__actions { flex-direction: row; justify-content: center; }

	/* Hero halo bigger */
	.hero__cta-halo { width: 350px; height: 120px; }

	/* Demo checklist in row */
	.demo-cta__checklist {
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 0.75rem;
	}

	/* Demo halo bigger */
	.demo-cta__halo { width: 380px; height: 130px; }

	/* Final CTA objections in full row */
	.final-cta__objections {
		display: flex;
		flex-direction: row;
		justify-content: center;
		gap: 0.75rem;
	}
	.final-cta__objection {
		max-width: none;
		width: auto;
	}
	.final-cta__objection:last-child {
		grid-column: auto;
		justify-self: auto;
		max-width: none;
	}

	/* Final halo bigger */
	.final-cta__halo { width: 350px; height: 110px; }

	/* Legacy final checklist row */
	.final-cta__checklist { flex-direction: row; gap: 1.5rem; }

	/* Footer: 2x2 grid on small tablet */
	.site-footer__cols {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem 1.5rem;
	}
}

/* ============================================
   RESPONSIVE - Tablet (768px+)
   ============================================ */

@media (min-width: 768px) {
	.section__inner { padding: 5.5rem 2rem; }
	.hero { padding: 7rem 2rem 4rem; }

	/* Logo: restore full size on tablet+ */
	.site-header__logo img,
	.site-header__logo svg,
	.site-header__logo-link svg {
		height: 36px;
	}

	/* Problem: 3 cols */
	.problem__grid { grid-template-columns: repeat(3, 1fr); }

	/* Benefits: 4 cols */
	.benefits__grid { grid-template-columns: repeat(4, 1fr); }

	/* How it works horizontal */
	.how-it-works__steps {
		flex-direction: row;
		max-width: 100%;
		align-items: flex-start;
	}
	.how-it-works__connector {
		width: 60px;
		height: 2px;
		margin-top: 30px;
		flex-shrink: 0;
	}
	.how-it-works__step { flex: 1; }

	/* Social proof: 3 cols */
	.social-proof__grid { grid-template-columns: repeat(3, 1fr); }

	/* Halos bigger */
	.hero__cta-halo { width: 400px; height: 150px; }
	.demo-cta__halo { width: 450px; height: 150px; }
	.final-cta__halo { width: 400px; height: 120px; }

	/* Footer: 4 compact columns in one row */
	.site-footer__cols {
		grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
		gap: 0.75rem 2rem;
	}
}

/* ============================================
   RESPONSIVE - Desktop (1024px+)
   ============================================ */

@media (min-width: 1024px) {
	.section__inner { padding: 7rem 2rem; }
	.hero { padding: 0 2rem; }
	.demo-cta__inner,
	.final-cta__inner { padding: 7rem 2rem; }

	/* Solution: 4 cols on desktop */
	.solution__grid { grid-template-columns: repeat(4, 1fr); }

	/* Problem cards can breathe more */
	.problem__card { padding: 2.25rem; }
	.solution__card { padding: 2.25rem; }

	/* Hero CTA full size */
	.btn--hero {
		font-size: 1.2rem;
		padding: 1.25rem 3rem;
		border-radius: 16px;
	}

	/* Hide sticky bar on desktop */
	.sticky-bar { display: none; }

	/* Larger halos on desktop */
	.hero__cta-halo { width: 500px; height: 180px; }
	.demo-cta__halo { width: 550px; height: 180px; }
	.final-cta__halo { width: 500px; height: 150px; }
}

/* ============================================
   RESPONSIVE - Large Desktop (1280px+)
   ============================================ */

@media (min-width: 1280px) {
	.section__inner { padding: 8rem 2rem; }
	.demo-cta__inner,
	.final-cta__inner { padding: 8rem 2rem; }

	/* More generous spacing */
	.problem__grid { gap: 1.75rem; }
	.solution__grid { gap: 1.75rem; }
	.benefits__grid { gap: 1.75rem; }
	.social-proof__grid { gap: 1.75rem; }

	/* How it works connectors */
	.how-it-works__connector { width: 80px; }
}

/* ============================================
   STICKY BAR - Safe area for notched phones
   ============================================ */

@supports (padding-bottom: env(safe-area-inset-bottom)) {
	.sticky-bar {
		padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
	}
}

/* ============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================ */

@media (hover: none) and (pointer: coarse) {
	/* Remove hover effects on touch - prevent sticky hover */
	.problem__card:hover,
	.solution__card:hover,
	.benefits__card:hover,
	.social-proof__card:hover {
		transform: none;
		box-shadow: none;
	}
	.problem__card:hover { border-color: var(--aa-gray-200); }
	.problem__card:hover::before { opacity: 0; }
	.solution__card:hover { border-color: var(--aa-gray-200); }

	/* Bigger touch targets */
	.faq__question { min-height: 48px; }
	.btn { min-height: 48px; }
	.trust-bar__item { min-height: 44px; }

	/* No hover transform on promises */
	.hero__promise:hover { transform: none; }
}

/* ============================================
   HIGH CONTRAST / FORCED COLORS
   ============================================ */

@media (forced-colors: active) {
	.btn--primary,
	.btn--hero,
	.btn--demo {
		border: 2px solid ButtonText;
	}
	.btn--final {
		border: 2px solid ButtonText;
	}
	.hero__eyebrow,
	.section__eyebrow,
	.demo-cta__badge,
	.final-cta__badge {
		border: 1px solid ButtonText;
	}
}

/* ============================================
   LANDSCAPE MOBILE (short height)
   ============================================ */

@media (max-height: 500px) and (orientation: landscape) {
	.hero {
		min-height: auto;
		padding: 5rem 2rem 2rem;
	}
	.hero__promises { margin-bottom: 1.5rem; }
	.hero__cta-block { margin-bottom: 1.5rem; }
	.hero__proof { margin-top: 0; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms;
		animation-iteration-count: 1;
		transition-duration: 0.01ms;
		scroll-behavior: auto;
	}
	[data-reveal] { opacity: 1; transform: none; }
	.hero::before { animation: none; }
	.hero__cta-halo,
	.demo-cta__halo,
	.final-cta__halo { animation: none; opacity: 0.5; }
	.btn--primary::after,
	.btn--hero::after,
	.btn--demo::after { animation: none; }
	.hero__eyebrow-dot,
	.demo-cta__badge-dot { animation: none; }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
	.site-header, .sticky-bar, .demo-cta, .final-cta, .trust-bar, .btn { display: none; }
	body { color: #000; background: #fff; }
	.hero { background: #fff; color: #000; min-height: auto; padding: 2rem 0; }
	.hero__title, .hero__subtitle { color: #000; }
	.hero__title-highlight {
		-webkit-text-fill-color: #000;
		background: none;
	}
	.section__inner { padding: 2rem 0; }
	.benefits__number {
		-webkit-text-fill-color: #000;
		background: none;
	}
	.problem__badge-number {
		-webkit-text-fill-color: #000;
		background: none;
	}
}
