/* ══════════════════════════════════════════
   DESIGN SYSTEM — SANTORO & SPURI
   Dark Premium · Jurídico · Gold accent
══════════════════════════════════════════ */

:root {
  --gold:         #ab8a37 0%, #f8f2d6 50%, #ab8a37 100%;
  --gold-light:   #E8C96D;
  --gold-dim:     #8a6c2a;
  --gold-rgb:     201, 168, 76;

  --bg:           #111111;
  --bg-alt:       #151515;
  --bg-surface:   rgba(255, 255, 255, 0.03);
  --bg-card:      rgba(255, 255, 255, 0.045);

  --glass-border: rgba(201, 168, 76, 0.12);
  --glass-blur:   20px;

  --text:         #EDE8DC;
  --text-sec:     #9B9585;
  --text-muted:   #5C574E;

  --green-dark:   #0e4d2d;
  --green-wa:     #1a7a45;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    22px;

  --shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md:    0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg:    0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-gold:  0 4px 32px rgba(201, 168, 76, 0.18);
}

/* ══ RESET ══ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ══ TYPOGRAPHY ══ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.5rem, 5.2vw, 3.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.35rem); }
p  { color: var(--text-sec); line-height: 1.85; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ══ GOLD GRADIENT TEXT ══ */
.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══ DIVIDER ══ */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0 28px;
}

.divider.center {
  margin: 20px auto 28px;
}

/* ══ BADGE ══ */
.badge {
  display: inline-flex;
  align-items: left;
  padding: 15px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}


@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ══ GLASS CARD ══ */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid #dbbb6141;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(201, 168, 76, 0.06);
  transform: translateY(-3px);
}

/* ══ CTA BUTTONS ══ */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0800;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: all 0.25s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.38);
}

.cta-primary.full-width {
  width: 100%;
  justify-content: center;
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.cta-ghost:hover {
  background: rgba(201, 168, 76, 0.07);
  border-color: var(--gold);
}

.cta-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding-bottom: 2px;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
  transition: color 0.2s, border-color 0.2s;
}

.cta-text:hover {
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

/* ══ FLOATING NAVBAR ══ */
.navbar {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  gap: 100px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: rgba(8, 10, 14, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  z-index: 200;
  transition: background 0.3s;
}

.navbar.scrolled {
  background: rgba(8, 10, 14, 0.95);
}

.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.navbar-logo span {
  color: var(--gold);
}

/* ══ GRADIENT ORBS ══ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07), transparent 70%);
}

.orb-2 {
  width: 400px;
  height: 400px;
  bottom: -80px;
  left: -100px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05), transparent 70%);
}

.orb-3 {
  width: 600px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04), transparent 70%);
}

/* ══ SECTIONS ══ */
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-alt {
  background: var(--bg-alt);
}

/* ══ HERO ══ */
.hero {
  padding: 160px 0 100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero h1 {
  margin-bottom: 22px;
}

.hero .sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-sec);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ══ TRUST BAR ══ */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 72px;
  border: 1px solid #dbbb6141;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.trust-item {
  padding: 28px 24px;
  background: var(--bg-card);
  text-align: center;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.trust-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══ PAIN LIST ══ */
.pain-list {
  list-style: none;
}

.pain-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
  color: var(--text-sec);
}

.pain-list li:last-child {
  border-bottom: none;
}

.pain-icon {
  color: var(--gold-dim);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ══ HIGHLIGHT BOX ══ */
.highlight-box {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), rgba(201, 168, 76, 0.02));
  border: 1px solid #dbbb6141;
  border-radius: var(--radius-lg);
  padding: 36px;
}

.highlight-box p {
  color: var(--text-sec);
  font-size: 0.95rem;
  margin-top: 12px;
}

/* ══ TESTIMONIALS ══ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-sec);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
}

.author-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══ COMPARE TABLE ══ */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

table.compare th {
  background: rgba(201, 168, 76, 0.07);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  text-align: center;
}

table.compare td {
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-sec);
  text-align: center;
}

table.compare tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

.check { color: #4ade80; font-weight: 700; }
.cross { color: #f87171; font-weight: 700; }

/* ══ URGENCY STRIP ══ */
.urgency-strip {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 40px;
}

.urgency-strip i {
  color: var(--gold);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.urgency-strip p {
  font-size: 0.9rem;
  color: var(--text-sec);
}

.urgency-strip strong {
  color: var(--text);
}

/* ══ STEPS ══ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: flex-start;
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #C3AA69;
  line-height: 1;
  min-width: 48px;
  flex-shrink: 0;
}

.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p  { font-size: 0.88rem; }

/* ══ DIFF LIST ══ */
.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.diff-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-sec);
}

.diff-list li i {
  color: var(--gold);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ══ FAQ ══ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  background: var(--bg-card);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}

.faq-q:hover {
  background: rgba(201, 168, 76, 0.05);
}

.faq-q i {
  color: var(--gold);
  font-size: 12px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-q.open i {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 24px;
  font-size: 0.88rem;
  color: var(--text-sec);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a.open {
  max-height: 300px;
  padding: 16px 24px 20px;
}

/* ══ CLOSING SECTION ══ */
.closing-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.closing-card p {
  margin-top: 16px;
  font-size: 0.95rem;
}

/* ══ TWO COL ══ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ══ SECTION TAG ══ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 18px;
  justify-content:center;
}

/* ══ WHATSAPP FLOAT ══ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-wa));
  border: 2px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(26, 122, 69, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-pulse 3s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.whatsapp-float i {
  color: var(--gold-light);
  font-size: 26px;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 0 0   rgba(26, 122, 69, 0.5); }
  70%  { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 0 14px rgba(26, 122, 69, 0); }
  100% { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 0 0   rgba(26, 122, 69, 0); }
}

/* ══ MODAL ══ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #0f1318;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px 40px 40px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(201, 168, 76, 0.08);
  position: relative;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 20px;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--text);
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.modal h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.modal p.modal-sub {
  font-size: 0.85rem;
  color: var(--text-sec);
  margin-bottom: 28px;
}

.modal input {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.modal input::placeholder {
  color: var(--text-muted);
}

.modal input:focus {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.modal-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

/* ══ FOOTER ══ */
footer {
  padding: 30px 0 30px;
  border-top: 1px solid var(--glass-border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.footer-logo span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.footer-links button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links button:hover {
  color: var(--gold);
}

.footer-legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ══ NAV LINKS ══ */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links button:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ══ HAMBURGER ══ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid #dbbb6141;
  border-radius: 5px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #C3AA69;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══ SCROLL ANIMATIONS ══ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

[data-animate] { opacity: 0; }

[data-animate].is-visible {
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-animate="fade-up"].is-visible    { animation-name: fadeInUp; }
[data-animate="fade-scale"].is-visible { animation-name: fadeInScale; }
[data-animate="slide-left"].is-visible { animation-name: slideLeft; }
[data-animate="slide-right"].is-visible { animation-name: slideRight; }

[data-stagger] > *:nth-child(1) { --d: 0s; }
[data-stagger] > *:nth-child(2) { --d: 0.12s; }
[data-stagger] > *:nth-child(3) { --d: 0.24s; }
[data-stagger] > *:nth-child(4) { --d: 0.36s; }
[data-stagger] > *:nth-child(5) { --d: 0.48s; }
[data-stagger] > *:nth-child(6) { --d: 0.6s; }

[data-stagger] > * { opacity: 0; }

[data-stagger].is-visible > * {
  animation: fadeInUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0s);
}

/* ══ REDUCED MOTION ══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate],
  [data-stagger] > * {
    opacity: 1 !important;
  }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .two-col          { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .trust-bar        { margin-top: 30px; grid-template-columns: 1fr 1fr; }
  .urgency-strip i { margin-top:10px; }
  .urgency-strip p { text-align: left; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 640px) {
  section        { padding: 64px 0; }
  .hero          { padding: 120px 0 64px; }
  .hero-ctas     { flex-direction: column; align-items: flex-start; }
  .cta-primary,
  .cta-ghost     { width: 100%; justify-content: center; }
  .trust-bar     { margin-top: 30px; grid-template-columns: 1fr 1fr; }
  .navbar        { top: 8px; left: 8px; right: 8px; padding: 12px 18px; }
  .modal         { padding: 36px 24px 28px; }
  .orb           { display: none; }

  /* Menu mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(8, 10, 14, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links button {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    font-size: 0.92rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .urgency-strip i { margin-top:10px; }
  .urgency-strip p { text-align: left; }
  .nav-hamburger { display: flex; }
}
