/* ============================================================
   DRILLO BARBER — Landing Page Campeã de Vendas
   Design: dark luxury, editorial serif + clean sans, gold accent
   ============================================================ */

/* ── TOKENS ── */
:root {
  --bg:           #050608;
  --bg-2:         #0a0b10;
  --surface:      #0f1118;
  --surface-2:    #151822;
  --surface-3:    #1a1e2b;
  --gold:         #c9a227;
  --gold-bright:  #f0c84a;
  --gold-light:   #f5dfa0;
  --gold-dark:    #7d5c0e;
  --gold-glow:    rgba(201, 162, 39, 0.22);
  --text:         #f2f2f0;
  --muted:        #8a8fa8;
  --muted-2:      #b0b4c8;
  --border:       rgba(255,255,255,0.07);
  --border-gold:  rgba(201, 162, 39, 0.20);
  --success:      #22c55e;
  --warn:         #f59e0b;
  --radius-sm:    0.6rem;
  --radius:       1rem;
  --radius-lg:    1.6rem;
  --radius-xl:    2.4rem;
  color-scheme: dark;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  /* Subtle grain texture */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
strong { font-weight: 700; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 1.02;
}
h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
}
h3 {
  font-size: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

/* ── LAYOUT HELPERS ── */
.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}
.section {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 6rem 0;
}

/* ── SCROLL REVEAL ── */
.reveal, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  transform: translateX(32px);
}
.reveal.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── EYEBROW ── */
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-gold);
  background: rgba(201, 162, 39, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.eyebrow-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── BUTTONS ── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button.primary {
  color: #080909;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 55%, var(--gold-dark) 100%);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.30), inset 0 1px 0 rgba(255,255,255,0.18);
}
.button.primary:hover {
  box-shadow: 0 14px 40px rgba(201, 162, 39, 0.45), inset 0 1px 0 rgba(255,255,255,0.18);
}
.button.secondary {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}
.button.secondary:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.14);
}
.button.large {
  min-height: 56px;
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
.button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

.text-link {
  color: var(--gold-bright);
  font-weight: 600;
  border-bottom: 1px solid var(--border-gold);
  transition: color 0.2s, border-color 0.2s;
}
.text-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem clamp(1rem, 4vw, 4rem);
  background: rgba(5, 6, 8, 0.85);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.brand img { border-radius: var(--radius-sm); }

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}
.nav a { transition: color 0.2s; }
.nav a:hover { color: var(--text); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-bright);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-gold);
  background: rgba(201, 162, 39, 0.07);
  transition: background 0.2s, border-color 0.2s;
}
.header-cta:hover { background: rgba(201, 162, 39, 0.14); border-color: var(--gold); }

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 6px var(--gold-bright);
  animation: blink 2s infinite;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 90vh;
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
  padding: 5rem 0 4rem;
}

.hero-bg-orb {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 65% 40%, rgba(201, 162, 39, 0.10), transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201, 162, 39, 0.06), transparent 60%);
  z-index: -1;
}

.hero-copy .eyebrow { margin-bottom: 1.4rem; }

.hero h1 { margin-bottom: 1.5rem; }

.hero-text {
  color: var(--muted-2);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 540px;
  margin-bottom: 0;
}
.hero-text strong { color: var(--text); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2.2rem 0 2.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.hero-stats div {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  background: linear-gradient(135deg, rgba(21, 24, 34, 0.9), rgba(10, 11, 16, 0.8));
}
.hero-stats dt {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold-bright);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
}
.hero-stats dd {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
}

/* ── Phone Mockup ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.14), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.phone-frame {
  width: min(340px, 100%);
  border-radius: var(--radius-xl);
  background: #06070c;
  border: 1.5px solid rgba(201, 162, 39, 0.30);
  box-shadow:
    0 0 0 6px rgba(201, 162, 39, 0.06),
    0 40px 100px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.1rem 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.phone-icons { letter-spacing: 0.08em; font-size: 0.62rem; }
.phone-inner { padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }

.phone-top-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.phone-top-bar img { border-radius: 0.5rem; flex-shrink: 0; }
.phone-top-bar strong { display: block; font-size: 0.92rem; }
.phone-top-bar span { display: block; font-size: 0.72rem; color: var(--muted); }
.open-badge {
  margin-left: auto;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.revenue-card {
  padding: 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #151822, #0c0e16);
  border: 1px solid var(--border-gold);
}
.revenue-card > span { font-size: 0.75rem; color: var(--muted); display: block; }
.revenue-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.25rem 0 0.1rem;
  line-height: 1;
}
.revenue-card small { font-size: 0.72rem; color: var(--muted); display: block; margin-bottom: 0.75rem; }
.revenue-bar {
  height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.revenue-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
}
.revenue-goal { font-size: 0.68rem; color: var(--gold); margin-top: 0.4rem; display: block; }

.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.phone-card {
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.phone-card span:first-child { font-size: 0.7rem; color: var(--muted); }
.phone-card strong { font-size: 1.1rem; }

.trend {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
}
.trend.up { background: rgba(34, 197, 94, 0.12); color: var(--success); }
.trend.warn { background: rgba(245, 158, 11, 0.12); color: var(--warn); }

.phone-barbers {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.barber-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
}
.barber-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}
.barber-info { flex: 1; }
.barber-info strong { display: block; font-size: 0.82rem; }
.barber-info span { display: block; font-size: 0.68rem; color: var(--muted); }
.barber-val { font-size: 0.88rem; color: var(--gold-bright); }

.quick-sale {
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.9rem;
  color: #06070c;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}
.quick-sale:hover { opacity: 0.9; }

/* ═══════════════════════════════════
   SOCIAL STRIP
═══════════════════════════════════ */
.social-strip {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: 2rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.social-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.badge-pill {
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted-2);
}

/* ═══════════════════════════════════
   PAIN SECTION
═══════════════════════════════════ */
.section-heading.centered { max-width: 640px; margin-inline: auto; text-align: center; }
.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 0.75rem;
}
.section-heading.centered .section-sub { margin-inline: auto; }

.pain-section {
  background: linear-gradient(180deg, transparent 0%, rgba(201, 162, 39, 0.03) 50%, transparent 100%);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 3rem 0 2rem;
}
.pain-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.25s, transform 0.25s;
}
.pain-card:hover {
  border-color: rgba(201, 162, 39, 0.25);
  transform: translateY(-4px);
}
.pain-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.pain-card h3 { margin-bottom: 0.6rem; font-size: 1rem; }
.pain-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }
.pain-cta-text { text-align: center; color: var(--muted); font-size: 1rem; }

/* ═══════════════════════════════════
   FEATURES
═══════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.feature-card {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.2rem;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.30);
}
.feature-num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.2rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: rgba(201, 162, 39, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
  align-items: center;
}
.feature-body h3 { margin-bottom: 0.6rem; }
.feature-body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; }
.feature-list { color: var(--muted-2); font-size: 0.85rem; display: flex; flex-direction: column; gap: 0.35rem; }
.feature-list li::before { content: '→ '; color: var(--gold); font-weight: 700; }

/* ═══════════════════════════════════
   REPORTS (SPLIT)
═══════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-copy h2 { margin-bottom: 1.2rem; }
.split-copy p { color: var(--muted); margin-bottom: 1.4rem; }
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--muted-2);
  font-size: 0.92rem;
}
.check-list li::before { content: '✓  '; color: var(--gold-bright); font-weight: 800; }

.report-panel {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-gold);
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.report-period { font-size: 0.78rem; color: var(--muted); }
.report-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.kpi {
  padding: 0.9rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.kpi > span:first-child { font-size: 0.72rem; color: var(--muted); }
.kpi > strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.kpi-trend { font-size: 0.7rem; font-weight: 700; }
.kpi-trend.up { color: var(--success); }

.report-rows { margin-bottom: 1.2rem; }
.report-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.report-row:last-child { border-bottom: none; }
.report-row span { color: var(--muted); }
.report-row strong { color: var(--gold-bright); }

.heatmap-wrap { }
.heatmap-label { font-size: 0.72rem; color: var(--muted); margin-bottom: 0.6rem; }
.heatmap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
}
.heatmap i {
  display: block;
  height: 2rem;
  border-radius: 0.4rem;
  background: rgba(201, 162, 39, calc(var(--v, 0.1) * 0.85));
}
.heatmap-legend {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
  font-size: 0.65rem;
  color: var(--muted);
}

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testimonials-section .section-heading { margin-bottom: 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.testimonial-card {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.25s, transform 0.25s;
}
.testimonial-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.testimonial-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.stars {
  color: var(--gold-bright);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}
.testimonial-card p {
  color: var(--muted-2);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.t-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gold-bright);
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}
.testimonial-card footer strong { display: block; font-size: 0.88rem; }
.testimonial-card footer span { display: block; font-size: 0.75rem; color: var(--muted); }

/* ═══════════════════════════════════
   PLAN
═══════════════════════════════════ */
.plan-section { }
.plan-intro {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.plan-intro p { color: var(--muted); margin-top: 0.8rem; }

.plan-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 800px;
  margin-inline: auto;
}
.plan-cards-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1160px;
}
.plan-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}
.plan-cards-4 .plan-card:first-child { border-color: var(--border-gold); }
.plan-highlight {
  border-color: var(--border-gold) !important;
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  box-shadow: 0 20px 60px rgba(201, 162, 39, 0.12);
}
.plan-economy {
  font-size: 0.78rem;
  color: var(--gold);
  margin: -0.8rem 0 1.2rem;
  font-weight: 600;
}
.plan-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(201, 162, 39, 0.10);
  color: var(--gold-bright);
  border: 1px solid var(--border-gold);
  margin-bottom: 1rem;
  width: fit-content;
}
.plan-badge.pro {
  background: rgba(139, 92, 246, 0.10);
  color: #a78bfa;
  border-color: rgba(139, 92, 246, 0.25);
}
.plan-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--gold-bright);
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
}
.plan-price span { font-size: 1.2rem; margin-top: 0.6rem; }
.plan-price small { font-size: 1rem; color: var(--muted); align-self: flex-end; margin-bottom: 0.4rem; font-family: 'Outfit', sans-serif; }
.plan-price-soon { font-size: 1.6rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: var(--muted-2);
  font-size: 0.9rem;
}
.plan-list li { border-bottom: 1px solid var(--border); padding-bottom: 0.55rem; }
.plan-list li:last-child { border-bottom: none; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: var(--border-gold); }
.faq-item summary {
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.5rem 1.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ═══════════════════════════════════
   BETA CTA
═══════════════════════════════════ */
.beta-section {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
  margin-bottom: 5rem;
}
.beta-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-gold);
  background: linear-gradient(145deg, var(--surface-2) 0%, var(--surface) 100%);
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.06) inset,
    0 40px 100px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.beta-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.08), transparent 70%);
  pointer-events: none;
}

.beta-copy .eyebrow { margin-bottom: 1.2rem; }
.beta-copy h2 { margin-bottom: 1rem; }
.beta-copy p { color: var(--muted); max-width: 520px; margin-bottom: 0; }
.beta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1rem;
}
.beta-disclaimer { font-size: 0.78rem; color: var(--muted); }

.beta-logo {
  display: flex;
  justify-content: center;
}
.beta-logo img {
  width: 100%;
  max-width: 220px;
  border-radius: var(--radius-lg);
  opacity: 0.92;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--text);
}
.footer-brand img { border-radius: 0.4rem; }
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a { transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-bright); }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid > :last-child { grid-column: span 2; }
}

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }
  .hero-visual { order: -1; }
  .phone-frame { max-width: 320px; }
  .phone-glow { display: none; }

  .split-section {
    grid-template-columns: 1fr;
  }
  .plan-cards {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .plan-cards-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
  .beta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .beta-logo { display: none; }
  .beta-actions { justify-content: center; }
  .beta-copy p { margin-inline: auto; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 2.8rem 1fr; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.6rem, 12vw, 3.5rem); }
  h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); }

  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .hero-stats dt { font-size: 1.1rem; }

  .pain-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid > :last-child { grid-column: auto; }

  .plan-cards,
  .plan-cards-4 { grid-template-columns: 1fr; }

  .beta-inner { padding: 2rem 1.5rem; }

  .social-strip { gap: 0.75rem; }
  .social-strip > span { width: 100%; }

  .report-kpis { grid-template-columns: 1fr; }
}
