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

:root {
  --brand: #2563EB;
  --brand-dark: #1D4ED8;
  --brand-deeper: #1E3A8A;
  --brand-light: #DBEAFE;
  --brand-glow: rgba(37, 99, 235, 0.15);
  --accent: #10B981;
  --accent-light: #D1FAE5;
  --text: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --bg: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-muted: #F1F5F9;
  --bg-dark: #0F172A;
  --bg-dark-card: #1E293B;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.05);
  --shadow-glow: 0 0 80px rgba(37, 99, 235, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; }

/* ─── Scroll Reveal Animations ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }

/* ─── Nav ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.nav-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-wordmark {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.4px;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--brand);
  color: white;
  padding: 9px 22px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}
.nav-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 40%, #DBEAFE 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(37, 99, 235, 0.12);
  top: -100px;
  right: -100px;
  animation: glowFloat 8s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(16, 185, 129, 0.08);
  bottom: -150px;
  left: -100px;
  animation: glowFloat 10s ease-in-out infinite alternate-reverse;
}

@keyframes glowFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -20px) scale(1.1); }
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.15);
  color: var(--brand);
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, #3B82F6 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

/* ─── Browser Mockup ────────────────────────────────────── */
.browser-mockup {
  background: var(--bg-dark);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(15, 23, 42, 0.2),
    0 8px 24px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.browser-mockup:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.browser-chrome {
  background: #1E293B;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.browser-dots {
  display: flex;
  gap: 6px;
}
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #EF4444; }
.browser-dots span:nth-child(2) { background: #F59E0B; }
.browser-dots span:nth-child(3) { background: #22C55E; }

.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', monospace;
}
.browser-url svg { color: var(--accent); flex-shrink: 0; }

.browser-body {
  padding: 20px;
  background: #0F172A;
  position: relative;
}

.form-mockup {
  background: #1E293B;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}

.form-header {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.form-row:last-child { margin-bottom: 0; }

.form-field {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  padding: 8px 10px;
  position: relative;
  transition: all 0.4s ease;
  transition-delay: var(--delay, 0s);
}

.form-field.filled {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.3);
  animation: fieldFill 0.5s ease var(--delay, 0s) both;
}

@keyframes fieldFill {
  0% {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
  }
  50% {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.15);
  }
  100% {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.25);
  }
}

.form-field-full { grid-column: 1 / -1; }

.field-label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748B;
  margin-bottom: 2px;
  font-weight: 600;
}

.field-value {
  display: block;
  font-size: 12px;
  color: #E2E8F0;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

.field-check {
  position: absolute;
  top: 8px;
  right: 8px;
  color: var(--accent);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.form-field.filled .field-check {
  opacity: 1;
  transform: scale(1);
  transition-delay: calc(var(--delay, 0s) + 0.3s);
}

.fillright-badge-float {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #CBD5E1;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.fillright-badge-float img {
  border-radius: 3px;
}

.fill-time {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}

/* ─── Hero Stats ────────────────────────────────────────── */
.hero-stats {
  max-width: 1140px;
  margin: 60px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 28px;
  padding: 10px 20px;
  transition: all 0.25s ease;
}
.stat-pill:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ─── Social Proof ──────────────────────────────────────── */
.social-proof {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.proof-label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.3s ease;
  letter-spacing: -0.3px;
}
.proof-logo-text:hover { opacity: 0.8; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  padding: 12px 26px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25), 0 0 0 1px rgba(37, 99, 235, 0.1) inset;
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.3), 0 0 0 1px rgba(37, 99, 235, 0.15) inset;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(37, 99, 235, 0.04);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding-left: 4px;
}
.btn-ghost:hover { color: var(--brand); }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translate(2px, -2px); }

.btn-white {
  background: white;
  color: var(--brand);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

/* Dark section button overrides */
.section-dark .btn-outline {
  border-color: rgba(255,255,255,0.15);
  color: #CBD5E1;
}
.section-dark .btn-outline:hover {
  border-color: var(--brand);
  color: white;
  background: rgba(37, 99, 235, 0.1);
}

/* ─── Sections ──────────────────────────────────────────── */
.section { padding: 112px 0; }

.section-dark {
  background: var(--bg-dark);
  color: white;
  position: relative;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.section-dark h2 { color: white; }
.section-dark .section-sub { color: #94A3B8; }
.section-dark .section-label { color: #60A5FA; }

.section-label {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand);
  text-align: center;
  margin-bottom: 12px;
}

.section h2 {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  color: var(--text);
}

.section-sub {
  text-align: center;
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 56px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ─── Glass Card ────────────────────────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(37, 99, 235, 0.05);
  transform: translateY(-4px);
}

/* ─── Cards Row (Problem) ───────────────────────────────── */
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.card {
  padding: 36px 28px;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon-warn {
  background: #FEF3C7;
  color: #D97706;
}

.card-icon-red {
  background: #FEE2E2;
  color: #DC2626;
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ─── Steps (How It Works) ──────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.step {
  display: flex;
  gap: 20px;
}

.step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand), #3B82F6);
  color: white;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.3) 0%, transparent 100%);
  margin-top: 8px;
}

.step-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  letter-spacing: -0.2px;
}
.step-body p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.7;
}

/* ─── Features Grid ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.feature {
  padding: 32px 26px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-light);
  color: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.feature:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }

.feature-icon-green { background: #D1FAE5; color: #059669; }
.feature-icon-purple { background: #EDE9FE; color: #7C3AED; }
.feature-icon-amber { background: #FEF3C7; color: #D97706; }
.feature-icon-teal { background: #CCFBF1; color: #0D9488; }
.feature-icon-rose { background: #FFE4E6; color: #E11D48; }

.feature h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.feature p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ─── Pricing Toggle ────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 48px;
  z-index: 1;
}

.toggle-btn {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  color: #94A3B8;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 24px;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.toggle-btn.active { color: white; }
.toggle-btn:hover:not(.active) { color: #CBD5E1; }

.toggle-save {
  font-size: 10px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: var(--brand);
  border-radius: 24px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* ─── Pricing ───────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: var(--bg-dark-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.1);
}

.pricing-featured {
  border: 2px solid var(--brand);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, var(--bg-dark-card) 50%);
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.12), var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), #3B82F6);
  color: white;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 14px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.4);
}

.pricing-tier {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.price {
  font-family: 'Sora', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}

.price-amount {
  transition: transform 0.15s ease, opacity 0.15s ease;
  display: inline-block;
}

.price-dollar {
  font-size: 28px;
  font-weight: 600;
  color: #64748B;
  vertical-align: top;
  margin-right: 2px;
}

.price-period {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 4px;
}

.price-annual-note {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  min-height: 18px;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.pricing-spacer {
  height: 22px;
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  flex: 1;
}

.pricing-card li {
  padding: 9px 0;
  font-size: 14px;
  color: #CBD5E1;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card li::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-card li.li-empty {
  visibility: hidden;
  border-bottom: 1px solid transparent;
}

.pricing-card .btn { margin-top: auto; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list {
  margin-top: 56px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 0;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--brand); }

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--text-muted);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: "\2212";
  color: var(--brand);
  transform: rotate(180deg);
}

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

.faq-item p {
  font-size: 15px;
  color: var(--text-secondary);
  padding-bottom: 20px;
  line-height: 1.7;
}

/* ─── CTA ────────────────────────────────────────────────── */
.section-cta {
  background: linear-gradient(135deg, var(--brand-deeper) 0%, var(--brand) 50%, #3B82F6 100%);
  color: white;
  text-align: center;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  filter: blur(80px);
  pointer-events: none;
}

.section-cta h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  position: relative;
}

.section-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-logo {
  margin-bottom: 24px;
  border-radius: 14px;
  background: white;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-name {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: block;
  line-height: 1.2;
}

.footer-byline {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brand); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero h1 { font-size: 44px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .browser-mockup { transform: none; max-width: 560px; margin: 0 auto; }
  .browser-mockup:hover { transform: none; }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 24px 60px;
  }
  .hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { gap: 10px; }
  .stat-pill { padding: 8px 14px; }
  .stat-num { font-size: 12px; }
  .stat-label { font-size: 11px; }
  .cards-row,
  .features-grid,
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .step { gap: 16px; }
  .step-line { display: none; }
  .pricing-toggle { margin-bottom: 32px; }
  .toggle-btn { padding: 8px 20px; font-size: 13px; }
  .nav-links { display: none; }
  .nav-cta { font-size: 12px; padding: 8px 16px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-brand { flex-direction: column; }
  .section { padding: 80px 0; }
  .section h2 { font-size: 30px; }
  .section-cta h2 { font-size: 30px; }
  .social-proof { padding: 28px 0; }
  .proof-logos { gap: 20px; }
  .proof-logo-text { font-size: 13px; }
  .form-row { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .nav-inner { height: 60px; }
  .hero { padding: 100px 16px 48px; }
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
}
