*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ── TOKENS ── */
:root {
  /* Deep space backgrounds */
  --bg:          #050510;
  --bg-1:        #0A0A1F;
  --bg-2:        #0F0F2A;

  /* Aurora accents */
  --violet:      #7C3AED;
  --violet-h:    #8B5CF6;
  --cyan:        #06B6D4;
  --cyan-h:      #22D3EE;
  --pink:        #F472B6;
  --pink-h:      #F9A8D4;

  /* Legacy aliases (referenced by existing rules) */
  --orange:      #7C3AED;
  --orange-h:    #8B5CF6;
  --orange-glow: rgba(124,58,237,0.25);
  --yellow:      #7C3AED;
  --yellow-btn:  #7C3AED;
  --yellow-h:    #8B5CF6;

  /* Green — checkmarks, success */
  --green:       #10B981;
  --green-light: #34D399;

  /* Text on dark background */
  --white:       #F8FAFC;
  --off-white:   #F8FAFC;
  --muted:       rgba(248,250,252,0.78);
  --dim:         rgba(248,250,252,0.50);
  --faint:       rgba(248,250,252,0.08);
  --border:      rgba(248,250,252,0.10);
  --border-2:    rgba(248,250,252,0.06);

  /* Glass card surfaces */
  --card-bg:     rgba(15,15,42,0.60);
  --card-bg-2:   rgba(20,20,55,0.50);
  --card-text:   #F8FAFC;
  --card-muted:  rgba(248,250,252,0.78);
  --card-dim:    rgba(248,250,252,0.50);
  --card-border: rgba(248,250,252,0.10);

  --on-accent: #FFFFFF;

  --serif-d: 'Fraunces', Georgia, serif;
  --serif-b: 'Cinzel', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --mono:    'Space Grotesk', system-ui, sans-serif;
  --t: 0.18s ease;
}

/* ── UTILITY: GRADIENT TEXT ── */
.grad-text {
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 50%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── UTILITY: GRAIN OVERLAY ── */
.grain::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── UTILITY: SCROLL REVEAL ── */
[data-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);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"] {
  transform: translateX(-28px);
}
[data-reveal="left"].in-view {
  transform: translateX(0);
}
[data-reveal="right"] {
  transform: translateX(28px);
}
[data-reveal="right"].in-view {
  transform: translateX(0);
}
[data-reveal="scale"] {
  transform: scale(0.95);
}
[data-reveal="scale"].in-view {
  transform: scale(1);
}

/* ── LANG ── */
body.lang-en .t-es { display: none; }
body.lang-es .t-en { display: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
.nav.scrolled {
  background: rgba(5,5,16,0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: rgba(124,58,237,0.15);
}
.nav-brand {
  font-family: var(--serif-b);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--off-white);
  display: flex; align-items: center; gap: 10px;
}
.nav-dot {
  width: 8px; height: 8px;
  background: var(--violet);
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-pill {
  display: flex;
  background: var(--faint);
  border: 1px solid var(--border);
  border-radius: 99px; padding: 3px; gap: 2px;
}
.lang-btn {
  padding: 4px 12px; border: none; border-radius: 99px;
  background: transparent;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  font-family: var(--sans);
  color: var(--muted); cursor: pointer; transition: all 0.2s;
}
.lang-btn.active {
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  color: #fff;
}
.nav-cta {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  color: #fff; border-radius: 6px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.25s;
  display: inline-block;
  box-shadow: 0 0 20px rgba(124,58,237,0.25);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(124,58,237,0.45);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.28) 0%, transparent 70%);
  bottom: -300px; left: 30%;
  animation: meshDrift1 12s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.22) 0%, transparent 70%);
  top: 5%; right: 10%;
  animation: meshDrift2 15s ease-in-out infinite alternate;
  pointer-events: none;
}
/* Third aurora blob — pink */
.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,114,182,0.16) 0%, transparent 70%);
  top: 30%; left: 5%;
  animation: meshDrift3 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(80px, -60px) scale(1.15); }
}
@keyframes meshDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-60px, 40px) scale(1.1); }
}
@keyframes meshDrift3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(50px, -30px) scale(1.2); }
}

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(124,58,237,0.35);
  background: rgba(124,58,237,0.10);
  color: var(--white);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px; border-radius: 99px;
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.hero-label-dot {
  width: 5px; height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-family: var(--serif-d);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.15em;
  position: relative; z-index: 1;
  animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 60%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 300; line-height: 1.8;
  color: var(--muted);
  max-width: 460px;
  margin: 1.5rem auto 2.75rem;
  position: relative; z-index: 1;
  animation: fadeUp 0.9s 0.12s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-btns {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 12px;
  position: relative; z-index: 1;
  animation: fadeUp 0.9s 0.22s cubic-bezier(0.16,1,0.3,1) both;
}
.btn-main {
  padding: 16px 38px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 0 0 1px rgba(124,58,237,0.4), 0 4px 30px rgba(124,58,237,0.35);
}
.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.6), 0 8px 40px rgba(124,58,237,0.5);
}
.btn-ghost {
  padding: 15px 26px; color: var(--white);
  border: 1px solid rgba(124,58,237,0.3); border-radius: 10px;
  font-size: 14px; font-weight: 400;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s;
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--violet);
  background: rgba(124,58,237,0.08);
}

.hero-fine {
  margin-top: 1.75rem; font-size: 12px; color: var(--dim);
  letter-spacing: 0.04em; position: relative; z-index: 1;
}
.hero-fine strong { color: var(--muted); font-weight: 500; }

/* ── TICKER ── */
.ticker {
  border-top: 1px solid rgba(124,58,237,0.15);
  border-bottom: 1px solid rgba(124,58,237,0.15);
  background: var(--bg-1);
  padding: 12px 0; overflow: hidden; white-space: nowrap;
}
.ticker-track { display: inline-flex; gap: 2.5rem; animation: tick 22s linear infinite; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dim);
  display: inline-flex; align-items: center; gap: 10px;
}
.tick-sep {
  width: 3px; height: 3px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  border-radius: 50%; opacity: 0.8;
}

/* ── SECTIONS ── */
section { position: relative; }
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
.pad { padding: 7rem 0; }
.pad-sm { padding: 5rem 0; }

/* ── EYEBROW ── */
.eyebrow {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 1rem;
}

/* ── SECTION HEADLINES ── */
.h2 {
  font-family: var(--serif-d);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300; line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.01em;
}
.h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h3 {
  font-family: var(--serif-d);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300; line-height: 1.2;
  color: var(--white); letter-spacing: -0.01em;
}
.h3 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.body-text { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.80; }
.rule {
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  display: block; margin: 1.25rem 0;
  border-radius: 2px;
}

/* ── FEATURES (BENTO GRID) ── */
.what-bg {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.what-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 3.5rem;
}
.what-cell:first-child {
  grid-row: 1 / 3;
}
.what-cell {
  background: rgba(15,15,42,0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(248,250,252,0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.what-cell:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(124,58,237,0.12);
}
.what-num {
  font-family: var(--serif-d);
  font-size: 3.2rem; font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.what-title {
  font-size: 15px; font-weight: 600;
  color: var(--white); margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.what-desc { font-size: 13.5px; color: var(--muted); line-height: 1.70; }

/* ── SPLIT ── */
.split {
  display: flex; align-items: center; gap: 5rem; flex-wrap: wrap;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.split.rev { flex-direction: row-reverse; }
.split-t { flex: 1; min-width: 280px; }
.split-v { flex: 1; min-width: 280px; display: flex; justify-content: center; }

.check-list { list-style: none; margin-top: 1.5rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--muted);
  padding: 9px 0; border-bottom: 1px solid var(--border-2);
  line-height: 1.55;
}
.check-list li:last-child { border-bottom: none; }
.check-ico {
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--green);
  border: 1px solid rgba(16,185,129,0.30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-ico svg { width: 10px; height: 10px; }

/* ── PHONE (FLOATING) ── */
.phone {
  width: 238px;
  background: #080818;
  border-radius: 34px; padding: 10px;
  box-shadow:
    0 0 0 1px rgba(124,58,237,0.2),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(124,58,237,0.12);
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.phone-screen { background: #F5F0E8; border-radius: 26px; overflow: hidden; }
.ph-hdr {
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  padding: 18px 14px 13px; text-align: center;
}
.ph-brand { font-family: var(--serif-b); font-size: 10.5px; font-weight: 500; letter-spacing: 0.22em; color: #fff; }
.ph-sub { font-size: 6px; color: rgba(255,255,255,0.60); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 2px; }
.ph-nav { display: flex; background: #fff; border-bottom: 1px solid #E5E7EB; padding: 4px 3px; gap: 1px; }
.ph-tab { flex: 1; font-size: 5px; text-align: center; padding: 3px 1px; border-radius: 3px; color: #9CA3AF; line-height: 1.3; }
.ph-tab.on { background: #7C3AED; color: #fff; }
.ph-body { padding: 9px; }
.ph-cal { background: #fff; border: 1px solid #E8DDD0; border-radius: 6px; padding: 6px; margin-bottom: 6px; }
.ph-cal-lbl { font-size: 6px; font-weight: 700; color: #1A1035; margin-bottom: 4px; letter-spacing: 0.04em; }
.ph-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 1px; }
.ph-d { text-align: center; font-size: 5px; padding: 2.5px 0; border-radius: 3px; color: #4A4A5A; line-height: 1.2; }
.ph-dh { color: #9CA3AF !important; font-weight: 600; font-size: 4.5px !important; }
.ph-empty { visibility: hidden; }
.ph-d.sel { background: #7C3AED; color: #fff; font-weight: 600; }
.ph-d.dot::after { content:''; display:block; width:2.5px;height:2.5px;background:#7C3AED;border-radius:50%;margin:0.5px auto 0; }
.ph-appt { display:flex; gap:5px; align-items:flex-start; background:#fff; border-radius:4px; padding:5px 6px; margin-bottom:4px; border-left:2px solid #7C3AED; }
.ph-t { font-size:5.5px; font-weight:700; color:#7C3AED; min-width:20px; }
.ph-dog { font-size:5.5px; font-weight:600; color:#1C1208; }
.ph-svc { font-size:5px; color:#6B7280; margin-top:1px; }

/* ── PRICING (3 TIERS — GLASSMORPHISM) ── */
.pricing-bg {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-tiers {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  max-width: 920px; margin: 3.5rem auto 0; align-items: start;
}
.price-tier {
  background: rgba(15,15,42,0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(248,250,252,0.08);
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.price-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(124,58,237,0.15);
}
.price-tier.featured {
  border: none;
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    linear-gradient(135deg, var(--violet), var(--cyan), var(--pink)) border-box;
  border: 2px solid transparent;
  box-shadow: 0 0 60px rgba(124,58,237,0.2);
}
.price-tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 99px; white-space: nowrap;
}
.price-tier-name {
  font-family: var(--serif-d); font-size: 19px; font-weight: 400;
  color: var(--card-text); margin-bottom: 4px;
}
.price-tier-blurb { font-size: 12px; color: var(--card-dim); margin-bottom: 1.25rem; }
.price-tier-amount {
  font-family: var(--serif-d); font-size: 44px; font-weight: 300;
  color: var(--white); line-height: 1;
}
.price-tier-amount .curr {
  font-size: 18px; vertical-align: top; margin-right: 2px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-tier-period { font-size: 12px; color: var(--card-dim); margin: 4px 0 1.5rem; }
.price-tier-list { list-style: none; margin-bottom: 1.75rem; text-align: left; }
.price-tier-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--card-muted);
  padding: 7px 0; border-bottom: 1px solid rgba(248,250,252,0.06);
}
.price-tier-list li:last-child { border-bottom: none; }
.p-check {
  width: 16px; height: 16px; flex-shrink: 0;
  background: var(--green);
  border: 1px solid rgba(16,185,129,0.40);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.p-check svg { width: 9px; height: 9px; }
.btn-buy {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  color: #fff;
  border: none; border-radius: 10px;
  font-size: 13.5px; font-weight: 700; font-family: var(--sans);
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(124,58,237,0.30);
  text-decoration: none;
}
.btn-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(124,58,237,0.45);
}
.pricing-note { margin-top: 2rem; font-size: 12px; color: var(--dim); text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }
.vs-strip {
  margin: 1.5rem auto 0; padding: 12px 16px; max-width: 640px;
  background: rgba(124,58,237,0.07);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 8px;
  font-size: 13px; color: var(--muted); line-height: 1.6; text-align: center;
}
.vs-strip strong { color: var(--cyan); }

/* ── COMPARISON TABLE ── */
.compare-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compare-table {
  width: 100%; border-collapse: collapse;
  margin-top: 3rem; font-size: 14px;
}
.compare-table th {
  padding: 1rem 1.25rem; text-align: center;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  border-bottom: 2px solid var(--border);
  color: var(--muted);
}
.compare-table th.col-us {
  background: rgba(124,58,237,0.15);
  border: 2px solid var(--violet);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  color: var(--violet);
}
.compare-table td {
  padding: 0.85rem 1.25rem; text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  vertical-align: middle;
  transition: background 0.2s;
}
.compare-table tr:hover td {
  background: rgba(124,58,237,0.04);
}
.compare-table td.col-us {
  background: rgba(124,58,237,0.08);
  border-left: 2px solid rgba(124,58,237,0.3);
  border-right: 2px solid rgba(124,58,237,0.3);
  color: var(--card-text);
  font-weight: 500;
}
.compare-table tr:last-child td.col-us {
  border-bottom: 2px solid var(--violet);
  border-radius: 0 0 10px 10px;
}
.compare-table td:first-child {
  text-align: left; color: var(--muted); font-size: 13px;
  font-weight: 500;
}
.compare-tick  { color: var(--green-light); font-size: 16px; }
.compare-cross { color: #F87171; font-size: 16px; }
.compare-dim   { color: var(--dim); font-size: 12px; }
.compare-table td.col-us .compare-dim { color: var(--card-dim); }
.compare-price { font-family: var(--serif-d); font-size: 17px; font-weight: 300; }
.compare-price-sub { font-size: 11px; color: var(--dim); display: block; margin-top: 2px; }
.compare-table td.col-us .compare-price-sub { color: var(--card-dim); }

/* ── TESTIMONIALS ── */
.testimonials-bg { background: var(--bg-1); border-top: 1px solid var(--border); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 3.5rem;
}
.t-card {
  background: rgba(15,15,42,0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(248,250,252,0.08);
  border-radius: 16px; padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.t-card:hover {
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(124,58,237,0.12);
}
.t-stars {
  font-size: 13px; letter-spacing: 2px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.t-quote {
  font-family: var(--serif-d);
  font-size: 14.5px; font-weight: 300; font-style: italic;
  color: var(--card-text); line-height: 1.72;
  margin-bottom: 1.25rem;
}
.t-name { font-size: 12px; font-weight: 600; color: var(--card-muted); letter-spacing: 0.06em; }
.t-biz  { font-size: 11px; color: var(--card-dim); margin-top: 2px; }

/* ── FAQ ── */
.faq-bg { background: var(--bg-2); border-top: 1px solid var(--border); }
.faq-wrap { max-width: 640px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(248,250,252,0.06); }
.faq-q {
  padding: 1.15rem 0;
  font-size: 15px; font-weight: 400; color: var(--white);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--cyan); }
.faq-q::after {
  content: '+'; font-size: 22px;
  color: var(--cyan); font-weight: 300;
  flex-shrink: 0; transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--cyan); }
.faq-a {
  font-size: 14px; color: var(--muted); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.15rem; }

/* ── CTA BOTTOM ── */
.cta-bg {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center; padding: 7rem 2rem;
  position: relative; overflow: hidden;
}
.cta-bg::before {
  content: '';
  position: absolute; bottom: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.20) 0%, rgba(6,182,212,0.10) 40%, transparent 70%);
  pointer-events: none;
}
.cta-bg::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(180deg, transparent, var(--violet));
}

/* ── FOOTER ── */
.footer {
  background: #030308;
  border-top: 1px solid rgba(124,58,237,0.12);
  padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-brand {
  font-family: var(--serif-b); font-size: 12px; letter-spacing: 0.20em;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 12px; color: var(--dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--muted); }
.footer-copy { font-size: 11px; color: rgba(248,250,252,0.30); }
.footer-contact { font-size: 12px; color: var(--dim); }
.footer-contact a { color: var(--dim); transition: color 0.2s; }
.footer-contact a:hover { color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .nav { padding: 0 1.25rem; }
  .what-grid { grid-template-columns: 1fr; }
  .what-cell:first-child { grid-row: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .split { gap: 2.5rem; }
  .footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .pricing-tiers { grid-template-columns: 1fr; max-width: 380px; }
}
@media (max-width: 600px) {
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 0.65rem 0.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-h1,.hero-sub,.hero-btns { animation: none; }
  .ticker-track { animation: none; }
  .phone { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
