/* ============================================
   BUILD REMOTE — High-Converting Lander Styles
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --dark: #0f172a;
  --dark-700: #334155;
  --dark-500: #64748b;
  --dark-400: #94a3b8;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --white: #ffffff;
  --green: #22c55e;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px -12px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(1.75rem, 5vw, 3.5rem); letter-spacing: -0.02em; word-wrap: break-word; overflow-wrap: break-word; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--blue-50);
  color: var(--blue);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--dark-500);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }

.btn-white {
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn .arrow {
  transition: transform var(--transition);
}
.btn:hover .arrow { transform: translateX(3px); }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
}
.logo img { height: 32px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span:first-child { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.logo-text span:last-child { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-500);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a.btn-primary { color: var(--white); }
.nav-links a.btn-primary:hover { color: var(--white); }
.nav-links a.btn-primary::after { display: none; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}
.hero-content { position: relative; z-index: 2; }

.hero h1 {
  margin-bottom: 20px;
}
.hero h1 .highlight {
  color: var(--blue);
  position: relative;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--dark-500);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.hero-checks {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-700);
}
.hero-check svg {
  width: 18px; height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: #166534;
  margin-top: 12px;
}
.hero-guarantee svg { color: #22c55e; flex-shrink: 0; }

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
}
.avatar-stack img:first-child { margin-left: 0; }
.social-proof-text {
  font-size: 14px;
  color: var(--dark-500);
}
.social-proof-text strong {
  color: var(--dark);
  font-weight: 700;
}

/* Video */
.hero-video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.video-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  background: var(--dark);
  aspect-ratio: 16/9;
}
.video-label {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--dark-400);
  font-weight: 500;
}
.video-label svg {
  display: inline;
  width: 14px; height: 14px;
  vertical-align: -2px;
  margin-right: 4px;
}

/* --- Section base --- */
section { padding: 100px 0; overflow: hidden; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 16px; }

/* --- Why Cleaning --- */
.why-section { background: var(--gray-50); }
.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-text h2 { text-align: left; margin-bottom: 20px; }
.why-text h2 .highlight { color: var(--blue); }
.why-text p {
  color: var(--dark-500);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}
.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--dark-500);
  font-weight: 500;
}

.math-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}
.math-box p {
  font-size: 15px;
  color: var(--dark-700);
  margin-bottom: 0;
  line-height: 1.7;
}
.math-box .math-result {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 8px;
}
.math-box .math-result span { color: var(--blue); }

/* --- AI Advantage --- */
.ai-section { background: var(--white); }
.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ai-text h2 { text-align: left; margin-bottom: 20px; }
.ai-text h2 .highlight { color: var(--blue); }
.ai-text p {
  color: var(--dark-500);
  font-size: 1.05rem;
  line-height: 1.8;
}
.ai-cards { display: flex; flex-direction: column; gap: 20px; }
.ai-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.ai-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ai-card-use {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
}
.ai-card-shield {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.ai-card-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}
.ai-card-use .ai-card-label { color: var(--blue-dark); }
.ai-card-shield .ai-card-label { color: #166534; }
.ai-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ai-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--dark-700);
  line-height: 1.5;
}
.ai-list li svg { flex-shrink: 0; margin-top: 1px; }
.ai-card-use .ai-list li svg { color: var(--blue); }
.ai-card-shield .ai-list li svg { color: #22c55e; }

/* --- What You're Acquiring --- */
.acquire-section { background: var(--white); }
.acquire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.acquire-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}
.acquire-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-100);
}
.acquire-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  border-radius: var(--radius);
  margin-bottom: 20px;
  color: var(--blue);
}
.acquire-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.acquire-card p {
  font-size: 14.5px;
  color: var(--dark-500);
  line-height: 1.75;
  margin: 0;
}

/* --- Results / Testimonials --- */
.results-section { background: var(--white); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.result-video {
  aspect-ratio: 16/9;
  background: var(--dark);
  position: relative;
}
.result-video iframe {
  width: 100%; height: 100%;
  border: none;
}
.result-body { padding: 24px; }
.result-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.result-stars svg { width: 16px; height: 16px; color: #f59e0b; fill: #f59e0b; }
.result-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--dark-700);
  line-height: 1.6;
  margin-bottom: 16px;
}
.result-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.result-title {
  font-size: 13px;
  color: var(--dark-400);
  margin-top: 2px;
}

/* --- How It Works --- */
.steps-section { background: var(--gray-50); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-100);
}
.step-number {
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 24px;
}
.step-icon {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { width: 40px; height: 40px; color: var(--blue); }
.step-card h3 { margin-bottom: 12px; }
.step-card p {
  font-size: 15px;
  color: var(--dark-500);
  line-height: 1.7;
}
.step-connector {
  display: none;
}

/* Steps V2 — text on top, illustration below */
.steps-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card-v2 {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px 0;
  text-align: left;
  overflow: hidden;
  transition: all var(--transition);
}
.step-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-100);
}
.step-card-v2 h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  font-weight: 600;
}
.step-card-v2 p {
  font-size: 14.5px;
  color: var(--dark-500);
  line-height: 1.75;
  margin-bottom: 24px;
}
.step-illustration {
  width: calc(100% + 56px);
  margin: 0 -28px;
  overflow: hidden;
}
.step-illustration img {
  width: 100%;
  display: block;
}

/* --- Trustpilot / Reviews --- */
.reviews-section { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.review-stars .star {
  width: 20px; height: 20px;
  background: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-stars .star svg { width: 12px; height: 12px; color: var(--white); fill: var(--white); }
.review-text {
  font-size: 14px;
  color: var(--dark-700);
  line-height: 1.7;
  margin-bottom: 16px;
}
.review-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.trustpilot-bar {
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--gray-200);
}
.trustpilot-bar img { height: 28px; margin: 0 auto; }
.trustpilot-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.trustpilot-logo {
  height: 24px;
}
.trustpilot-rating {
  font-size: 14px;
  color: var(--dark-500);
}
.trustpilot-rating strong { color: var(--dark); }

/* --- FAQ --- */
.faq-section { background: var(--gray-50); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.faq-left { position: sticky; top: 120px; }
.faq-left h2 { text-align: left; margin-bottom: 16px; }
.faq-left h2 .highlight { color: var(--blue); }
.faq-left p {
  color: var(--dark-500);
  margin-bottom: 24px;
  line-height: 1.7;
}
.faq-illustration {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--blue-100); }
.faq-item.active { border-color: var(--blue-100); box-shadow: var(--shadow); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  gap: 16px;
}
.faq-question svg {
  width: 20px; height: 20px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.active .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--dark-500);
  line-height: 1.8;
}

/* --- Final CTA --- */
.final-cta {
  padding: 100px 0;
  background: var(--white);
}
.cta-box {
  background: var(--blue);
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.cta-box * { position: relative; z-index: 1; }
.cta-guarantee-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdf4;
  border-radius: 50%;
  margin: 0 auto 20px;
  color: #22c55e;
}
.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}
.cta-box p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-box .cta-micro {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}

/* --- Footer --- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo img { height: 28px; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-links a {
  font-size: 14px;
  color: var(--dark-500);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--dark); }

.footer-disclaimer {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.footer-disclaimer h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-500);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.footer-disclaimer p {
  font-size: 12px;
  color: var(--dark-400);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-disclaimer a {
  color: var(--dark-500);
  text-decoration: underline;
}
.footer-disclaimer a:hover { color: var(--dark); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.footer-bottom p {
  font-size: 13px;
  color: var(--dark-400);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--dark-400);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--dark-500); }

/* --- Mobile Sticky CTA (conversion boost) --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform var(--transition);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: center; }

/* --- Scroll animations --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }

/* --- Page Hero (subpages) --- */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--dark-500);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* --- Legal pages --- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 100px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
}
.legal-content h3 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
}
.legal-content p, .legal-content li {
  font-size: 15px;
  color: var(--dark-500);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul { padding-left: 24px; }
.legal-content a { color: var(--blue); }
.legal-content a:hover { text-decoration: underline; }

/* --- Confirmation --- */
.confirmation-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  padding: 80px 24px;
  gap: 48px;
}
.confirmation-card {
  max-width: 560px;
  width: 100%;
}

/* Confirmation videos */
.confirmation-videos {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.confirmation-videos-header {
  text-align: center;
}
.confirmation-videos-header h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.confirmation-videos-header p {
  color: var(--dark-500);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.confirmation-video {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.confirmation-video-title {
  text-align: left;
  font-size: 1.05rem;
  margin: 0 0 14px;
  color: var(--dark);
}
.confirmation-video .wistia_responsive_padding {
  border-radius: var(--radius);
  overflow: hidden;
}
.confirmation-back-btn {
  margin-top: 8px;
}
.confirm-icon {
  width: 80px; height: 80px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: confirmPulse 2s infinite;
}
.confirm-icon svg { width: 40px; height: 40px; color: var(--green); }

@keyframes confirmPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.3); }
  50% { box-shadow: 0 0 0 20px rgba(34, 197, 94, 0); }
}

.confirmation-card h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.confirmation-card p {
  color: var(--dark-500);
  margin-bottom: 32px;
  line-height: 1.7;
}
.confirm-steps {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  margin-bottom: 32px;
}
.confirm-steps h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.confirm-step {
  display: flex;
  gap: 16px;
  padding: 12px 0;
}
.confirm-step + .confirm-step { border-top: 1px solid var(--gray-100); }
.confirm-step-num {
  width: 32px; height: 32px;
  background: var(--blue-50);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.confirm-step-text {
  font-size: 15px;
  color: var(--dark-700);
  line-height: 1.6;
}

/* --- 404 --- */
.not-found-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.not-found-section h1 {
  font-size: 6rem;
  color: var(--blue);
  margin-bottom: 12px;
}
.not-found-section h2 {
  margin-bottom: 12px;
}
.not-found-section p {
  color: var(--dark-500);
  margin-bottom: 32px;
}

/* --- Pre-Call Page --- */
.precall-hero {
  padding: 100px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
}
.precall-hero .confirm-icon {
  width: 64px; height: 64px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: confirmPulse 2s infinite;
}
.precall-hero .confirm-icon svg { width: 32px; height: 32px; color: var(--green); }
.precall-hero h1 { margin-bottom: 8px; font-size: clamp(1.5rem, 4vw, 2.25rem); }
.precall-hero-sub {
  font-size: 1rem;
  color: var(--dark-500);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.precall-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}
.precall-check {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 14.5px;
  color: var(--dark-700);
  font-weight: 500;
}
.precall-check svg { color: var(--green); flex-shrink: 0; }

.precall-video-section { background: var(--white); padding: 60px 0; }
.precall-video-section .section-sub { text-align: center; }

/* Expect list (compact) */
.precall-expect-section { background: var(--gray-50); padding: 60px 0; }
.precall-expect-section .section-sub { text-align: center; }
.precall-expect-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.precall-expect-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 15px;
  color: var(--dark-700);
  line-height: 1.6;
}
.precall-expect-num {
  width: 30px; height: 30px;
  min-width: 30px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* Accordion videos */
.precall-videos-section { background: var(--gray-50); padding: 60px 0; }
.precall-videos-section .section-sub { text-align: center; }
.precall-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.precall-acc-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.precall-acc-item.active { border-color: var(--blue-100); }
.precall-acc-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
}
.precall-acc-trigger svg:first-child { color: var(--blue); flex-shrink: 0; }
.precall-acc-title {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}
.precall-acc-chevron {
  margin-left: auto;
  color: var(--dark-400);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.precall-acc-item.active .precall-acc-chevron { transform: rotate(180deg); }
.precall-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.precall-acc-item.active .precall-acc-panel {
  max-height: 600px;
}
.precall-accordion--always-open .precall-acc-trigger {
  cursor: default;
  pointer-events: none;
}
.precall-accordion--always-open .precall-acc-chevron {
  display: none;
}
.precall-acc-panel .video-container {
  margin: 0 20px 20px;
  border-radius: var(--radius);
}

/* Graduates (horizontal scroll) */
.precall-graduates-section { background: var(--white); padding: 60px 0; }
.precall-graduates-section .section-sub { text-align: center; }
.graduates-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 24px 16px;
  scrollbar-width: none;
}
.graduates-scroll::-webkit-scrollbar { display: none; }
.graduate-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: block;
  color: inherit;
}
.graduate-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-100);
}
.graduate-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.graduate-card-body { padding: 14px 16px; }
.graduate-card-body h3 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark);
}

/* Reviews horizontal scroll */
.precall-reviews-section { background: var(--white); padding: 48px 0; }
.reviews-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 24px 16px;
  scrollbar-width: none;
}
.reviews-scroll::-webkit-scrollbar { display: none; }
.reviews-scroll .review-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

/* Desktop layout for precall reviews: proper grid instead of horizontal scroll */
.precall-reviews-section .reviews-scroll {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  overflow: visible;
  scroll-snap-type: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}
.precall-reviews-section .reviews-scroll .review-card {
  flex: initial;
  min-width: 0;
  margin: 0;
}

/* --- Booking page --- */
.booking-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.booking-container .timezone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--dark-400);
  margin-bottom: 24px;
}
.booking-container .timezone svg { width: 16px; height: 16px; color: var(--blue); }
.booking-container .timezone strong { color: var(--dark-700); font-weight: 500; }
.booking-embed {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: var(--radius);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .why-content { grid-template-columns: 1fr; gap: 40px; }
  .why-text h2 { text-align: center; }
  .why-text { text-align: center; }
  .why-text .btn { margin: 0 auto; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; text-align: center; }
  .steps-grid-v2 { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps-grid-v2 .step-card-v2:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .acquire-grid { grid-template-columns: 1fr 1fr; }
  .ai-layout { grid-template-columns: 1fr; gap: 40px; }
  .ai-text { text-align: center; }
  .ai-text h2 { text-align: center; }
  .graduate-card { flex: 0 0 260px; }
  .precall-reviews-section .reviews-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 24px 16px;
  }
  .precall-reviews-section .reviews-scroll .review-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .hero { padding: 100px 0 40px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.35rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    gap: 20px;
  }
  .nav-links.open .btn-primary { width: 100%; justify-content: center; text-align: center; }

  /* Acquire cards: 2-col compact grid */
  .acquire-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .acquire-card { padding: 20px 16px; }
  .acquire-card h3 { font-size: 0.95rem; }
  .acquire-card p { font-size: 13px; }
  .acquire-icon { width: 40px; height: 40px; margin-bottom: 14px; }
  .acquire-icon svg { width: 20px; height: 20px; }

  /* Results: horizontal scroll instead of stacked */
  .results-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
    max-width: none;
    margin: 0;
  }
  .results-grid::-webkit-scrollbar { display: none; }
  .result-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
  }

  /* Steps: compact, hide illustrations on mobile */
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .steps-grid-v2 { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid-v2 .step-card-v2:last-child { max-width: none; }
  .step-card-v2 { padding: 24px 20px 0; }
  .step-illustration { display: none; }
  .step-card-v2 p { margin-bottom: 20px; }

  /* Reviews: horizontal scroll */
  .reviews-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
    margin-bottom: 24px;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }

  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-card { padding: 14px 8px; }
  .stat-number { font-size: 1.2rem; }
  .stat-label { font-size: 11px; }

  /* Hide the SVG chart on mobile — unnecessary visual */
  .why-visual { display: none; }

  .hero-checks { flex-direction: column; align-items: center; gap: 8px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .hero-social-proof { flex-direction: column; gap: 8px; }
  .hero-guarantee { font-size: 12.5px; padding: 8px 16px; gap: 8px; }
  .hero-guarantee svg { width: 16px; height: 16px; }

  .cta-box { padding: 40px 20px; }
  .cta-box h2 { font-size: 1.35rem; }
  .cta-box p { font-size: 0.95rem; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .sticky-cta { display: block; }

  .booking-container { padding: 20px 16px; }
  .page-hero { padding: 100px 0 32px; }

  .section-header { margin-bottom: 32px; }
  .section-sub { font-size: 0.9rem; }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }

  .faq-question { padding: 14px 16px; font-size: 14px; }
  .faq-answer-inner { padding: 0 16px 14px; font-size: 13.5px; }

  /* AI section: tighter on mobile */
  .ai-card { padding: 20px 18px; }
  .ai-list li { font-size: 13.5px; }

  /* Math box tighter */
  .math-box p { font-size: 14px; }
  .math-box .math-result { font-size: 1.25rem; }

  /* Precall page mobile */
  .precall-hero { padding: 90px 0 32px; }
  .precall-hero h1 { font-size: 1.35rem; }
  .precall-hero-sub { font-size: 0.9rem; }
  .precall-video-section { padding: 40px 0; }
  .precall-expect-section { padding: 40px 0; }
  .precall-videos-section { padding: 40px 0; }
  .precall-graduates-section { padding: 40px 0; }
  .precall-reviews-section { padding: 32px 0; }
  .precall-check { font-size: 13.5px; }
  .graduate-card { flex: 0 0 240px; }
  .reviews-scroll .review-card { flex: 0 0 260px; }
  .precall-acc-trigger {
    padding: 14px;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
  }
  .precall-acc-panel .video-container {
    margin: 0 14px 14px;
  }
  .graduates-scroll,
  .reviews-scroll {
    padding: 0 16px 14px;
  }
  .trustpilot-info {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .precall-expect-row {
    padding: 14px 16px;
    font-size: 14px;
  }
  .precall-expect-num {
    width: 26px; height: 26px; min-width: 26px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 44px 0; }
  .hero { padding: 90px 0 32px; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.2rem; }
  .btn { padding: 12px 24px; font-size: 15px; }
  .result-card { flex: 0 0 270px; }
  .result-body { padding: 16px; }
  .result-quote { font-size: 13.5px; }
  .review-card { flex: 0 0 240px; }
  .math-box { padding: 16px; }
  .math-box .math-result { font-size: 1.15rem; }
  .confirm-steps { padding: 20px; }
  .confirmation-section { padding: 60px 16px; gap: 32px; }
  .confirmation-videos { gap: 20px; }
  .confirmation-video { padding: 14px; }
  .confirmation-videos-header h2 { font-size: 1.25rem; }
  .confirmation-video-title { font-size: 0.95rem; margin-bottom: 10px; }
  .acquire-grid { gap: 10px; }
  .acquire-card { padding: 16px 14px; }
  .acquire-card h3 { font-size: 0.85rem; }
  .acquire-card p { font-size: 12px; line-height: 1.6; }
  .section-header { margin-bottom: 24px; }
  .hero-guarantee { font-size: 11.5px; padding: 7px 14px; }
  .cta-box { padding: 32px 16px; }
  .graduate-card { flex: 0 0 86vw; }
  .reviews-scroll .review-card { flex: 0 0 86vw; }
  .precall-video-section { padding: 32px 0; }
  .precall-expect-section { padding: 32px 0; }
  .precall-videos-section { padding: 32px 0; }
  .precall-graduates-section { padding: 32px 0; }
  .precall-reviews-section { padding: 24px 0; }
  .precall-hero { padding: 80px 0 24px; }
  .precall-hero h1 { font-size: 1.2rem; }
  .sticky-cta { padding: 10px 16px; }
  .sticky-cta .btn { padding: 12px 20px; font-size: 14px; }
}

/* ===== SMART CAPTURE SECTION (inline, mobile-first) ===== */
/* Dimensions aligned with Scalelogix reference implementation */

/* --- Section wrapper --- */
.smart-capture-section {
  padding: 40px 0;
  background: var(--gray-50);
}
.capture-widget {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* --- Topbar (step pills) --- */
.capture-topbar {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 16px 16px;
}
.topbar-badge { display: none; }
.step-pill {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--dark-400);
  transition: color 0.2s;
}
.step-pill::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-200); transition: background 0.2s; flex-shrink: 0;
}
.step-pill.active { color: var(--dark); }
.step-pill.active::before { background: var(--blue); }

/* --- Capture card layout — single column (mobile default) --- */
.capture-card {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--gray-200);
  overflow: hidden;
}

/* --- Form panel --- */
.form-panel {
  padding: 20px 16px 18px;
  border-bottom: 1px solid var(--gray-200);
  display: flex; flex-direction: column; gap: 14px; position: relative;
}
.panel-header { display: flex; flex-direction: column; gap: 6px; }
.eyebrow { display: none; }
.step-meta { margin: 0; font-size: 13px; font-weight: 500; color: var(--dark-400); }
.panel-title { margin: 0; font-size: 18px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.2; color: var(--dark); }
.panel-description { margin: 0; font-size: 13px; color: var(--dark-500); line-height: 1.5; }
.panel-body { display: flex; flex-direction: column; gap: 12px; }
.lead-form { display: flex; flex-direction: column; gap: 10px; }

/* --- Field styles --- */
.field-wrap { display: flex; flex-direction: column; gap: 6px; }
.field-label-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.field-label { font-size: 13px; font-weight: 500; color: var(--dark-700); }
.field-hint { font-size: 12px; color: var(--dark-400); }
.text-input, .select-input, .textarea-input {
  width: 100%; padding: 10px 12px; font-size: 16px;
  border: 1.5px solid var(--gray-200); border-radius: 10px;
  background: var(--white); color: var(--dark);
  outline: none; transition: border-color 0.15s; font-family: inherit;
  -webkit-appearance: none;
}
.text-input::placeholder, .textarea-input::placeholder { color: var(--dark-400); }
.text-input:focus, .select-input:focus, .textarea-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.text-input.invalid, .select-input.invalid, .textarea-input.invalid, .choice-card.invalid { border-color: #ef4444; }
.textarea-input { min-height: 100px; resize: vertical; }
.select-input { color: var(--dark); }

/* --- Choice cards (radio/checkbox) --- */
.choice-grid { display: flex; flex-direction: column; gap: 6px; }
.choice-card {
  position: relative; border: 1.5px solid var(--gray-200);
  background: var(--white); border-radius: 10px;
  padding: 11px 14px 11px 36px; transition: border-color 0.15s, background 0.15s; cursor: pointer;
  display: flex; align-items: center;
}
.choice-card::before {
  content: ''; position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--gray-200);
  background: transparent; transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.choice-card.checked::before {
  border-color: var(--blue); background: var(--blue);
  box-shadow: inset 0 0 0 2.5px var(--white);
}
.choice-card:hover { border-color: var(--blue-light); background: var(--blue-50); }
.choice-card.checked { border-color: var(--blue); background: var(--blue-50); }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-title { display: block; font-size: 13px; font-weight: 500; line-height: 1.3; color: var(--dark); }
.choice-description { display: block; margin-top: 2px; font-size: 11px; color: var(--dark-500); line-height: 1.4; }
.field-error { color: #ef4444; font-size: 12px; font-weight: 500; }
.field-error:empty { display: none; }
.field-note { margin: 0; font-size: 12px; color: var(--dark-400); line-height: 1.5; }
.field-note a { color: var(--blue); text-decoration: none; }
.field-note a:hover { text-decoration: underline; }

/* --- Buttons --- */
.panel-actions { display: flex; gap: 10px; margin-top: 8px; }
.button {
  border: none; border-radius: 10px; padding: 12px 16px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: filter 0.15s, transform 0.1s; font-family: inherit;
}
.button:disabled { opacity: 0.5; cursor: not-allowed; }
.button-primary {
  flex: 1; background: var(--blue); color: #fff;
}
.button-primary:hover:not(:disabled) { background: var(--blue-dark); }
.button-secondary {
  flex: 0 0 auto; background: var(--gray-50); color: var(--dark);
  border: 1px solid var(--gray-200);
}
.button-secondary:hover:not(:disabled) { background: var(--gray-100); }
.status-message { margin: 0; font-size: 13px; color: var(--dark-400); }

/* --- Result states --- */
.result-shell { display: flex; flex-direction: column; gap: 16px; }
.result-state {
  padding: 16px; border-radius: 10px;
  border: 1px solid var(--gray-200); background: var(--gray-50);
}
.result-state.success { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.06); }
.result-state.failure { border-color: rgba(239,68,68,0.3); background: rgba(239,68,68,0.06); }
.result-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
.result-icon.success { background: rgba(34,197,94,0.15); color: #22c55e; }
.result-icon.failure { background: rgba(239,68,68,0.15); color: #ef4444; }
.result-title { margin: 0 0 6px; font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--dark); }
.result-copy { margin: 0; color: var(--dark-500); font-size: 14px; line-height: 1.5; }

/* --- Summary / highlights --- */
.summary-card, .highlight-card {
  border: 1px solid var(--gray-200); border-radius: 10px;
  padding: 14px; background: var(--white);
}
.summary-heading, .highlight-heading {
  margin: 0 0 10px; font-size: 13px; font-weight: 600; color: var(--dark-500);
}
.summary-list { display: grid; gap: 10px; }
.summary-row {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 10px; border-bottom: 1px solid var(--gray-100);
}
.summary-row:last-child { padding-bottom: 0; border-bottom: none; }
.summary-label {
  font-size: 12px; font-weight: 500; color: var(--dark-400);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.summary-value { font-size: 14px; font-weight: 500; color: var(--dark); }
.highlight-grid { display: grid; gap: 10px; }
.highlight-title { margin: 0 0 3px; font-size: 14px; font-weight: 600; color: var(--dark); }
.highlight-copy { margin: 0; font-size: 13px; color: var(--dark-500); line-height: 1.5; }

/* --- Calendar panel --- */
.calendar-panel { padding: 0; display: flex; flex-direction: column; position: relative; }
.calendar-header {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 10px 14px; border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.calendar-kicker { margin: 0; font-size: 13px; color: var(--dark-500); }
.calendar-kicker strong { color: var(--dark-700); font-weight: 500; }
.calendar-title { margin: 0; font-size: 13px; color: var(--blue); text-decoration: none; }
.calendar-note { display: none; }
.calendar-frame-wrap { position: relative; flex: 1; min-height: 420px; }
.calendar-frame { width: 100%; min-height: 420px; border: none; display: block; background: var(--gray-50); }
.calendar-frame:not([hidden]) { display: block !important; opacity: 1 !important; visibility: visible !important; pointer-events: auto !important; }
.calendar-frame[hidden] { display: none !important; }
.calendar-placeholder, .calendar-overlay {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; padding: 24px; z-index: 2;
}
.calendar-placeholder {
  background: var(--gray-50); text-align: center; color: var(--dark-400);
  font-size: 14px; z-index: 3;
}
.calendar-placeholder[hidden] { display: none; }
.calendar-overlay {
  background: rgba(248,250,252,0.95); backdrop-filter: blur(6px);
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.calendar-overlay.unlocked { opacity: 0; visibility: hidden; pointer-events: none; }
.overlay-card {
  max-width: 280px; border-radius: 12px; background: var(--white);
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-lg);
  padding: 18px; text-align: center;
}
.overlay-title { margin: 0 0 6px; font-size: 14px; font-weight: 600; color: var(--dark); }
.overlay-copy { margin: 0; color: var(--dark-500); font-size: 13px; line-height: 1.5; }

/* --- Legal links --- */
.sc-legal-links {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 12px 16px;
}
.sc-legal-links a { font-size: 12px; color: var(--dark-400); text-decoration: none; }
.sc-legal-links a:hover { text-decoration: underline; color: var(--dark-500); }

/* --- Qualified state — hide form, expand calendar --- */
.capture-widget[data-capture-state="qualified"] .form-panel { display: none; }
.capture-widget[data-capture-state="qualified"] .capture-card { grid-template-columns: 1fr; }
.capture-widget[data-capture-state="qualified"] .calendar-panel,
.capture-widget[data-capture-state="qualified"] .calendar-frame-wrap { min-height: auto !important; height: auto !important; flex: none; }
.capture-widget[data-capture-state="qualified"] .calendar-frame { height: auto !important; }

/* --- Smart capture: tablet (600px+) --- */
@media (min-width: 600px) {
  .smart-capture-section { padding: 40px 0; }
  .capture-topbar { gap: 20px; padding: 0 24px 20px; }
  .step-pill { font-size: 14px; }
  .form-panel { padding: 24px 20px 20px; gap: 16px; }
  .panel-title { font-size: 20px; }
  .panel-description { font-size: 14px; }
  .panel-body { gap: 14px; }
  .lead-form { gap: 14px; }
  .text-input, .select-input, .textarea-input { font-size: 14px; }
  .button { padding: 12px 16px; font-size: 14px; }
  .calendar-header { flex-direction: row; align-items: center; justify-content: space-between; padding: 12px 16px; }
  .calendar-frame-wrap, .calendar-frame { min-height: 500px; }
  .summary-row { flex-direction: row; justify-content: space-between; }
  .summary-value { max-width: 60%; text-align: right; }
}

/* --- Smart capture: desktop (860px+) — two-column layout --- */
@media (min-width: 860px) {
  .smart-capture-section { padding: 56px 0; }
  .capture-card { grid-template-columns: minmax(0, 400px) minmax(0, 1fr); }
  .form-panel { padding: 28px 24px 24px; border-bottom: none; border-right: none; gap: 16px; align-self: start; }
  .calendar-panel { border-left: 1px solid var(--gray-200); }
  .panel-title { font-size: 22px; }
  .panel-body { gap: 14px; }
  .lead-form { gap: 14px; }
  .calendar-frame-wrap, .calendar-frame { min-height: 460px; max-height: 600px; overflow: hidden; }
}

/* ============================================
   CONTINUE: premium 72-hour course lander
   ============================================ */
.c-page { background: #fff; color: #0b1220; }
.c-page .container { max-width: 1180px; }
.c-page .navbar {
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(148,163,184,.18);
  box-shadow: none;
}
.c-page .navbar-inner { justify-content: space-between; }
.c-page .nav-cta {
  display: inline-flex; align-items: center; padding: 10px 20px;
  background: #0b1220; color: #fff; border-radius: 999px;
  font-size: 14px; font-weight: 700; transition: transform .2s ease, background .2s ease;
}
.c-page .nav-cta:hover { background: #2563eb; transform: translateY(-1px); }
.brc-kicker {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px;
  font-size: 12px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: #2563eb;
}
.brc-kicker span { width: 4px; height: 4px; border-radius: 50%; background: currentColor; }
.brc-lead {
  font-size: clamp(1rem, 1.5vw, 1.18rem); color: #64748b;
  max-width: 680px; line-height: 1.7;
}
.brc-hero {
  position: relative;
  min-height: 780px; padding: 148px 0 96px; text-align: left; color: #fff;
  background:
    radial-gradient(circle at 14% 22%, rgba(59,130,246,.48), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(96,165,250,.22), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(15,23,42,.55), transparent 48%),
    linear-gradient(152deg, #060d1a 0%, #0a1c42 46%, #123682 100%);
  isolation: isolate;
}
.brc-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.brc-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; z-index: -1; }
.brc-orb-one { width: 340px; height: 340px; left: -170px; top: 250px; border: 1px solid rgba(147,197,253,.16); }
.brc-orb-two { width: 520px; height: 520px; right: -260px; bottom: -230px; border: 1px solid rgba(147,197,253,.14); }
.brc-hero-inner { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(350px,.72fr); gap: 74px; align-items: center; }
.brc-hero .brc-kicker { color: #93c5fd; }
.brc-hero-copy h1 {
  max-width: 760px; margin: 0 0 22px; font-size: clamp(3.1rem, 5.8vw, 5.7rem);
  line-height: .98; letter-spacing: -.06em; font-weight: 600;
}
.brc-hero-copy h1 em { display: block; color: #7dd3fc; font-style: normal; }
.brc-hero .brc-lead { color: rgba(226,232,240,.82); margin: 0 0 26px; max-width: 560px; font-size: clamp(1.02rem, 1.4vw, 1.14rem); line-height: 1.65; }
.brc-checks { display: flex; flex-wrap: wrap; gap: 10px 20px; list-style: none; margin: 0 0 30px; }
.brc-checks li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.84); font-size: 14px; font-weight: 500; }
.brc-checks li::before {
  content: "✓"; display: grid; place-items: center; width: 19px; height: 19px;
  border-radius: 50%; color: #bfdbfe; background: rgba(96,165,250,.18); font-size: 11px;
}
.brc-trust { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(226,232,240,.68); }
.brc-trust strong { color: #fff; }
.brc-trust-star { display: inline-grid; place-items: center; width: 24px; height: 24px; background: #00b67a; color: #fff; font-size: 14px; }
.brc-deal {
  position: relative; overflow: hidden; padding: 32px 30px 28px; color: #0f172a; text-align: left;
  background: #fff; border: 1px solid rgba(191,219,254,.55);
  border-radius: 22px; box-shadow: 0 24px 64px rgba(2,8,23,.32);
}
.brc-deal::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg,#1d4ed8,#38bdf8); }
.brc-deal-top { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; color: #64748b; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.brc-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 5px rgba(34,197,94,.12); animation: brc-pulse 2.2s ease-in-out infinite; }
@keyframes brc-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34,197,94,.1); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,.05); }
}
.brc-deal-label { color: #64748b; font-size: 14px; font-weight: 600; }
.brc-now { margin: 2px 0 8px; font-size: clamp(3.5rem,6vw,5rem); line-height: 1; font-weight: 700; letter-spacing: -.07em; color: #0f172a; }
.brc-deal-sub { color: #64748b; font-size: 15px; line-height: 1.55; }
.brc-deal-divider { height: 1px; margin: 24px 0; background: #e2e8f0; }
.brc-deal-list { display: grid; gap: 14px; margin: 0 0 26px; list-style: none; }
.brc-deal-list li { display: flex; align-items: center; gap: 11px; color: #334155; font-size: 14px; }
.brc-deal-list span { color: #2563eb; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.brc-deal .btn { width: 100%; justify-content: center; border-radius: 12px; padding: 16px 22px; }
.brc-claim-note { margin-top: 12px; text-align: center; color: #94a3b8; font-size: 12px; }
.brc-rail-wrap { padding: 88px 0 104px; background: #fff; }
.brc-rail-intro { margin-bottom: 48px; text-align: center; }
.brc-rail-intro h2 { font-size: clamp(2rem,4vw,3.4rem); letter-spacing: -.045em; }
.brc-rail { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; list-style: none; }
.brc-rail::before { content: ""; position: absolute; top: 24px; left: 15%; right: 15%; height: 1px; background: #bfdbfe; }
.brc-rail li { position: relative; text-align: center; padding: 0 22px; }
.brc-rail .dot {
  position: relative; z-index: 1; display: grid; place-items: center; width: 48px; height: 48px;
  margin: 0 auto 24px; border: 8px solid #fff; border-radius: 50%; background: #2563eb;
  color: #fff; box-shadow: 0 0 0 1px #bfdbfe; font-size: 12px; font-weight: 700;
}
.brc-day { display: block; margin-bottom: 6px; color: #2563eb; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.brc-rail strong { display: block; margin-bottom: 8px; font-size: 19px; }
.brc-rail p { margin: 0 auto; max-width: 285px; color: #64748b; font-size: 14px; line-height: 1.65; }
.brc-stack-section { padding: 100px 0; background: #f3f7ff; }
.brc-stack-shell { overflow: hidden; border: 1px solid #dbeafe; border-radius: 24px; background: #fff; box-shadow: 0 18px 48px rgba(30,64,175,.08); }
.brc-stack-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 44px 48px 36px; }
.brc-stack-head h2 { max-width: 670px; font-size: clamp(2rem,4vw,3.35rem); letter-spacing: -.045em; }
.brc-stack-stamp { flex: 0 0 auto; padding: 9px 14px; border-radius: 999px; background: #eff6ff; color: #2563eb; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.brc-stack-rows { padding: 0 48px; }
.brc-stack-row { display: grid; grid-template-columns: 42px 1fr auto; gap: 18px; align-items: center; padding: 22px 0; border-top: 1px solid #e2e8f0; }
.brc-stack-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: #eff6ff; color: #2563eb; font-size: 11px; font-weight: 700; }
.brc-stack-row strong { display: block; margin-bottom: 3px; font-size: 16px; }
.brc-stack-row p { color: #64748b; font-size: 13px; line-height: 1.5; }
.brc-stack-row > span:last-child { color: #2563eb; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.brc-stack-total { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 32px 48px; background: #0b1220; color: #fff; }
.brc-stack-total div { display: flex; align-items: baseline; gap: 18px; }
.brc-stack-total div span { color: #94a3b8; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.brc-stack-total strong { font-size: 42px; letter-spacing: -.05em; }
.brc-stack-total .btn { border-radius: 12px; }
.brc-section { padding: 110px 0; }
.brc-toc { max-width: 1180px; }
.brc-toc .section-header { max-width: 760px; margin: 0 auto 54px; }
.brc-toc .brc-lead { margin: 0 auto; }
.brc-module-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.brc-chapter {
  position: relative; min-height: 232px; padding: 26px; border: 1px solid #e8eef7;
  border-radius: 16px; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.brc-chapter:hover { transform: translateY(-3px); border-color: #bfdbfe; box-shadow: 0 14px 36px rgba(15,23,42,.07); }
.brc-chapter > span { display: block; margin-bottom: 42px; color: #2563eb; font-size: 13px; font-weight: 700; }
.brc-module-time { position: absolute; top: 25px; right: 26px; color: #94a3b8; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.brc-chapter h3 { margin-bottom: 10px; font-size: 20px; }
.brc-chapter p { color: #64748b; font-size: 14px; line-height: 1.7; }
#why-free { background: #0b1220; color: #fff; }
.brc-why-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 90px; align-items: center; }
.brc-why-copy h2 { max-width: 620px; margin-bottom: 22px; font-size: clamp(2.4rem,4.5vw,4.7rem); line-height: 1; letter-spacing: -.055em; }
.brc-why-copy p { max-width: 590px; margin-bottom: 15px; color: #94a3b8; font-size: 16px; line-height: 1.75; }
.brc-text-link { display: inline-flex; gap: 10px; margin-top: 18px; color: #60a5fa; font-weight: 700; }
.brc-text-link span { transition: transform .2s ease; }
.brc-text-link:hover span { transform: translateX(4px); }
.brc-why-visual { padding: 30px; border: 1px solid rgba(148,163,184,.18); border-radius: 24px; background: rgba(255,255,255,.045); box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.brc-progress-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; color: #94a3b8; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.brc-progress-top strong { color: #fff; }
.brc-progress-line { height: 4px; margin-bottom: 28px; overflow: hidden; border-radius: 9px; background: rgba(148,163,184,.15); }
.brc-progress-line i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg,#2563eb,#60a5fa); }
.brc-progress-item { display: grid; grid-template-columns: 38px 1fr 24px; align-items: center; gap: 14px; padding: 18px 0; border-top: 1px solid rgba(148,163,184,.14); }
.brc-progress-item > span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(37,99,235,.18); color: #93c5fd; font-size: 11px; font-weight: 700; }
.brc-progress-item strong { display: block; font-size: 15px; }
.brc-progress-item small { display: block; margin-top: 3px; color: #64748b; }
.brc-progress-item b { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #2563eb; color: #fff; font-size: 11px; }
.brc-steps-section { background: #f8fafc; }
.brc-steps-section .section-header { max-width: 720px; margin: 0 auto 54px; }
.brc-steps-section .brc-lead { margin: 0 auto; }
.brc-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; list-style: none; }
.brc-steps li { min-height: 268px; padding: 28px; border-radius: 16px; background: #fff; border: 1px solid #e8eef7; }
.brc-steps li > span { display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 48px; border-radius: 50%; background: #0b1220; color: #fff; font-size: 12px; font-weight: 700; }
.brc-steps small { display: block; margin-bottom: 7px; color: #2563eb; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.brc-steps h3 { margin-bottom: 9px; font-size: 20px; }
.brc-steps p { color: #64748b; font-size: 14px; line-height: 1.65; }
.brc-steps-cta { margin-top: 34px; text-align: center; }
.brc-steps-cta .btn { border-radius: 12px; }
#proof { background: #fff; }
#proof .section-header { max-width: 760px; margin-left: auto; margin-right: auto; }
#proof .brc-lead { margin: 0 auto; }
.c-page #proof .reviews-grid { gap: 14px; }
.c-page #proof .review-card { min-height: 270px; padding: 26px; border-radius: 18px; background: #f8fafc; box-shadow: none; }
.c-page #proof .review-text { font-size: 14px; line-height: 1.75; }
.brc-proof-foot { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 9px; margin-top: 34px; color: #64748b; font-size: 13px; }
.brc-proof-foot strong { color: #0f172a; }
.brc-proof-foot small { width: 100%; text-align: center; color: #94a3b8; }
#fit { background: #f8fafc; }
.brc-fit { display: grid; grid-template-columns: 1.25fr .85fr; gap: 20px; align-items: stretch; }
.brc-fit-main, .brc-fit-skip { padding: 46px; border-radius: 24px; }
.brc-fit-main { background: #2563eb; color: #fff; }
.brc-fit-main .brc-kicker { color: #bfdbfe; }
.brc-fit-main h2 { max-width: 600px; font-size: clamp(2rem,4vw,3.7rem); letter-spacing: -.045em; }
.brc-fit-skip { border: 1px solid #e2e8f0; background: #fff; }
.brc-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #64748b; }
.brc-fit ul { display: grid; gap: 14px; margin-top: 26px; list-style: none; }
.brc-fit li { position: relative; padding-left: 27px; font-size: 15px; line-height: 1.55; }
.brc-fit-main li { color: rgba(255,255,255,.9); }
.brc-fit-main li::before, .brc-fit-skip li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.brc-fit-main li::before { content: "✓"; color: #dbeafe; }
.brc-fit-skip li::before { content: "×"; color: #94a3b8; }
.c-page .faq-section { background: #fff; }
.c-page .faq-section .section-header { max-width: 720px; margin-left: auto; margin-right: auto; }
.c-page .faq-list { gap: 0 !important; border-top: 1px solid #e2e8f0; }
.c-page .faq-item { border: 0; border-bottom: 1px solid #e2e8f0; border-radius: 0; }
.c-page .faq-item:hover, .c-page .faq-item.active { border-color: #bfdbfe; box-shadow: none; }
.c-page .faq-question { position: relative; padding: 24px 42px 24px 0; font-size: 16px; }
.c-page .faq-question::after { content: "+"; position: absolute; right: 2px; color: #2563eb; font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.c-page .faq-item.active .faq-question::after { transform: rotate(45deg); }
.c-page .faq-answer-inner { padding: 0 42px 24px 0; }
.brc-final {
  position: relative; overflow: hidden; padding: 120px 0; text-align: center; color: #fff;
  background: linear-gradient(145deg,#1d4ed8,#2563eb 56%,#1e40af);
}
.brc-final::before, .brc-final::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); }
.brc-final::before { width: 500px; height: 500px; left: -220px; top: -230px; }
.brc-final::after { width: 420px; height: 420px; right: -180px; bottom: -260px; }
.brc-final-inner { position: relative; z-index: 1; }
.brc-final .brc-kicker { color: #dbeafe; }
.brc-final h2 { margin-bottom: 18px; max-width: 900px; margin-left: auto; margin-right: auto; font-size: clamp(2.6rem,5.2vw,4.8rem); line-height: 1.02; letter-spacing: -.05em; }
.brc-final .brc-lead { max-width: 560px; margin: 0 auto 28px; color: rgba(255,255,255,.8); font-size: 1.05rem; }
.brc-final .btn { border-radius: 12px; padding: 16px 28px; color: #1d4ed8; }
.brc-final-note { margin-top: 14px; color: rgba(255,255,255,.6); font-size: 12px; }
.c-page .footer { background: #0b1220; border: 0; }
.c-page .footer-disclaimer { margin-top: 0; padding-top: 0; border: 0; }
.c-page .footer-disclaimer h4 { color: #64748b; }
.c-page .footer-disclaimer p, .c-page .footer-bottom p, .c-page .footer-legal a { color: #475569; }
.c-page .footer-bottom { border-color: rgba(148,163,184,.12); }
.c-page .sticky-cta { background: rgba(255,255,255,.94); }
.c-page .sticky-cta .btn { border-radius: 12px; }
.c-page .book-modal[hidden] { display: none; }
.c-page .book-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: flex-start; justify-content: center; padding: 24px 16px; overflow-y: auto; }
.c-page .book-modal-backdrop { position: fixed; inset: 0; background: rgba(2,8,23,.72); backdrop-filter: blur(8px); }
.c-page .book-modal-dialog { position: relative; z-index: 1; width: min(900px,100%); margin: 28px auto; padding: 34px; border-radius: 26px; background: #fff; box-shadow: 0 40px 100px rgba(2,8,23,.45); }
.c-page .book-modal-dialog > h2 { margin-bottom: 6px; font-size: 34px; letter-spacing: -.04em; }
.c-page .book-modal-dialog > p:not(.brc-kicker) { color: #64748b; }
.c-page .book-modal-close { position: absolute; top: 16px; right: 18px; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid #e2e8f0; border-radius: 50%; background: #fff; color: #64748b; font-size: 24px; line-height: 1; }
.c-page .ph-cal { margin-top: 24px; }
.c-page .ph-cal-note { margin-bottom: 14px; color: #94a3b8; font-size: 12px; }
.c-page .ph-cal-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 26px; padding: 22px; border: 1px solid #e2e8f0; border-radius: 18px; background: #f8fafc; }
.c-page .ph-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.c-page .ph-cal-head strong { font-size: 15px; }
.c-page .ph-cal-head button { width: 34px; height: 34px; border: 1px solid #e2e8f0; border-radius: 9px; background: #fff; color: #334155; font-size: 18px; }
.c-page .ph-cal-dow, .c-page .ph-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 5px; text-align: center; }
.c-page .ph-cal-dow span { padding: 7px 0; color: #94a3b8; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.c-page .ph-cal-grid button { aspect-ratio: 1; border: 0; border-radius: 9px; background: transparent; color: #334155; font-size: 13px; }
.c-page .ph-cal-grid button:hover:not([disabled]) { background: #dbeafe; }
.c-page .ph-cal-grid button[disabled] { color: #cbd5e1; cursor: default; }
.c-page .ph-cal-grid button.is-selected { background: #2563eb; color: #fff; }
.c-page .ph-cal-day { margin-bottom: 10px; font-size: 13px; font-weight: 700; }
.c-page .ph-cal-slots { display: flex; flex-direction: column; gap: 8px; max-height: 360px; overflow-y: auto; }
.c-page .ph-cal-slots button { width: 100%; padding: 11px 13px; border: 1px solid #e2e8f0; border-radius: 10px; background: #fff; color: #334155; text-align: left; font-size: 13px; }
.c-page .ph-cal-slots button.is-selected { border-color: #2563eb; background: #eff6ff; color: #1d4ed8; font-weight: 700; }
body.book-modal-open { overflow: hidden; }
body.book-modal-open .sticky-cta { display: none !important; }
@media (prefers-reduced-motion: reduce) {
  .c-page *, .c-page *::before, .c-page *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
@media (max-width: 960px) {
  .brc-hero { min-height: auto; }
  .brc-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .brc-hero-copy { text-align: center; }
  .brc-hero-copy h1, .brc-hero .brc-lead { margin-left: auto; margin-right: auto; }
  .brc-checks, .brc-trust { justify-content: center; }
  .brc-deal { width: min(480px,100%); margin: 0 auto; }
  .brc-module-grid { grid-template-columns: repeat(2,1fr); }
  .brc-why-grid { grid-template-columns: 1fr; gap: 48px; }
  .brc-why-copy { text-align: center; }
  .brc-why-copy h2, .brc-why-copy p { margin-left: auto; margin-right: auto; }
  .brc-why-visual { width: min(600px,100%); margin: 0 auto; }
  .brc-fit { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .c-page { padding-bottom: 76px; }
  .c-page .navbar { padding: 12px 0; }
  .c-page .logo img { height: 28px !important; }
  .c-page .nav-cta { padding: 9px 14px; font-size: 12px; }
  .brc-hero { padding: 112px 0 70px; }
  .brc-hero-copy h1 { font-size: clamp(2.9rem,14vw,4.6rem); }
  .brc-hero .brc-lead { font-size: 15px; }
  .brc-checks { flex-direction: column; align-items: center; gap: 8px; }
  .brc-trust { flex-wrap: wrap; }
  .brc-deal { padding: 26px 22px; border-radius: 22px; }
  .brc-deal-top { margin-bottom: 25px; }
  .brc-rail-wrap, .brc-section, .brc-stack-section { padding: 76px 0; }
  .brc-rail { grid-template-columns: 1fr; gap: 44px; }
  .brc-rail::before { top: 0; bottom: 0; left: 24px; right: auto; width: 1px; height: auto; }
  .brc-rail li { display: grid; grid-template-columns: 48px 1fr; column-gap: 18px; padding: 0; text-align: left; }
  .brc-rail .dot { grid-row: 1 / 4; margin: 0; }
  .brc-day, .brc-rail strong, .brc-rail p { grid-column: 2; }
  .brc-rail p { margin: 0; }
  .brc-stack-head { align-items: flex-start; padding: 30px 22px 24px; }
  .brc-stack-stamp { display: none; }
  .brc-stack-rows { padding: 0 22px; }
  .brc-stack-row { grid-template-columns: 36px 1fr; gap: 13px; padding: 19px 0; }
  .brc-stack-row > span:last-child { display: none; }
  .brc-stack-total { align-items: stretch; flex-direction: column; padding: 26px 22px; }
  .brc-stack-total div { justify-content: space-between; }
  .brc-stack-total .btn { justify-content: center; }
  .brc-module-grid, .brc-steps { grid-template-columns: 1fr; }
  .brc-chapter, .brc-steps li { min-height: 0; }
  .brc-chapter > span, .brc-steps li > span { margin-bottom: 30px; }
  .brc-why-grid { gap: 38px; }
  .brc-why-copy h2 { font-size: 2.7rem; }
  .brc-why-visual { padding: 22px 18px; }
  .brc-steps { gap: 12px; }
  .brc-fit-main, .brc-fit-skip { padding: 30px 24px; border-radius: 20px; }
  .c-page #proof .reviews-grid { padding-left: 2px; }
  .c-page #proof .review-card { min-height: 260px; }
  .brc-final { padding: 90px 0; }
  .brc-final h2 { font-size: 3.4rem; }
  .c-page .book-modal { padding: 8px; }
  .c-page .book-modal-dialog { margin: 8px auto; padding: 28px 18px 20px; border-radius: 20px; }
  .c-page .book-modal-dialog > h2 { font-size: 27px; }
  .c-page .ph-cal-layout { grid-template-columns: 1fr; gap: 22px; padding: 15px; }
}
@media (max-width: 420px) {
  .brc-hero-copy h1 { font-size: 2.75rem; }
  .brc-now { font-size: 3.6rem; }
  .brc-stack-head h2 { font-size: 2rem; }
  .brc-stack-total strong { font-size: 36px; }
  .brc-final h2 { font-size: 2.85rem; }
  .brc-progress-item { grid-template-columns: 36px 1fr 20px; gap: 10px; }
}
