@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Bricolage+Grotesque:wght@400;600;700;800&display=swap');

/* ── TOKENS ── */
:root {
  --purple:       #6a1db5;
  --purple-dark:  #4e1288;
  --purple-light: #8b3fd1;
  --purple-xlight:#f0e8fb;
  --purple-glow:  rgba(106,29,181,0.22);
  --white:        #ffffff;
  --bg:           #faf8ff;
  --bg2:          #f3eefe;
  --surface:      #ffffff;
  --border:       #e2d5f5;
  --text:         #1a0a2e;
  --muted:        #7b6a9a;
  --green:        #16a34a;

  --shadow-sm:  0 2px 12px rgba(106,29,181,0.08);
  --shadow-md:  0 8px 32px rgba(106,29,181,0.14);
  --shadow-lg:  0 20px 60px rgba(106,29,181,0.18);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 99px; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  height: 68px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 20px rgba(106,29,181,0.06);
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.35rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em;
}
.logo-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 4px 14px var(--purple-glow);
}
.logo em { color: var(--purple); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--purple); }
.nav-cta {
  background: var(--purple) !important;
  color: #fff !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 16px var(--purple-glow);
}
.nav-cta:hover { background: var(--purple-dark) !important; box-shadow: 0 6px 22px var(--purple-glow) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--purple); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 999;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 1.5rem 6%; flex-direction: column; gap: 1.2rem;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.95rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 6% 5rem;
  position: relative; overflow: hidden;
}

/* Purple geometric background */
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(106,29,181,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(106,29,181,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid dots */
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(var(--border) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  opacity: 0.6;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 4rem; align-items: center; width: 100%; max-width: 1200px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--purple-xlight); border: 1px solid var(--border);
  padding: 0.38rem 0.9rem; border-radius: 999px;
  font-size: 0.76rem; font-weight: 600; color: var(--purple);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.7s ease both;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 2px rgba(22,163,74,0.25); }

.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero h1 .accent { color: var(--purple); }

.hero p {
  font-size: 1.05rem; color: var(--muted);
  max-width: 480px; margin-bottom: 2.4rem; line-height: 1.8;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.7s ease 0.3s both; }

/* .hero-trust {
  display: flex; align-items: center; gap: 1rem; margin-top: 2rem;
  font-size: 0.82rem; color: var(--muted);
  animation: fadeUp 0.7s ease 0.4s both;
} */
.star-rating { color: #f59e0b; letter-spacing: 1px; }

/* ── Logo Image ── */
.logo-img {
  height: 32px; width: auto;
  border-radius: 6px;
  display: block;
}

/* ── Extension Preview Card ── */
.ext-preview-wrap {
  animation: fadeUp 0.7s ease 0.2s both;
  position: relative;
}
.ext-preview-wrap::before {
  content: '';
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse, rgba(106,29,181,0.14) 0%, transparent 70%);
  pointer-events: none;
}

/* Real screenshot frame */
.ext-screenshot-frame {
  position: relative; z-index: 1;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(106,29,181,0.12),
    0 30px 80px rgba(106,29,181,0.22),
    0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  background: #fff;
}
.ext-screenshot-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.ext-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(106,29,181,0.08);
  overflow: hidden;
  position: relative;
}

.ext-card-header {
  background: var(--purple);
  padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.ext-card-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.ext-card-title { color: #fff; }
.ext-card-title h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 0.01em; }
.ext-card-title p { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; margin-top: 1px; }
.ext-card-signout {
  margin-left: auto; background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  padding: 0.3rem 0.9rem; border-radius: 999px;
  font-size: 0.73rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 0.4rem;
}

.ext-card-body { padding: 1.2rem 1.4rem; }

.ext-field { margin-bottom: 1rem; }
.ext-field label {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 0.35rem;
}
.ext-field input, .ext-field textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 0.55rem 0.85rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem; color: var(--muted); background: var(--bg);
  resize: none; outline: none;
}
.ext-field textarea { height: 70px; }
.email-count { text-align: right; font-size: 0.68rem; color: var(--muted); margin-top: 0.2rem; }

/* Rich text toolbar */
.toolbar {
  display: flex; align-items: center; gap: 0.3rem;
  background: var(--purple-xlight); border-radius: 6px;
  padding: 0.35rem 0.5rem; margin-bottom: 0.4rem; flex-wrap: wrap;
}
.toolbar button {
  background: none; border: none; cursor: pointer;
  font-size: 0.78rem; font-weight: 700; color: var(--text);
  padding: 0.2rem 0.4rem; border-radius: 4px; transition: background 0.15s;
}
.toolbar button:hover { background: rgba(106,29,181,0.12); }
.toolbar .sep { width: 1px; height: 14px; background: var(--border); margin: 0 0.2rem; }

.ext-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; align-items: start; margin-bottom: 0.8rem; }

.delay-block label, .sig-block label {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 0.35rem;
}
.delay-input-wrap { display: flex; align-items: center; gap: 0.4rem; }
.delay-input-wrap input {
  width: 60px; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 0.5rem; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem; font-weight: 600; text-align: center;
  background: var(--bg); color: var(--text); outline: none;
}
.delay-input-wrap span { font-size: 0.82rem; color: var(--muted); }

.sig-row { display: flex; align-items: center; gap: 0.6rem; }
.toggle {
  width: 38px; height: 22px; border-radius: 999px;
  background: var(--purple); position: relative; cursor: pointer; flex-shrink: 0;
}
.toggle::after {
  content: ''; position: absolute; right: 3px; top: 3px;
  width: 16px; height: 16px; border-radius: 50%; background: #fff;
}
.sig-text { font-size: 0.78rem; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; }

.status-box {
  background: var(--bg2); border-radius: 8px;
  padding: 0.6rem 0.85rem; font-size: 0.78rem; color: var(--muted);
  margin-bottom: 0.8rem;
}

.send-btn-full {
  width: 100%; background: var(--purple); color: #fff;
  border: none; border-radius: 10px; padding: 0.75rem;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: 0 4px 16px var(--purple-glow); transition: background 0.2s;
}
.send-btn-full:hover { background: var(--purple-dark); }

.ext-card-footer { padding: 0.6rem 1.4rem 1rem; text-align: center; }
.ext-card-footer p { font-size: 0.68rem; color: var(--muted); margin-bottom: 0.3rem; }
.ext-card-footer a { font-size: 0.68rem; color: var(--purple); font-weight: 600; text-decoration: none; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--purple); color: #fff;
  padding: 0.75rem 1.8rem; border-radius: 10px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  box-shadow: 0 4px 20px var(--purple-glow);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 8px 28px var(--purple-glow); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--purple);
  border: 2px solid var(--purple);
  padding: 0.72rem 1.75rem; border-radius: 10px;
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--purple); color: #fff; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent; color: var(--purple);
  padding: 0.72rem 1.75rem; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost:hover { background: var(--purple-xlight); }

/* ══════════════════════════════
   SECTION COMMONS
══════════════════════════════ */
section { padding: 6rem 6%; }

.section-eyebrow {
  display: inline-block;
  background: var(--purple-xlight); color: var(--purple);
  padding: 0.3rem 0.9rem; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 1rem;
}
.section-title .accent { color: var(--purple); }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 520px; margin-bottom: 3rem; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto 3rem; }

/* ══════════════════════════════
   FEATURE CARDS
══════════════════════════════ */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 1.5rem; }

.feature-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 14px; padding: 1.8rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(106,29,181,0.25); }

.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--purple-xlight);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.feature-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.45rem; }
.feature-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

/* ══════════════════════════════
   STEPS
══════════════════════════════ */
.steps-list { display: flex; flex-direction: column; gap: 2rem; }
.step-item { display: grid; grid-template-columns: 52px 1fr; gap: 1.2rem; align-items: flex-start; position: relative; }
.step-item:not(:last-child)::after {
  content: ''; position: absolute;
  left: 25px; top: 52px; bottom: -2rem; width: 2px;
  background: linear-gradient(to bottom, var(--purple), transparent);
}
.step-num {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--purple); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.1rem;
  box-shadow: 0 4px 16px var(--purple-glow); flex-shrink: 0; position: relative; z-index: 1;
}
.step-body h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; padding-top: 0.5rem; }
.step-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }

/* ══════════════════════════════
   DIVIDER / BAND
══════════════════════════════ */
.divider { border: none; border-top: 1.5px solid var(--border); }
.purple-band {
  background: var(--purple);
  padding: 5rem 6%; text-align: center; position: relative; overflow: hidden;
}
.purple-band::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.05); pointer-events: none;
}
.purple-band::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.04); pointer-events: none;
}
.purple-band h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; color: #fff; margin-bottom: 0.8rem; }
.purple-band p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1rem; }
.purple-band .btn-primary { background: #fff; color: var(--purple); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.purple-band .btn-primary:hover { background: #f0e8fb; }
.purple-band .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.purple-band .btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ══════════════════════════════
   PAGE HEADER
══════════════════════════════ */
.page-header {
  padding: 9rem 6% 5rem; text-align: center;
  border-bottom: 1.5px solid var(--border);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(106,29,181,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800;
  letter-spacing: -0.03em; position: relative;
}
.page-header h1 .accent { color: var(--purple); }
.page-header p { color: var(--muted); margin-top: 0.8rem; font-size: 1rem; position: relative; }

/* ══════════════════════════════
   HIGHLIGHT BOX
══════════════════════════════ */
.hbox {
  background: var(--purple-xlight); border-left: 3px solid var(--purple);
  padding: 1.2rem 1.5rem; border-radius: 0 10px 10px 0; margin: 1.2rem 0;
}
.hbox strong { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.2rem; }
.hbox p { color: var(--muted); font-size: 0.87rem; }

/* ══════════════════════════════
   TWO COL / THREE COL
══════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ══════════════════════════════
   FORM
══════════════════════════════ */
.form-wrap { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 2.5rem; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin-bottom: 0.45rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg); border: 1.5px solid var(--border);
  color: var(--text); padding: 0.75rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem;
  border-radius: 9px; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(106,29,181,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ══════════════════════════════
   CONTACT INFO
══════════════════════════════ */
.info-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; padding: 1.2rem;
}
.info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--purple-xlight);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.info-card h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--purple); margin-bottom: 0.2rem; }
.info-card p { color: var(--muted); font-size: 0.88rem; }

/* ══════════════════════════════
   POLICY
══════════════════════════════ */
.policy-wrap {
  max-width: 780px; margin: 0 auto;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 16px; padding: 3rem;
  box-shadow: var(--shadow-sm);
}
.policy-wrap h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--purple); margin: 2.5rem 0 0.7rem; }
.policy-wrap h2:first-child { margin-top: 0; }
.policy-wrap p { color: var(--muted); margin-bottom: 0.9rem; font-size: 0.92rem; line-height: 1.8; }
.policy-wrap ul { color: var(--muted); padding-left: 1.5rem; margin-bottom: 0.9rem; font-size: 0.92rem; }
.policy-wrap li { margin-bottom: 0.4rem; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--text); color: rgba(255,255,255,0.7);
  padding: 4.5rem 6% 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { color: #fff; margin-bottom: 0.7rem; }
.footer-logo .logo-icon { background: rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; max-width: 220px; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(106,29,181,0.9); margin-bottom: 1rem; }
/* override purple in dark footer */
footer .footer-col h4 { color: var(--purple-light); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom a { color: var(--purple-light); text-decoration: none; }
.sarvodaya { color: var(--purple-light) !important; font-weight: 600; }

/* ══════════════════════════════
   PRICING CARD
══════════════════════════════ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 16px; padding: 2rem;
}
.pricing-card.popular {
  border: 2px solid var(--purple);
  box-shadow: 0 0 0 4px rgba(106,29,181,0.08);
  position: relative;
}
.pop-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--purple); color: #fff;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 1rem; border-radius: 999px;
}
.price-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--purple); margin: 0.8rem 0; }
.price-val span { font-size: 1rem; color: var(--muted); }
.pricing-card h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.1rem; }
.pricing-card .sub { color: var(--muted); font-size: 0.83rem; margin-bottom: 1.5rem; }
.pricing-card ul { list-style: none; margin-bottom: 1.8rem; display: flex; flex-direction: column; gap: 0.5rem; }
.pricing-card li { font-size: 0.87rem; color: var(--muted); display: flex; align-items: center; gap: 0.5rem; }
.pricing-card li::before { content: '✓'; color: var(--purple); font-weight: 700; font-size: 0.85rem; }

/* ══════════════════════════════
   ANIMATIONS & REVEAL
══════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
.reveal { opacity:0; transform:translateY(20px); transition:opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .ext-preview-wrap { max-width: 460px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 5%; }
  .page-header { padding: 8rem 5% 4rem; }
  .hero { padding: 7rem 5% 4rem; }
  .three-col { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 1.5rem; }
  .policy-wrap { padding: 1.5rem; }
  .purple-band { padding: 4rem 5%; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { text-align: center; justify-content: center; }
}
