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

/* Move reCAPTCHA badge to bottom-left + shrink */
.grecaptcha-badge {
  left: 4px !important;
  right: auto !important;
  transform: scale(0.7) !important;
  transform-origin: left bottom !important;
}

:root {
  --bg: #ffffff;
  --bg-soft:   #e8f1ff;
  --bg-card:   #ffffff;
  --border:    #e8eaf0;
  --accent:    #3B82F6;
  --accent-dk: #2563EB;
  --accent-lt: #EFF6FF;
  --text:      #000000;
  --text-mid:  #000000;
  --text-muted:#000000;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --ease:      cubic-bezier(0.4,0,0.2,1);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow:    0 2px 8px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.08), 0 24px 64px rgba(0,0,0,0.1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.accent { color: var(--accent); }

/* ── Reveal ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Buttons ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 24px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 14px;
  text-decoration: none; cursor: pointer;
  border: none; transition: all 0.22s var(--ease); white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 1px 3px rgba(59,130,246,0.3), 0 4px 12px rgba(59,130,246,0.2);
}
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(59,130,246,0.35); }
.btn-outline {
  background: transparent; color: var(--text-mid);
  border: 1.5px solid #6b9fd4;
  color: #2c5f8a;
}
.btn-outline:hover { border-color: #c0c4d8; color: var(--text); transform: translateY(-1px); }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ───────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 18px 0;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
}
#navbar.scrolled {
  background: rgba(240,246,255,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.05);
}
.nav-inner {
  max-width: 100%; margin: 0; padding: 0 48px;
  display: flex; align-items: center; gap: 48px;
}
.nav-logo {
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
  color: var(--text); text-decoration: none; letter-spacing: -0.5px; flex-shrink: 0;
}
.logo-dot { color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 32px; flex: 1; }
.nav-links a { color: var(--text-mid); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: auto; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; margin-left: auto; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(255,255,255,0.98); border-top: 1px solid var(--border); padding: 8px 0 20px;
}
.nav-mobile a { color: var(--text-mid); text-decoration: none; font-size: 15px; padding: 14px 32px; border-bottom: 1px solid var(--border); }
.nav-mobile a:last-child { border: none; margin: 16px 32px 0; }
.nav-mobile.open { display: flex; }
.nav-mobile-sub { padding-left: 48px !important; font-size: 14px !important; color: var(--text-mid) !important; }
@media (max-width: 768px) { .nav-links, .nav-cta { display: none; } .nav-toggle { display: flex; } }

/* ── Nav dropdown ─────────────────────────── */
.nav-has-dropdown { position: relative; }
.nav-caret { display: inline-block; margin-left: 4px; font-size: 10px; transition: transform 0.2s; }
.nav-has-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: -16px;
  min-width: 320px; padding: 12px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
.nav-has-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px; border-radius: 8px;
  color: var(--text); text-decoration: none; font-size: 14px;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a strong { font-weight: 600; font-size: 14px; line-height: 1.3; }
.nav-dropdown a span { font-size: 12px; color: var(--text-mid); line-height: 1.4; font-weight: 400; }
.nav-dropdown a:hover { background: var(--accent-lt); }
.nav-dropdown a:hover strong, .nav-dropdown a:hover span { color: var(--accent); }

/* ── Hero ─────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 140px 0 60px;
  background: #f0f6ff;
}

#ribbon-canvas {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 160px);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 50px;
  border: 1.5px solid rgba(59,130,246,0.25);
  background: var(--accent-lt);
  color: var(--accent); font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: badgePulse 2s ease infinite;
}
@keyframes badgePulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700; line-height: 1.04;
  letter-spacing: -2px; margin-bottom: 24px; color: var(--text);
}

.word-swap-wrapper {
  display: block; color: var(--accent);
  height: 1.1em; overflow: hidden; position: relative;
}
.word-swap { position: relative; }
.word-swap .word {
  display: block; position: absolute; top: 0; left: 0;
  opacity: 0; transform: translateY(110%);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  white-space: nowrap;
}
.word-swap .word.active { opacity: 1; transform: translateY(0); }
.word-swap .word.exit { opacity: 0; transform: translateY(-110%); }

.hero-sub {
  font-size: clamp(16px, 1.6vw, 18px); color: var(--text-mid);
  max-width: 480px; margin-bottom: 36px; line-height: 1.75;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust { display: flex; flex-direction: column; gap: 10px; }
.trust-label { font-size: 11px; #0f0f1a; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; margin-bottom: 12px; }
.trust-logos { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.trust-logos span {
  font-size: 14px; #0f0f1a; font-weight: 700;
  letter-spacing: -0.3px; opacity: 0.6;
  transition: opacity 0.2s;
}
.trust-logos span:hover { opacity: 0.8; }

.hero-right { min-height: 400px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}

/* ── Sub-page hero ────────────────────────── */
.subpage-hero {
  position: relative;
  padding: 180px 0 80px;
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.subpage-hero .container { position: relative; z-index: 2; }
.subpage-hero .hero-badge { margin-bottom: 24px; }
.subpage-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 20px;
  color: var(--text); max-width: 820px;
}
.subpage-hero .lede {
  font-size: clamp(16px, 1.6vw, 19px); color: var(--text-mid);
  max-width: 640px; line-height: 1.7; margin-bottom: 32px;
}
.subpage-hero .hero-btns { margin-bottom: 0; }

.subpage-section { padding: 90px 0; }
.subpage-section.alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 720px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.feature-card:hover { border-color: rgba(59,130,246,0.4); box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-card h3 { font-family: var(--font-head); font-size: 19px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.feature-card p { color: var(--text-mid); font-size: 14px; line-height: 1.7; }
.feature-icon { width: 38px; height: 38px; color: var(--accent); margin-bottom: 14px; }
.feature-icon svg { width: 100%; height: 100%; }

.checklist { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-mid); line-height: 1.6; }
.checklist li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 640px) { .checklist { grid-template-columns: 1fr; } }

.subpage-cta {
  background: var(--text); padding: 72px 0; text-align: center;
}
.subpage-cta h2 { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: #fff; margin-bottom: 14px; letter-spacing: -1px; }
.subpage-cta p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 480px; margin: 0 auto 28px; line-height: 1.7; }

/* ── Legal pages ──────────────────────────── */
.legal-hero { padding: 160px 0 50px; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.legal-hero .legal-back { font-size: 13px; color: var(--text-mid); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; margin-bottom: 24px; }
.legal-hero .legal-back:hover { color: var(--accent); }
.legal-hero h1 { font-family: var(--font-head); font-size: clamp(34px, 4.5vw, 52px); font-weight: 700; letter-spacing: -1.5px; color: var(--text); margin-bottom: 10px; }
.legal-hero .legal-updated { color: var(--text-muted); font-size: 14px; }
.legal-body { padding: 64px 0 100px; }
.legal-body .container { max-width: 820px; }
.legal-callout { background: var(--accent-lt); border-left: 4px solid var(--accent); padding: 18px 22px; border-radius: 6px; margin-bottom: 40px; font-size: 15px; font-weight: 600; color: var(--text); }
.legal-body h2 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--text); margin: 40px 0 12px; letter-spacing: -0.4px; }
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body h3 { font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--text); margin: 24px 0 8px; }
.legal-body p, .legal-body li { color: var(--text-mid); font-size: 15px; line-height: 1.75; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul { padding-left: 22px; margin-bottom: 14px; }
.legal-body li { margin-bottom: 6px; }
.legal-body a { color: var(--accent); }
.legal-body strong { color: var(--text); }

/* ── Stats ────────────────────────────────── */
#stats {
  padding: 64px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.stat-item {
  padding: 8px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number-wrap { display: flex; align-items: baseline; justify-content: center; gap: 2px; margin-bottom: 6px; }
.stat-number { font-family: var(--font-head); font-size: clamp(32px, 3.5vw, 48px); font-weight: 700; color: var(--accent); line-height: 1; }
.stat-suffix { font-family: var(--font-head); font-size: clamp(18px, 2vw, 26px); font-weight: 700; color: var(--accent); }
.stat-item p { font-size: 13px; color: var(--text-muted); }
@media (max-width: 768px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; } .stat-item { border-right: none; } }

/* ── Sections shared ──────────────────────── */
section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-label { display: inline-block; color: var(--accent); font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 46px); font-weight: 700; line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 14px; color: var(--text); }
.section-sub { font-size: 16px; color: var(--text-mid); max-width: 480px; line-height: 1.75; }

/* ── Capabilities ─────────────────────────── */
#capabilities { background: var(--bg); padding-bottom: 40px; }
.capability-stack { display: flex; flex-direction: column; gap: 16px; }
.capability-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 28px; align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.capability-card:hover {
  border-color: rgba(59,130,246,0.45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.capability-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--accent-lt);
  border: 1px solid rgba(59,130,246,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.capability-icon svg { width: 28px; height: 28px; }
.capability-body h3 {
  font-family: var(--font-head); font-size: 22px; font-weight: 600;
  color: var(--text); margin-bottom: 6px; letter-spacing: -0.3px;
}
.capability-body p {
  color: var(--text-mid); font-size: 15px; line-height: 1.65; margin-bottom: 12px;
}
.capability-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.capability-tag {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 50px;
  background: var(--bg-soft); color: var(--text-mid);
  border: 1px solid var(--border);
  letter-spacing: 0.2px;
}
.capability-card:hover .capability-tag {
  background: var(--accent-lt); color: var(--accent); border-color: rgba(59,130,246,0.2);
}
.capability-arrow {
  font-family: var(--font-head); font-size: 28px;
  color: var(--accent);
  transition: transform 0.22s var(--ease);
}
.capability-card:hover .capability-arrow { transform: translateX(6px); }
@media (max-width: 720px) {
  .capability-card { grid-template-columns: 56px 1fr; padding: 24px; gap: 18px; }
  .capability-arrow { display: none; }
  .capability-icon { width: 48px; height: 48px; }
  .capability-icon svg { width: 24px; height: 24px; }
  .capability-body h3 { font-size: 19px; }
}

/* ── Services ─────────────────────────────── */
#services { background: var(--bg); }
.services-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 56px; margin-bottom: 24px;
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
}
.service-badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px;
  background: var(--accent-lt); border: 1px solid rgba(59,130,246,0.25);
  color: var(--accent); font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 18px;
}
.services-featured-content h3 { font-family: var(--font-head); font-size: 26px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.services-featured-content p { color: var(--text-mid); font-size: 15px; line-height: 1.75; margin-bottom: 22px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-features li { font-size: 14px; color: var(--text-mid); display: flex; align-items: center; gap: 10px; }
.service-features li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* Mock chat */
.mock-interface { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.mock-bar { display: flex; gap: 6px; padding: 12px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--border); }
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.mock-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.mock-row { display: flex; gap: 10px; align-items: flex-end; }
.mock-out { flex-direction: row-reverse; }
.mock-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--accent-lt); border: 1.5px solid rgba(59,130,246,0.25); color: var(--accent); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-bubble { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; font-size: 12px; color: var(--text-mid); line-height: 1.5; max-width: 220px; }
.mock-out .mock-bubble { background: var(--accent); border-color: var(--accent); color: #fff; }
.mock-typing { display: flex; gap: 4px; padding: 4px 14px 8px; }
.mock-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--text-muted); animation: typingDot 1.2s ease infinite; }
.mock-typing span:nth-child(2) { animation-delay: 0.2s; }
.mock-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot { 0%,80%,100% { transform:scale(0.7); opacity:0.4; } 40% { transform:scale(1); opacity:1; } }

@media (max-width: 860px) { .services-featured { grid-template-columns: 1fr; padding: 36px; } .services-featured-visual { display: none; } }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.service-card:hover { border-color: rgba(59,130,246,0.4); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 16px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.service-card p { color: var(--text-mid); font-size: 14px; line-height: 1.7; }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* ── Process ──────────────────────────────── */
#how-it-works { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.process-step { padding: 48px 40px; border-right: 1px solid var(--border); }
.process-step:last-child { border-right: none; }
.process-num { font-family: var(--font-head); font-size: 52px; font-weight: 700; color: rgba(59,130,246,0.8); line-height: 1; margin-bottom: 20px; letter-spacing: -2px; }
.process-step h3 { font-family: var(--font-head); font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.process-step p { color: var(--text-mid); font-size: 14px; line-height: 1.7; }
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr; } .process-step { border-right: none; border-bottom: 1px solid var(--border); } }

/* ── Testimonials ─────────────────────────── */
#testimonials { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testimonial-card { background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow 0.25s, transform 0.25s; }
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-mid); font-size: 14px; line-height: 1.75; flex: 1; font-style: italic; }
.author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 14px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-lt); border: 1.5px solid rgba(59,130,246,0.25); color: var(--accent); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.author strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); }
.author span { font-size: 12px; color: var(--text-muted); }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── Results ──────────────────────────────── */
#results { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 40px 32px; transition: box-shadow 0.25s, transform 0.25s; }
.result-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.result-num { font-family: var(--font-head); font-size: clamp(42px, 5vw, 60px); font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 14px; letter-spacing: -2px; }
.result-card p { color: var(--text-mid); font-size: 14px; line-height: 1.75; }
@media (max-width: 768px) { .results-grid { grid-template-columns: 1fr; } }

/* ── CTA ──────────────────────────────────── */
#cta-band { background: var(--text); padding: 80px 0; }
.cta-inner { text-align: center; }
.cta-inner h2 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.1; color: #fff; }
.cta-inner h2 .accent { color: var(--accent); }
.cta-inner p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 460px; margin: 0 auto 32px; line-height: 1.75; }

/* ── FAQ ──────────────────────────────────── */
#faq { background: var(--bg); }
.faq-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(59,130,246,0.4); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); font-family: var(--font-head); font-size: 15px; font-weight: 500; padding: 18px 20px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: color 0.2s; }
.faq-q::after { content: '+'; font-size: 20px; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 20px 18px; color: var(--text-mid); font-size: 14px; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 200px; }
@media (max-width: 860px) { .faq-wrap { grid-template-columns: 1fr; gap: 40px; } }

/* ── Book a call ──────────────────────────── */
#book { background: var(--bg); padding: 80px 0; }
.book-card {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a1d3a 100%);
  border-radius: var(--radius-lg); padding: 56px;
  box-shadow: var(--shadow-lg);
}
.book-left .section-label { color: #93b4ff; margin-bottom: 16px; }
.book-left .section-title { color: #fff; margin-bottom: 18px; }
.book-left > p { color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.7; margin-bottom: 24px; max-width: 460px; }
.book-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.book-perks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.82); }
.book-perks .perk-check { background: rgba(59,130,246,0.18); border: 1.5px solid rgba(147,197,253,0.4); color: #93b4ff; }
.book-right {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
}
.book-avatar {
  width: 84px; height: 84px; border-radius: 50%;
  background: rgba(59,130,246,0.18); border: 2px solid rgba(147,197,253,0.4);
  color: #93b4ff; font-family: var(--font-head); font-size: 26px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.book-meta { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 100%; }
.book-meta h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: #fff; }
.book-role { font-size: 12px; color: #93b4ff; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }
.book-link {
  display: flex; align-items: center; gap: 8px; font-size: 14px;
  color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s;
}
.book-link:hover { color: #fff; }
.book-link svg { width: 15px; height: 15px; flex-shrink: 0; color: #93b4ff; }
@media (max-width: 860px) {
  .book-card { grid-template-columns: 1fr; padding: 36px; gap: 36px; }
  .book-left .section-title { font-size: clamp(28px, 5vw, 38px); }
}

/* ── Contact ──────────────────────────────── */
#contact { background: var(--bg-soft); border-top: 1px solid var(--border); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left > p { color: var(--text-mid); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
.perks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.perks li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mid); }
.perk-check { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-lt); border: 1.5px solid rgba(59,130,246,0.25); color: var(--accent); font-size: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#contactForm { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 12px; font-weight: 500; color: var(--text-mid); }
.form-group input, .form-group textarea { background: var(--bg-soft); border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px; color: var(--text); font-family: var(--font-body); font-size: 14px; outline: none; resize: vertical; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: 13px; line-height: 1.5; margin-top: 4px; min-height: 18px; }
.form-status.ok { color: #0a7a3b; }
.form-status.err { color: #b00020; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 48px; } .form-row { grid-template-columns: 1fr; } }

/* ── Footer ───────────────────────────────── */
footer { background: var(--text); padding: 56px 0 32px; }
.footer-top { display: flex; justify-content: space-between; gap: 48px; margin-bottom: 48px; flex-wrap: wrap; }
.footer-brand .nav-logo { color: #fff; font-size: 18px; }
.footer-brand .logo-dot { color: var(--accent); }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 10px; max-width: 220px; line-height: 1.6; }
.footer-cols { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 12px; }
@media (max-width: 640px) { .footer-cols { gap: 40px; } .footer-bottom { flex-direction: column; } }
#team { padding: 100px 0; background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.team-section-header { text-align: center; margin-bottom: 56px; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.team-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 52px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.team-card:hover { border-color: rgba(59,130,246,0.4); box-shadow: var(--shadow); transform: translateY(-3px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--accent-lt); border: 2px solid rgba(59,130,246,0.25); color: var(--accent); font-family: var(--font-head); font-size: 24px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.team-info { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 100%; }
.team-info h3 { font-family: var(--font-head); font-size: 24px; font-weight: 700; color: var(--text); }
.team-role { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; }
.team-email { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.team-email:hover { color: var(--accent); }
.team-email svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--accent); }
@media (max-width: 680px) { .team-grid { grid-template-columns: 1fr; } }
