/* Reveal page once this stylesheet is parsed (anti-FOUC) */
html { visibility: visible; opacity: 1; }

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

:root {
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --navy-900: #0c1829;
  --navy-800: #132337;
  --navy-700: #1a3550;
  --brand: #68BCF6;
  --brand-dark: #3ba8f0;
  --brand-dim: rgba(104,188,246,0.15);
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --green-500: #16a34a;
  --green-600: #15803d;
  --green-700: #166534;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --blue-50: #eff6ff;
  --blue-500: #3b82f6;
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; overflow-x: hidden; background: var(--navy-900); }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav.scrolled {
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy-900);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-logo span { color: var(--brand); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--gray-900); }

.nav-cta {
  background: var(--orange-500);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

@media (max-width: 640px) {
  .nav-links .nav-link { display: none; }
}

/* ========== HERO ========== */
.hero {
  padding: 120px clamp(16px, 3vw, 48px) 80px;
  background: linear-gradient(160deg, var(--navy-900) 0%, #0f2540 55%, var(--navy-800) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 40%, rgba(104,188,246,0.07) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(104,188,246,0.04) 0%, transparent 45%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(104,188,246,0.1);
  border: 1px solid rgba(104,188,246,0.28);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 .highlight {
  color: var(--brand);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(104,188,246,0.18);
  border-radius: 3px;
  z-index: -1;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-primary {
  background: var(--orange-500);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-700);
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s ease;
  border: 2px solid var(--gray-200);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}

.hero-trust-item svg { color: #4ade80; flex-shrink: 0; }

/* Ghost secondary button — hero dark bg variant */
.hero-btn-ghost {
  background: transparent !important;
  color: rgba(255,255,255,0.8) !important;
  border-color: rgba(255,255,255,0.2) !important;
}

.hero-btn-ghost:hover {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(255,255,255,0.4) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  overflow: visible;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-browser {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(800px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 5;
}

.hero-browser:hover {
  transform: perspective(800px) rotateY(0) rotateX(0);
}

.hero-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.h-dot { width: 10px; height: 10px; border-radius: 50%; }
.h-dot:nth-child(1) { background: #ef4444; }
.h-dot:nth-child(2) { background: #fbbf24; }
.h-dot:nth-child(3) { background: #22c55e; }

.h-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 5px 12px;
  border-radius: 6px;
  margin-left: 8px;
}

.hero-browser-body {
  padding: 0;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

/* Hero image slider */
.hero-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  object-position: top;
  border-radius: 0 0 10px 10px;
}

.hb-icon { font-size: 48px; margin-bottom: 16px; }
.hb-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 6px; }
.hb-sub { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }

.hb-features {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.hb-feat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hb-feat-icon { font-size: 16px; }

.hb-cta-mock {
  background: var(--orange-500);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}

.hero-float-badge {
  position: absolute;
  z-index: 10;
  background: var(--white);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-badge.top-badge {
  top: -16px;
  right: -16px;
}

.hero-float-badge.left-badge {
  top: -16px;
  left: -16px;
}

.hero-float-badge.bottom-badge {
  bottom: -16px;
  left: -16px;
}

.hero-float-badge.right-badge {
  bottom: -16px;
  right: -16px;
}

.float-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.float-dot.green { background: var(--green-500); }
.float-dot.orange { background: var(--brand); }
.float-dot.blue { background: var(--brand); }
.float-dot.purple { background: var(--brand); }

@media (max-width: 480px) {
  .hero { padding: 90px 16px 60px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-trust { margin-top: 24px; }
  .hero-float-badge { padding: 8px 10px; font-size: 11px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .hero-browser { transform: none; }
  .hero-float-badge.top-badge { top: 0; right: 0; }
  .hero-float-badge.left-badge { top: 0; left: 0; }
  .hero-float-badge.bottom-badge { bottom: 0; left: 0; }
  .hero-float-badge.right-badge { bottom: 0; right: 0; }
  
  /* Mobile: fit 2 CTA buttons in one line */
  .hero-ctas {
    gap: 10px;
    flex-wrap: nowrap;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
    flex: 1;
    justify-content: center;
  }
  
  .btn-primary svg {
    width: 16px;
    height: 16px;
  }
  
  /* Mobile: fit 3 trust items in one line */
  .hero-trust {
    gap: 12px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  
  .hero-trust-item {
    font-size: 11px;
    flex: 1;
    text-align: center;
    gap: 4px;
    justify-content: center;
  }
}

/* ========== STATS BAR ========== */
.stats-bar {
  padding: 48px clamp(16px, 3vw, 48px);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number span { color: var(--brand); }

.stat-label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

@media (max-width: 640px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 12px; }
}
@media (max-width: 360px) {
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats-bar { padding: 36px 16px; }
}

/* ========== PROBLEM ========== */
.problem {
  padding: 96px clamp(16px, 3vw, 48px);
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(239,68,68,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.problem-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.problem .section-label {
  color: var(--red-500);
}

.problem-title {
  color: var(--white) !important;
  max-width: 760px;
}

.problem-sub {
  color: rgba(255,255,255,0.55) !important;
  max-width: 580px;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy-900);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-500), var(--red-600));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(239,68,68,0.25);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.problem-card:hover::after {
  opacity: 1;
}

.p-icon {
  width: 48px;
  height: 48px;
  background: rgba(239,68,68,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.p-card-stat {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--red-500);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.problem-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ---- Reality bar ---- */
.problem-reality {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 36px 48px;
}

.problem-reality-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}

.pr-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 10px;
}

.pr-number span {
  font-size: 0.65em;
  opacity: 0.8;
}

.pr-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

.problem-reality-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .problem-cards { grid-template-columns: 1fr; }
  .problem-reality { flex-direction: column; gap: 28px; padding: 32px 24px; }
  .problem-reality-divider { width: 56px; height: 1px; }
  .problem-reality-item { padding: 0; }
  .pr-label { max-width: 220px; }
}
@media (max-width: 640px) {
  .problem { padding: 64px 20px; }
  .problem-card { padding: 24px 20px; }
  .section-sub { font-size: 15px; margin-bottom: 32px; }
  .problem-reality { margin-top: 40px; }
}

/* ========== DEMO PREVIEW ========== */
.demo {
  padding: 96px clamp(16px, 3vw, 48px);
  background: var(--gray-50);
}

.demo-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.demo-sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 620px !important;
}

.demo .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.demo-browsers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
}

.demo-browser-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.demo-browser {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.demo-client-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: none;
  border-radius: 0 0 14px 14px;
}

.dcr-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dcr-body {
  text-align: left;
  line-height: 1.3;
}

.dcr-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-900);
}

.dcr-location {
  font-weight: 400;
  color: var(--gray-400);
}

.dcr-outcome {
  font-size: 12px;
  color: var(--green-600);
  font-weight: 600;
  margin-top: 2px;
}

/* ---- In-section CTA strip ---- */
.demo-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  background: var(--navy-900);
  border-radius: 16px;
  padding: 28px 36px;
}

.demo-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.demo-cta-text strong {
  font-size: 17px;
  color: var(--white);
  font-family: var(--font-display);
}

.demo-cta-text span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.demo-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.d-dot { width: 11px; height: 11px; border-radius: 50%; }
.d-dot:nth-child(1) { background: #ef4444; }
.d-dot:nth-child(2) { background: #fbbf24; }
.d-dot:nth-child(3) { background: #22c55e; }

.d-url {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 6px 14px;
  border-radius: 6px;
  margin-left: 10px;
}

.demo-body {
  position: relative;
  overflow: hidden;
}

/* REPLACE THIS entire .demo-placeholder with <img src="your-demo-screenshot.png" style="width:100%;display:block;"> */
.demo-placeholder {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  padding: 48px 32px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.dp-icon { font-size: 56px; margin-bottom: 16px; }

.dp-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.dp-tag {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}

.dp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 400px;
}

.dp-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 8px;
  text-align: center;
}

.dp-item-icon { font-size: 24px; margin-bottom: 4px; }
.dp-item-label { font-size: 12px; color: rgba(255,255,255,0.6); }

.dp-cta {
  display: inline-flex;
  gap: 10px;
}

.dp-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}

.dp-btn-orange { background: var(--orange-500); color: white; }
.dp-btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }

@media (max-width: 768px) {
  .demo-cta-strip { flex-direction: column; text-align: center; padding: 28px 24px; }
  .demo-cta-text { align-items: center; text-align: center; }
  .demo-cta-strip .btn-primary { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .demo { padding: 64px 16px; }
  .demo-inner { max-width: 100%; }
  .demo-browsers-grid { grid-template-columns: 1fr; gap: 20px; }
  .demo-browser { border-radius: 10px 10px 0 0; }
  .demo-client-result { border-radius: 0 0 10px 10px; }
}
@media (max-width: 500px) {
  .dp-grid { grid-template-columns: 1fr; }
  .demo-placeholder { padding: 32px 20px; }
}

/* ========== FEATURES ========== */
.features {
  padding: 96px clamp(16px, 3vw, 48px);
  background: var(--white);
}

.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: start;
}

.features-left {
  position: sticky;
  top: 100px;
}

.features-desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 28px;
}

.features-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.features-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.features-header {
  text-align: center;
  margin-bottom: 56px;
}

.features-header .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--white);
  border-color: var(--brand);
  box-shadow: 0 8px 32px rgba(104,188,246,0.15);
  transform: translateY(-3px);
}

.f-icon {
  width: 44px;
  height: 44px;
  background: rgba(104,188,246,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s ease;
}

.feature-card:hover .f-icon {
  background: rgba(104,188,246,0.18);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .features-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-left { position: static; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .features { padding: 64px 20px; }
  .feature-card { padding: 22px 18px; }
}

/* ========== PRICING TIERS ========== */
.pricing {
  padding: 96px clamp(16px, 3vw, 48px);
  background: var(--gray-50);
}

.pricing-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-header .section-label {
  display: inline-block;
  background: rgba(104,188,246,0.1);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(104,188,246,0.25);
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.pricing-header p {
  font-size: 16px;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- comparison table ---- */
.pricing-table {
  background: var(--navy-900);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(12, 24, 41, 0.18);
}

.pt-head {
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pt-head-cell {
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
}

.pt-head-cell:first-child {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.pt-head-cell.featured {
  background: rgba(104,188,246,0.08);
  border-left: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
}

.pt-popular-badge {
  display: inline-block;
  background: var(--brand);
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.pt-tier-name {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
}

.pt-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.pt-price span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  vertical-align: super;
  font-family: var(--font-body);
}

.pt-head-cell.featured .pt-price { color: var(--brand); }

.pt-price-note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ---- feature rows ---- */
.pt-body {
  display: flex;
  flex-direction: column;
}

.pt-row {
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}

.pt-row:last-child { border-bottom: none; }

.pt-row:hover { background: rgba(255,255,255,0.03); }

.pt-feat-label {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #6ee7e7;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
}

.pt-cell {
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pt-cell.featured {
  background: rgba(104,188,246,0.05);
  border-left: 2px solid rgba(104,188,246,0.2);
  border-right: 2px solid rgba(104,188,246,0.2);
}

.pt-check {
  width: 24px;
  height: 24px;
  background: rgba(22, 163, 74, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pt-check svg { color: #4ade80; }

.pt-cross {
  width: 24px;
  height: 24px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pt-cross svg { color: #f87171; }

/* ---- CTA row ---- */
.pt-cta-row {
  display: grid;
  grid-template-columns: 220px repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}

.pt-cta-cell {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pt-cta-cell.featured {
  border-left: 2px solid rgba(104,188,246,0.2);
  border-right: 2px solid rgba(104,188,246,0.2);
  background: rgba(104,188,246,0.05);
}

.pt-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.pt-btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

.pt-btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.pt-btn-primary {
  background: var(--orange-500);
  color: var(--white);
}

.pt-btn-primary:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.35);
}

.pt-guarantee {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* mobile cards */
.pt-mobile-cards { display: none; }

@media (max-width: 900px) {
  .pt-head,
  .pt-row,
  .pt-cta-row { grid-template-columns: 140px repeat(3, 1fr); }
  .pt-feat-label { font-size: 11px; padding: 12px 10px; }
  .pt-cell { padding: 12px 6px; }
  .pt-head-cell { padding: 20px 10px 18px; }
  .pt-price { font-size: 24px; }
  .pt-cta-cell { padding: 0 8px; }
  .pt-btn { font-size: 11px; padding: 9px 8px; }
}

@media (max-width: 640px) {
  .pricing { padding: 60px 16px; }
  .pricing-table { border-radius: 16px; }
  .pt-head, .pt-body, .pt-cta-row { display: none; }
  .pt-mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }
  .pt-mobile-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 24px;
  }
  .pt-mobile-card.featured {
    border: 2px solid var(--brand);
    background: rgba(104,188,246,0.06);
  }
  .pt-mc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .pt-mc-tier {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
  }
  .pt-mc-price {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-align: right;
  }
  .pt-mobile-card.featured .pt-mc-price { color: var(--brand); }
  .pt-mc-features {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .pt-mc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
  }
  .pt-mc-features li.excluded { color: rgba(255,255,255,0.35); }
}

/* ========== PROCESS ========== */
.process {
  padding: 96px clamp(16px, 3vw, 48px);
  background: var(--gray-50);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 56px;
}

.process-sub {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

/* ---- Step row ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.p-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.p-step:hover {
  box-shadow: var(--shadow-md);
}

/* connector arrow between cards */
.p-step-connector {
  display: none;
}

.p-step-num {
  width: 44px;
  height: 44px;
  background: rgba(104,188,246,0.1);
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  color: var(--brand-dark);
  flex-shrink: 0;
  margin-bottom: 20px;
}

.p-step-time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}

.p-step-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 10px;
  line-height: 1.25;
}

.p-step-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

.p-step-content strong {
  color: var(--navy-900);
}

/* ---- Featured step (step 2) ---- */
.p-step--featured {
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 20px 60px rgba(12,24,41,0.25);
}

.p-step--featured:hover {
  box-shadow: 0 28px 72px rgba(12,24,41,0.32);
}

.p-step--featured .p-step-num {
  background: rgba(104,188,246,0.15);
  border-color: var(--brand);
  color: var(--brand);
}

.p-step--featured .p-step-time {
  color: var(--brand);
}

.p-step--featured .p-step-content h3 {
  color: var(--white);
}

.p-step--featured .p-step-content p {
  color: rgba(255,255,255,0.55);
}

.p-step--featured .p-step-content strong {
  color: var(--white);
}

.p-step-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

/* ---- Guarantee banner ---- */
.process-guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px 32px;
}

.pg-icon {
  width: 48px;
  height: 48px;
  background: var(--green-500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.pg-body {
  flex: 1;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

.pg-body strong {
  color: var(--navy-900);
}

.pg-cta {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .process-steps { grid-template-columns: 1fr; }
  .p-step--featured { margin: 4px 0; }
}
@media (max-width: 640px) {
  .process { padding: 64px 20px; }
  .process-header { margin-bottom: 40px; }
  .process-guarantee { flex-direction: column; text-align: center; padding: 24px 20px; }
  .pg-cta { width: 100%; justify-content: center; }
  .p-step { padding: 28px 22px; }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 96px clamp(16px, 3vw, 48px);
  background: var(--navy-900);
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- Header row ---- */
.testimonials-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.t-main-title {
  color: var(--white) !important;
  max-width: 560px;
  font-size: clamp(24px, 2.8vw, 34px) !important;
}

.testimonials .section-label {
  color: var(--brand);
}

.t-aggregate {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 6px;
}

.t-agg-stars {
  display: flex;
  gap: 3px;
}

.t-agg-score {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.t-agg-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-align: right;
  line-height: 1.5;
}

.t-agg-meta span {
  color: rgba(255,255,255,0.3);
}

/* ---- Featured card ---- */
.t-featured {
  background: linear-gradient(135deg, var(--navy-800), #1a3a5c);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 44px 48px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.t-featured::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 160px;
  color: rgba(104,188,246,0.1);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.t-featured-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(104,188,246,0.12);
  border: 1px solid rgba(104,188,246,0.28);
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.t-featured-result::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.t-featured-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 860px;
}

.t-featured-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-featured-stars {
  display: flex;
  gap: 2px;
  margin-left: auto;
}

.t-featured .t-name { color: var(--white); }
.t-featured .t-company { color: rgba(255,255,255,0.6); }
.t-featured .t-role { color: rgba(255,255,255,0.4); }

/* ---- Supporting grid ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.testimonial-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s ease;
}

.testimonial-card:hover {
  border-color: rgba(255,255,255,0.15);
}

.t-result-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22,163,74,0.12);
  border: 1px solid rgba(22,163,74,0.25);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}

.t-stars {
  display: flex;
  gap: 2px;
}

.t-quote {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  flex: 1;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.t-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.t-company {
  font-weight: 600;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.t-role {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.t-verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #60a5fa;
  margin-top: 4px;
}

/* ---- CTA strip ---- */
.t-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: 8px;
}

.t-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.t-cta-copy strong {
  font-size: 17px;
  color: var(--white);
  font-family: var(--font-display);
}

.t-cta-copy span {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
  .testimonials-header { flex-direction: column; gap: 24px; }
  .t-aggregate { align-items: flex-start; }
  .t-agg-meta { text-align: left; }
  .t-featured { padding: 32px 28px; }
  .t-featured-stars { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .t-cta-strip { flex-direction: column; text-align: center; padding: 24px 20px; }
  .t-cta-copy { align-items: center; }
  .t-cta-strip .btn-primary { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .testimonials { padding: 64px 20px; }
  .t-featured { padding: 28px 22px; }
  .t-featured::before { font-size: 100px; }
}

/* ========== BEFORE & AFTER ========== */
.before-after {
  padding: 96px clamp(16px, 3vw, 48px);
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.ba-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.ba-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.ba-card {
  border-radius: 20px;
  padding: 40px 36px;
  text-align: left;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.1), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
}

.ba-before {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 2px solid #fca5a5;
}

.ba-after {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 2px solid #86efac;
}

.ba-label {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-label-red {
  color: #dc2626;
  border-bottom: 3px solid #fca5a5;
}

.ba-label-green {
  color: #16a34a;
  border-bottom: 3px solid #86efac;
}

.ba-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ba-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-700);
  font-weight: 500;
  line-height: 1.6;
}

.ba-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .ba-comparison { 
    grid-template-columns: 1fr; 
    gap: 24px;
  }
  
  .ba-card {
    padding: 32px 28px;
  }
}

@media (max-width: 640px) {
  .before-after {
    padding: 72px 20px;
  }
  
  .ba-comparison { 
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}

/* ========== FAQ ========== */
.faq {
  padding: 96px clamp(16px, 3vw, 48px);
  background: var(--gray-50);
}

.faq-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.faq-list {
  margin-top: 48px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item[open] {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(104, 188, 246, 0.1);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
  color: var(--brand);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-500);
}

/* ========== CTA URGENCY ========== */
.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(104, 188, 246, 0.1);
  border: 1px solid rgba(104, 188, 246, 0.25);
  color: var(--brand);
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 100px;
  margin-top: 16px;
}

.cta-urgency strong {
  color: var(--brand);
}

/* ========== FORM GUARANTEES ========== */
.form-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.form-guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ========== FORM / CTA ========== */
.cta-section {
  padding: 96px clamp(16px, 3vw, 48px) 80px;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(104,188,246,0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-inner {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-header {
  text-align: center;
  margin-bottom: 36px;
}

.cta-section .section-label { color: var(--brand); }

.cta-section .section-title {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-section .section-title .highlight { color: var(--brand); }

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
}

.cta-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px;
}

.form-group { margin-bottom: 18px; }

.form-optional {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  margin-left: 4px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(104,188,246,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  background: var(--orange-500);
  color: var(--white);
  padding: 17px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  margin-top: 6px;
}

.form-submit:hover {
  background: var(--orange-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249,115,22,0.3);
}

.form-note {
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note svg { color: var(--green-500); }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .cta-form { padding: 24px 20px; }
  .cta-section { padding: 72px 16px; }
}
@media (max-width: 480px) {
  .cta-form { padding: 20px 16px; }
  .form-submit { font-size: 15px; padding: 15px; }
  .form-group input, .form-group textarea { font-size: 14px; padding: 11px 14px; }
}

/* ========== SERVICE AREAS ========== */
.service-areas {
  padding: 80px 24px;
  background: var(--navy-800);
}
.sa-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.sa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.sa-card {
  background: var(--navy-900);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.06);
}
.sa-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.sa-card-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.5;
}
.sa-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.sa-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sa-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.sa-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}
.sa-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
@media (max-width: 768px) {
  .sa-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .sa-areas { grid-template-columns: 1fr; }
}

/* ========== PROCESS MOBILE ========== */
@media (max-width: 640px) {
  .process { padding: 64px 20px; }
  .process-header { margin-bottom: 40px; }
  .p-step { gap: 18px; padding-bottom: 32px; }
  .p-step-num { width: 40px; height: 40px; font-size: 16px; }
  .p-step-content h3 { font-size: 17px; }
  .p-step-content p { font-size: 14px; }
}

/* ========== FOOTER ========== */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px clamp(16px, 3vw, 48px);
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  font-weight: 800;
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
}

.footer-brand img {
  height: 24px;
  width: auto;
}

.footer-brand span { color: var(--brand); }

.footer-text {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}

.footer-links { display: flex; gap: 20px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--brand); }

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Reveal: section-level elements use opacity only to avoid transform
   overflowing the scroll area and creating phantom whitespace */
section.reveal {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
section.reveal.visible {
  opacity: 1;
}

/* Non-section reveals (inner divs inside sections) get the full slide-up */
.reveal:not(section) {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible:not(section) {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   Floating Call Button
   ===================================================== */
.fab-call {
  position: fixed;
  bottom: 76px;
  right: 28px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f97316;
  color: #fff;
  text-decoration: none;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(249,115,22,.45);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  will-change: transform;
}
.fab-call:hover {
  background: #ea6d0e;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(249,115,22,.55);
}
.fab-call svg {
  flex-shrink: 0;
  animation: fab-ring 2.4s ease infinite;
}
@keyframes fab-ring {
  0%, 100% { transform: rotate(0deg); }
  10%       { transform: rotate(-18deg); }
  20%       { transform: rotate(18deg); }
  30%       { transform: rotate(-10deg); }
  40%       { transform: rotate(10deg); }
  50%       { transform: rotate(0deg); }
}
@media (max-width: 480px) {
  .fab-call__label { display: none; }
  .fab-call { padding: 16px; border-radius: 50%; bottom: 72px; right: 16px; }
}
