/* ============================================
   SECTIONS
   ============================================ */

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}
.nav-scrolled {
  background: rgba(10,14,12,0.7);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 450;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
@media (max-width: 768px) { .nav-links { display: none; } }

/* ===== HERO ===== */
.hero {
  padding-top: 140px;
  padding-bottom: 40px;
  position: relative;
  min-height: 100vh;
  overflow: visible;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16,214,112,0.06);
  border: 1px solid rgba(16,214,112,0.2);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green);
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(16,214,112,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(16,214,112,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,214,112,0); }
}
.pill-divider { color: var(--ink-4); }

.hero h1 { margin-bottom: 28px; }
.hero .lead { margin-bottom: 40px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-foot { display: flex; flex-direction: column; }

.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 720px;
}

.floating-card {
  position: absolute;
  background: rgba(20,30,25,0.85);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.5);
  animation: float 6s ease-in-out infinite;
  z-index: 5;
  white-space: nowrap;
}
.fc-check, .fc-bell, .fc-target {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-check { background: rgba(16,214,112,0.15); color: var(--green); }
.fc-bell { background: rgba(232,217,168,0.12); color: var(--gold); }
.fc-target { background: rgba(16,214,112,0.15); color: var(--green); }

.hero-marquee {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
  background: rgba(255,255,255,0.01);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-dot { color: var(--green); opacity: 0.6; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== INTRO ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
}
.intro-text .overline { margin-bottom: 16px; }
.intro-text h2 { margin-bottom: 28px; }
.intro-text .lead { margin-bottom: 36px; }
.check-list { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 16px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.5;
}
.check-list li b { color: var(--ink); font-weight: 600; }
.check-icon {
  width: 22px; height: 22px;
  background: rgba(16,214,112,0.12);
  color: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.4s;
}
.stat-card:hover { background: var(--bg-1); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat-unit {
  font-family: var(--font-mono);
  font-size: 0.4em;
  color: var(--green);
  margin-right: 8px;
  vertical-align: top;
}
.stat-label { font-size: 14px; color: var(--ink-2); line-height: 1.4; }
.stat-sub { font-family: var(--font-mono); font-size: 11px; color: var(--ink-4); letter-spacing: 0.08em; text-transform: uppercase; }

/* ===== STEPS ===== */
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.step-card:hover { border-color: rgba(16,214,112,0.3); transform: translateY(-2px); }
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
}
.step-body h3 { font-size: 24px; margin-bottom: 6px; }
.step-body p { font-size: 15px; }
.step-line { width: 60px; height: 1px; background: var(--line-strong); }
@media (max-width: 600px) { .step-card { grid-template-columns: auto 1fr; gap: 24px; padding: 28px; } .step-line { display: none; } }

/* ===== SECURITY ===== */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) { .security-grid { grid-template-columns: 1fr; } }
.sec-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 36px;
  border-radius: var(--r-lg);
  transition: border-color 0.3s;
}
.sec-card:hover { border-color: rgba(16,214,112,0.25); }
.sec-icon {
  width: 44px; height: 44px;
  background: rgba(16,214,112,0.1);
  color: var(--green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sec-card h3 { margin-bottom: 10px; }

/* ===== INSIGHTS phone screen ===== */
.insights-screen {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 16px 14px 80px;
  gap: 14px;
  overflow: hidden;
}
.insights-header { padding: 4px 4px 8px; }
.insights-greet { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; color: var(--ink-3); margin-bottom: 4px; }
.insights-total { font-family: var(--font-display); font-size: 32px; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.insights-total span { font-size: 0.55em; color: rgba(255,255,255,0.5); }
.insights-delta { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 6px; }
.delta-up { color: var(--green); font-weight: 600; }

.insights-chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 8px;
}
.insights-cats { display: flex; flex-direction: column; gap: 8px; }
.cat-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}
.cat-info { display: inline-flex; align-items: center; gap: 6px; }
.cat-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.cat-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
.cat-bar span { display: block; height: 100%; border-radius: 999px; }
.cat-val { font-family: var(--font-mono); font-size: 10px; opacity: 0.7; text-align: right; }

.insights-tip {
  display: flex; gap: 10px; align-items: center;
  background: rgba(16,214,112,0.08);
  border: 1px solid rgba(16,214,112,0.2);
  border-radius: 10px;
  padding: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.tip-avatar { flex-shrink: 0; }
.insights-tip b { color: #fff; }

/* ===== Wall of Love ===== */
.proof-head { text-align: center; margin-bottom: 64px; }
.proof-head .overline { margin-bottom: 14px; }
.proof-meta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-2);
  flex-wrap: wrap;
  justify-content: center;
}
.proof-rating { display: inline-flex; align-items: center; gap: 10px; }
.proof-stars { color: var(--gold); letter-spacing: 1px; font-size: 13px; }
.proof-rating b { color: var(--ink); }
.proof-divider { width: 1px; height: 18px; background: var(--line-strong); }

/* ===== PRICING (2 planos) ===== */
.pricing { padding-top: 100px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 540px; }
}

.plan-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.plan-card:hover { border-color: rgba(255,255,255,0.18); transform: translateY(-3px); }

.plan-card-featured {
  background: linear-gradient(180deg, rgba(20,32,25,0.95), rgba(13,22,17,0.98));
  border-color: rgba(16,214,112,0.35);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6), 0 0 60px -10px rgba(16,214,112,0.18);
}
.plan-card-featured:hover { border-color: rgba(16,214,112,0.55); }

.plan-glow {
  position: absolute; inset: -1px;
  border-radius: var(--r-xl);
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(16,214,112,0.18), transparent 60%);
  pointer-events: none;
}
.plan-ribbon {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--green);
  color: #032814;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 0 0 8px 8px;
}

.plan-head { margin-bottom: 28px; position: relative; }
.plan-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 12px;
  color: var(--ink);
}
.plan-tagline {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
  max-width: 38ch;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
  position: relative;
}
.plan-currency { font-size: 22px; color: var(--ink-2); }
.plan-amount { font-size: 80px; line-height: 1; color: var(--ink); font-weight: 400; }
.plan-cents { font-size: 22px; color: var(--ink-2); font-family: var(--font-mono); align-self: flex-start; margin-top: 12px; }
.plan-period { font-size: 16px; color: var(--ink-3); font-family: var(--font-body); margin-left: 6px; }

.plan-sub {
  color: var(--ink-3);
  font-size: 13px;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}
.plan-feature-included {
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 4px;
}
.plan-mini {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.plan-btn {
  width: 100%;
  justify-content: center;
}

.pricing-foot {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 13px;
  color: var(--ink-4);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.pricing-foot .dot { color: var(--ink-4); opacity: 0.4; }

/* ===== Nota explicativa do trial ===== */
.trial-note {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 22px 28px;
  background: linear-gradient(180deg, rgba(232,217,168,0.04), rgba(232,217,168,0.02));
  border: 1px solid var(--border-gold, rgba(232,217,168,0.18));
  border-radius: 16px;
  text-align: center;
}
.trial-note-head { margin-bottom: 12px; }
.trial-note-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 12px;
  border: 1px solid rgba(232,217,168,0.25);
  border-radius: 999px;
  background: rgba(232,217,168,0.06);
}
.trial-note p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0 auto;
}
.trial-note p b { color: var(--ink); font-weight: 600; }

/* ===== TALK TO RICH (QR Code) ===== */
.talk-to-rich {
  position: relative;
  padding: 140px 0 120px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.talk-to-rich::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center top, rgba(0, 200, 100, 0.04) 0%, transparent 60%);
  opacity: 0.7;
}
.talk-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 720px;
}
.talk-inner .overline {
  margin-bottom: 0;
}
.talk-qr-wrap {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 200, 100, 0.08), 0 0 0 1px rgba(0, 200, 100, 0.06) inset;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.talk-qr-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background: linear-gradient(135deg, transparent 30%, rgba(0, 200, 100, 0.18) 60%, transparent 90%);
  z-index: -1;
  opacity: 0.6;
}
.talk-qr-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(0, 200, 100, 0.14), 0 0 0 1px rgba(0, 200, 100, 0.12) inset;
}
.talk-qr {
  display: block;
  width: 320px;
  height: 320px;
  border-radius: 12px;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
.talk-title {
  margin: 0;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-weight: 500;
}
.talk-title .accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
.talk-sub {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 560px;
}
.talk-quotes {
  display: inline-block;
  margin: 6px 0;
  color: var(--ink-3);
  font-style: italic;
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .talk-to-rich { padding: 80px 0 80px; }
  .talk-inner { gap: 32px; }
  .talk-qr-wrap { padding: 18px; border-radius: 22px; }
  .talk-qr { width: 240px; height: 240px; }
  .talk-title { font-size: clamp(36px, 10vw, 52px); }
  .talk-sub { font-size: 15px; padding: 0 16px; }
}

@media (max-width: 480px) {
  .talk-qr { width: 200px; height: 200px; }
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  padding: 180px 0 200px;
  overflow: hidden;
  text-align: center;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 1200px 600px at 50% 30%, rgba(16,214,112,0.15), transparent 65%),
    radial-gradient(ellipse 800px 400px at 50% 100%, rgba(16,214,112,0.08), transparent 70%);
}
.final-cta-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(16,214,112,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16,214,112,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 75%);
  opacity: 0.5;
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16,214,112,0.08);
  border: 1px solid rgba(16,214,112,0.25);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}
.final-overline .dotpulse {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--green);
  animation: pulseRing 2s infinite;
}

.final-headline {
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-wrap: balance;
}

.final-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-2);
  max-width: 48ch;
  margin: 0 auto 56px;
  line-height: 1.5;
  text-wrap: balance;
}

.final-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}
.final-mainbtn {
  padding: 24px 48px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.15) inset,
    0 0 60px -8px var(--green-glow),
    0 20px 60px -20px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}
.final-mainbtn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease-out);
}
.final-mainbtn:hover::before { transform: translateX(100%); }
.final-mainbtn .btn-arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.final-mainbtn:hover .btn-arrow { transform: translateX(4px); }

.final-microcopy {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.final-microcopy b { color: var(--ink); font-weight: 500; }
.final-microcopy .dot { color: var(--ink-4); opacity: 0.5; }

.final-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--line-strong), transparent);
  margin-bottom: 60px;
}

.final-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  border: 1px solid var(--line);
  margin-bottom: 48px;
}
@media (max-width: 600px) { .final-trust { grid-template-columns: 1fr; } }
.ft-item {
  background: rgba(13,20,17,0.5);
  backdrop-filter: blur(8px);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.ft-num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.ft-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
  vertical-align: middle;
}
.ft-label {
  font-size: 13px;
  color: var(--ink-3);
}

.final-foot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-3);
  font-style: italic;
  font-family: var(--font-display);
  letter-spacing: -0.005em;
}

@media (max-width: 980px) {
  .features-head h2 br { display: none; }
  .rich-orbit-stage { max-width: 380px; }
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); transition: background 0.3s; }
.faq-item:hover { background: rgba(255,255,255,0.01); }
.faq-q {
  width: 100%;
  padding: 28px 8px;
  background: none;
  border: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
}
.faq-chev {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: transform 0.4s var(--ease-out), background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-chev {
  transform: rotate(180deg);
  background: var(--green);
  color: #032814;
  border-color: var(--green);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}
.faq-a > div { overflow: hidden; }
.faq-a > div > * { padding: 0 8px 28px; color: var(--ink-2); font-size: 15px; line-height: 1.6; max-width: 60ch; }
.faq-a > div { color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > div { padding-bottom: 28px; padding-left: 8px; padding-right: 8px; max-width: 60ch; }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-h {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer a {
  display: block;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.2s;
  cursor: pointer;
}
.footer a:hover { color: var(--ink); }
.footer-badges { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink-3);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-4);
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; gap: 12px; } }

/* features section heading */
.features-head { max-width: 760px; margin: 0 auto 100px; text-align: center; }
.features-head .lead { margin-left: auto; margin-right: auto; }
