/* ===================================================
   ContractorAI – Marketing Page Styles
   =================================================== */

:root {
  --electric-blue:   #0057FF;
  --neon-cyan:       #00D4FF;
  --deep-navy:       #020B1A;
  --dark-card:       #0A1628;
  --card-border:     #132244;
  --accent-orange:   #FF6B2B;
  --soft-white:      #E8F0FF;
  --muted:           #AABFDA;
  --gradient-hero:   linear-gradient(135deg, #020B1A 0%, #040F28 50%, #071533 100%);
  --gradient-accent: linear-gradient(135deg, #0057FF, #00D4FF);
  --gradient-fire:   linear-gradient(135deg, #FF6B2B, #FF3E8A);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--deep-navy);
  color: var(--soft-white);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cyan  { color: var(--neon-cyan); }
.orange { color: var(--accent-orange); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5%;
  background: rgba(2, 11, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 87, 255, 0.15);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo span {
  color: var(--accent-orange);
  -webkit-text-fill-color: var(--accent-orange);
}

.nav-cta {
  background: var(--gradient-accent);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(0, 87, 255, 0.4);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(0, 87, 255, 0.6); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 5% 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 87, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--neon-cyan);
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0;
}

@keyframes float {
  0%   { opacity: 0; transform: translateY(100%) translateX(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh) translateX(40px); }
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 87, 255, 0.15);
  border: 1px solid rgba(0, 87, 255, 0.4);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon-cyan);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00FF88;
  box-shadow: 0 0 8px #00FF88;
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .highlight { background: var(--gradient-accent); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-title .fire      { color: var(--accent-orange); -webkit-text-fill-color: var(--accent-orange); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.75rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── FORM CARD ── */
.form-card {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 180, 255, 0.45);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 1;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 20px 20px 0 0;
}

.form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.form-sub { font-size: 0.85rem; color: #b8ccee; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon-cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(0, 150, 255, 0.35);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus { border-color: var(--electric-blue); box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.15); }
.form-group select option { background: var(--dark-card); }

/* Services checkboxes */
.services-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon-cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 150, 255, 0.3);
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.checkbox-item:hover { border-color: rgba(0, 87, 255, 0.5); background: rgba(0, 87, 255, 0.07); }
.checkbox-item input[type="checkbox"] { display: none; }
.checkbox-item input[type="checkbox"]:checked + .cb-box { background: var(--gradient-accent); border-color: transparent; }
.checkbox-item input[type="checkbox"]:checked + .cb-box::after { opacity: 1; }
.checkbox-item:has(input:checked) { border-color: var(--electric-blue); background: rgba(0, 87, 255, 0.1); }

.cb-box {
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 2px solid var(--card-border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all 0.2s;
}
.cb-box::after {
  content: '✓';
  position: absolute;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.15s;
}
.cb-text  { font-size: 0.8rem; font-weight: 500; line-height: 1.3; }
.cb-icon  { font-size: 1rem; flex-shrink: 0; }

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--gradient-accent);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.4);
  letter-spacing: 0.02em;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 87, 255, 0.6); }
.privacy-note { text-align: center; font-size: 0.72rem; color: var(--muted); margin-top: 10px; }

/* ── SECTIONS ── */
section { padding: 80px 5%; }

.section-tag {
  display: inline-block;
  background: rgba(0, 87, 255, 0.12);
  border: 1px solid rgba(0, 87, 255, 0.3);
  color: var(--neon-cyan);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  padding: 0 18px;
}

/* Flip card container */
.service-card {
  height: 280px;
  perspective: 1000px;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 20px;
  padding: 0;
  position: relative;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: var(--dark-card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.card-front {
  transform: rotateY(0deg) translateZ(2px);
}

.card-front::before,
.card-back::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 20px 20px 0 0;
}

.card-back {
  transform: rotateY(180deg) translateZ(2px);
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.12), rgba(0, 20, 60, 0.95));
  border-color: rgba(0, 87, 255, 0.4);
  justify-content: center;
}

.service-card.featured .card-front,
.service-card.selected .card-front {
  border-color: rgba(0, 87, 255, 0.4);
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.08), rgba(0, 20, 60, 0.8));
}

.service-icon  { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.service-name  { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700; margin: 0 0 12px; color: var(--soft-white); }
.service-desc  { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

.service-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.service-bullets li { color:orange; display: flex; align-items: flex-start; gap: 10px; font-size: 0.84rem; color: var(--soft-white); }
.service-bullets li::before { content: '→'; color: var(--neon-cyan); flex-shrink: 0; font-weight: 700; }

/* ── HOW IT WORKS ── */
.how-section { background: linear-gradient(180deg, rgba(0, 87, 255, 0.04) 0%, transparent 100%); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.step-card  { text-align: center; }
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 0 24px rgba(0, 87, 255, 0.5);
}
.step-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.step-desc  { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }

.step-num-1 { background: linear-gradient(135deg, #0057FF, #00D4FF); box-shadow: 0 0 24px rgba(0, 87, 255, 0.55); }
.step-num-2 { background: linear-gradient(135deg, #7B2FFF, #C471ED); box-shadow: 0 0 24px rgba(123, 47, 255, 0.55); }
.step-num-3 { background: linear-gradient(135deg, #FF6B2B, #FF3E8A); box-shadow: 0 0 24px rgba(255, 107, 43, 0.55); }
.step-num-4 { background: linear-gradient(135deg, #00C896, #00D4FF); box-shadow: 0 0 24px rgba(0, 200, 150, 0.55); }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-14px); }
  60%       { transform: translateY(-7px); }
}

.step-card:hover .step-num {
  animation: bounce 0.7s ease both;
}

/* ── PRICING ── */
.pricing-section { background: var(--deep-navy); }
.pricing-header  { text-align: center; }
.pricing-header .section-sub { margin: 0 auto 56px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); }

.pricing-card.popular {
  border-color: var(--electric-blue);
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.1), rgba(0, 20, 60, 0.9));
  box-shadow: 0 0 48px rgba(0, 87, 255, 0.25);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 87, 255, 0.4);
  white-space: nowrap;
}

.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.plan-price { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.plan-price sup    { font-size: 1.4rem; vertical-align: top; margin-top: 12px; color: var(--muted); }
.plan-price .period { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-price .old-price { font-size: 1.6rem; color: var(--muted); text-decoration: line-through; margin-right: 8px; opacity: 0.6; }
.plan-setup  { font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; }
.plan-setup strong { color: var(--accent-orange); }
.plan-tagline {
  font-size: 0.88rem;
  color: var(--soft-white);
  line-height: 1.5;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--card-border);
}
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; }
.plan-features li .feat-icon { font-size: 1rem; flex-shrink: 0; }
.plan-features li .feat-text  { color: var(--soft-white); line-height: 1.4; }
.plan-features li.dimmed .feat-text { color: var(--muted); }

.plan-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
  text-align: center;
}
.plan-btn.primary {
  background: var(--gradient-accent);
  border: none;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.35);
}
.plan-btn.primary:hover { box-shadow: 0 12px 32px rgba(0, 87, 255, 0.55); transform: translateY(-2px); }
.plan-btn.outline  { background: transparent; border: 2px solid var(--card-border); color: var(--soft-white); }
.plan-btn.outline:hover  { border-color: var(--electric-blue); color: var(--neon-cyan); }

.plan-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 12px; }

/* Intro banner */
.intro-banner {
  max-width: 700px;
  margin: 40px auto 0;
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.12), rgba(255, 107, 43, 0.05));
  border: 1px solid rgba(255, 107, 43, 0.3);
  border-radius: 16px;
  padding: 24px 32px;
  text-align: center;
}
.intro-banner-fire  { font-size: 1.4rem; margin-bottom: 8px; }
.intro-banner-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--accent-orange); margin-bottom: 8px; }
.intro-banner-text  { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.intro-banner-text strong { color: var(--soft-white); }
.intro-banner-text .cyan  { color: var(--neon-cyan); font-weight: 700; }

/* ── SOCIAL PROOF ── */
.proof-section { background: linear-gradient(180deg, rgba(0, 87, 255, 0.03) 0%, var(--deep-navy) 100%); }
.proof-section .section-sub { margin-bottom: 48px; }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.proof-card {
  background: var(--dark-card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 28px;
}
.stars    { color: #FFB800; font-size: 1.1rem; margin-bottom: 14px; }
.quote    { font-size: 0.9rem; color: var(--soft-white); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.avatar-blue { background: var(--gradient-accent); }
.avatar-fire { background: var(--gradient-fire); }
.avatar-cyan { background: linear-gradient(135deg, #00D4FF, #0057FF); }

.reviewer-info .name { font-weight: 700; font-size: 0.9rem; }
.reviewer-info .biz  { font-size: 0.78rem; color: var(--muted); }

/* ── BOTTOM CTA ── */
.cta-section {
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.12) 0%, rgba(0, 212, 255, 0.06) 100%);
  border-top: 1px solid rgba(0, 87, 255, 0.2);
  border-bottom: 1px solid rgba(0, 87, 255, 0.2);
  text-align: center;
  padding: 80px 5%;
}
.cta-section .section-title { max-width: 680px; margin: 0 auto 16px; }
.cta-section .section-sub   { margin: 0 auto 40px; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 87, 255, 0.4);
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0, 87, 255, 0.55); }

.btn-secondary {
  background: transparent;
  color: var(--soft-white);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); }

/* ── FOOTER ── */
footer {
  padding: 40px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--card-border);
  flex-wrap: wrap;
  gap: 16px;
}
footer .logo { font-size: 1.1rem; }
footer p { font-size: 0.8rem; color: var(--muted); }
.footer-links { font-size: 0.75rem; color: var(--muted); }

/* ── MODAL ── */
.modal-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }

.modal {
  background: var(--dark-card);
  border: 1px solid rgba(0, 87, 255, 0.3);
  border-radius: 24px;
  padding: 44px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: #fff; }
.modal-icon  { font-size: 3rem; margin-bottom: 16px; }
.modal-title { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.modal-body  { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.modal-body strong { color: var(--neon-cyan); }
.modal-ok   { width: 100%; }

/* ── ANIMATIONS (scroll-driven via JS) ── */
.anim-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-sub   { margin: 0 auto 36px; }
  .hero-badge { margin: 0 auto 24px; }
  .form-row   { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
  footer { text-align: center; justify-content: center; }
}

@media (max-width: 500px) {
  .hero, section { padding: 80px 5% 60px; }
  .form-card  { padding: 24px 20px; }
  .pricing-card { padding: 28px 20px; }
}
