/* ============================================
   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; }

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(2.25rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
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-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; }
.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;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  padding: 80px 24px;
}
.confirmation-card {
  max-width: 560px;
}
.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: left;
}
.precall-check {
  display: flex;
  align-items: center;
  gap: 10px;
  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; }

/* Expect list (compact) */
.precall-expect-section { background: var(--gray-50); }
.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); }
.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-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-acc-panel .video-container {
  margin: 0 20px 20px;
  border-radius: var(--radius);
}

/* Graduates (horizontal scroll) */
.precall-graduates-section { background: var(--white); }
.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); }
.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;
}

/* --- 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; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .hero { padding: 110px 0 50px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .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-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .results-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .steps-grid-v2 { grid-template-columns: 1fr; }
  .steps-grid-v2 .step-card-v2:last-child { max-width: none; }
  .step-card-v2 { padding: 28px 20px 0; }
  .step-illustration { width: calc(100% + 40px); margin: 0 -20px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-card { padding: 16px 10px; }
  .stat-number { font-size: 1.35rem; }

  .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; }

  .cta-box { padding: 48px 24px; }
  .cta-box h2 { font-size: 1.5rem; }
  .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: 110px 0 40px; }

  .section-sub { font-size: 0.95rem; }
  .hero-sub { font-size: 0.95rem; }

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

  .precall-hero { padding: 100px 0 50px; }
  .precall-steps-row { flex-direction: column; align-items: center; gap: 16px; }
  .precall-step-divider { width: 2px; height: 24px; }
  .precall-expect-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .precall-expect-grid .precall-expect-card:last-child { max-width: none; }
  .precall-video-section { padding: 48px 0; }
  .precall-hero { padding: 90px 0 32px; }
  .graduate-card { flex: 0 0 240px; }
  .reviews-scroll .review-card { flex: 0 0 260px; }
}

@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .container { padding: 0 16px; }
  .hero { padding: 100px 0 40px; }
  h1 { font-size: 1.5rem; }
  .btn { padding: 12px 24px; font-size: 15px; }
  .result-body { padding: 16px; }
  .math-box { padding: 16px; }
  .math-box .math-result { font-size: 1.25rem; }
  .confirm-steps { padding: 20px; }
}

/* ===== 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; }
}
