/* ==========================================================================
   Salomón · Amarres y Hechicería para el Amor
   Archetype: Cinematic Astral Storytelling (dark cosmic + gold + violet)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Jost:ital,wght@0,300;0,400;0,500;0,600;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg:            #0a0614;
  --bg-2:          #120a22;
  --bg-3:          #1b1030;
  --card:          #17102a;
  --ink:           #f2ecff;
  --ink-soft:      #cfc0ea;
  --ink-mute:      #8f7fae;
  --gold:          #d9b859;
  --gold-soft:     #c9a961;
  --violet:        #8b5cf6;
  --violet-soft:   #a78bfa;
  --violet-deep:   #4c2c8f;
  --crimson:       #e11d48;
  --crimson-soft:  #fb7185;
  --line:          rgba(242,236,255,0.10);
  --line-strong:   rgba(242,236,255,0.18);

  --font-display:  'Cinzel', serif;
  --font-body:     'Jost', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  --space-1: 8px;  --space-2: 16px; --space-3: 24px; --space-4: 32px;
  --space-5: 48px; --space-6: 64px; --space-7: 96px; --space-8: 140px;

  --radius-sm: 8px; --radius-md: 16px; --radius-lg: 28px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-2);
  color: var(--ink);
}
h1 em, h2 em, h3 em { font-style: normal; color: var(--gold); }
p { margin: 0 0 var(--space-2); color: var(--ink-soft); }
.container { width: min(1180px, 100% - 48px); margin-inline: auto; }
section { position: relative; padding: var(--space-7) 0; }
@media (max-width: 640px) { section { padding: var(--space-6) 0; } .container { width: min(1180px, 100% - 32px); } }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: var(--space-2);
}
.kicker::before { content: ""; width: 22px; height: 1px; background: var(--gold-soft); }

/* ---- Reveal defensive CSS (gotcha A.4.5) ---- */
.reveal[data-split] { opacity: 1; transform: none; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Starfield / astral canvas ----
   Two layered canvases share the same fixed full-viewport slot:
   1) 2D canvas (data-starfield, main.js) — draws instantly, zero deps,
      always the first thing the visitor sees.
   2) WebGL canvas (data-astral-3d, astral-scene.js) — Three.js particle
      scene with bloom, loaded from CDN. Fades in on top ONLY once it has
      actually initialized; otherwise stays at opacity 0 forever and the
      2D layer underneath is all the visitor ever sees. Either order is a
      complete, working background. */
.astral-canvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at 20% 0%, rgba(139,92,246,0.16), transparent 55%),
              radial-gradient(ellipse at 85% 20%, rgba(217,184,89,0.10), transparent 50%),
              var(--bg);
  transition: opacity 1.1s var(--ease);
}
.astral-canvas.is-hidden { opacity: 0; }
.astral-canvas-3d {
  background: none; opacity: 0; transition: opacity 1.4s var(--ease);
}
.astral-canvas-3d.is-active { opacity: 1; }
/* ---- Union de Vínculos — chrome ring accent (chrome-scene.js) ----
   Full-bleed section with a slowly spinning gold/bronze ring rendered via
   Three.js (assets/data/chain.glb). The canvas is purely additive: if WebGL
   or the model fails to load, the gradient background + text below still
   read fine on their own. */
.union-section {
  position: relative; overflow: hidden; min-height: 78vh;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(217,184,89,0.14), transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(139,92,246,0.14), transparent 55%),
    var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.union-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; }
.union-overlay {
  position: relative; z-index: 1; text-align: center;
  max-width: 640px; margin-inline: auto; padding: var(--space-4) var(--space-3);
}
.union-overlay h2 { margin-bottom: var(--space-2); }
.union-overlay p { max-width: 52ch; margin-inline: auto; }

/* ---- Chrome heart accent — small, sits above the final CTA ---- */
.heart-accent {
  position: relative; width: 132px; height: 132px; margin: 0 auto var(--space-3);
}
.heart-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
@media (max-width: 640px) {
  .union-section { min-height: 64vh; }
  .heart-accent { width: 96px; height: 96px; }
}
@media (prefers-reduced-motion: reduce) {
  .union-canvas, .heart-canvas { display: none; }
}

main, footer.site-footer { position: relative; z-index: 1; }
/* .site-header sets its own position/z-index below (sticky, z-index:50) —
   it must NOT be included above: "header.site-header" has higher specificity
   than ".site-header" and would silently override the sticky z-index:50 with
   z-index:1, letting <main> (same z-index:1, later in DOM) paint over the
   fixed mobile nav-links panel that lives inside the header. */

/* ---- Header / nav ---- */
.site-header {
  /* NOTE: backdrop-filter/transform/filter must NOT be applied directly on
     .site-header — any of those on an ancestor turns it into the containing
     block for `position: fixed` descendants (like .nav-links on mobile),
     which breaks full-viewport fixed overlays. The frosted-glass effect is
     applied via ::before instead so .site-header stays a plain ancestor. */
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(10,6,20,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand {
  font-family: var(--font-display); font-size: 20px; letter-spacing: .04em;
  display: flex; align-items: center; gap: 10px;
}
.brand .glyph { color: var(--gold); font-size: 22px; }
.nav-links { display: flex; align-items: center; gap: var(--space-4); }
.nav-links a {
  font-size: 14px; letter-spacing: .02em; color: var(--ink-soft);
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--gold); }

/* dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 6px; background: none; border: 0; color: var(--ink-soft); font-size: 14px; }
.dropdown-toggle svg { width: 10px; height: 10px; transition: transform .3s var(--ease); }
.has-dropdown[data-open="true"] .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, -8px);
  width: 460px; background: var(--card); border: 1px solid var(--line-strong);
  border-radius: var(--radius-md); padding: var(--space-3);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.has-dropdown[data-open="true"] .dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.dropdown-panel a {
  display: flex; flex-direction: column; gap: 2px; padding: 10px 12px; border-radius: var(--radius-sm);
  font-size: 13.5px; color: var(--ink-soft); transition: background .2s, color .2s;
}
.dropdown-panel a span.small { font-size: 11.5px; color: var(--ink-mute); font-family: var(--font-body); }
.dropdown-panel a:hover { background: rgba(217,184,89,0.08); color: var(--gold); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-soft));
  color: #fff; font-size: 13.5px; font-weight: 500; letter-spacing: .02em;
  box-shadow: 0 0 0 0 rgba(225,29,72,.5);
  animation: cta-pulse 2.8s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225,29,72,.45); }
  50% { box-shadow: 0 0 0 10px rgba(225,29,72,0); }
}
.nav-cta:hover { filter: brightness(1.08); }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle { display: none; background: none; border: 0; color: var(--ink); width: 30px; height: 22px; position: relative; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span { top: 10px; }
.nav-toggle::before { top: 2px; }
.nav-toggle::after { top: 18px; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 68px 0 0 0; z-index: 49;
    background: rgba(10,6,20,0.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start; gap: var(--space-2);
    padding: var(--space-4) 24px; transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .nav-links[data-mobile-open="true"] { opacity: 1; visibility: visible; transform: none; }
  .dropdown-panel { position: static; transform: none; width: 100%; opacity: 1; visibility: visible; pointer-events: auto; display: none; margin-top: 8px; box-shadow: none; }
  .has-dropdown[data-open="true"] .dropdown-panel { display: grid; }
  .nav-cta { width: 100%; justify-content: center; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: 999px; font-size: 15px; font-weight: 500;
  letter-spacing: .02em; border: 1px solid transparent; transition: transform .25s var(--ease), filter .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--crimson), #be123c);
  color: #fff; box-shadow: 0 12px 30px -8px rgba(225,29,72,.55);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 16px 36px -6px rgba(225,29,72,.65); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #b5893a); color: #1a1206; }
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn svg { width: 18px; height: 18px; }

/* ---- Flare glow (adapted from the Auralis reference's light-ray texture) ----
   A soft radial glow sits behind every hero, gold+violet toned via CSS
   filter to match this palette. Pure CSS/background-image, no JS, no
   dependency on Three.js — always renders. */
.hero, .page-hero { position: relative; }
.hero::before, .page-hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 140%;
  background: url("assets/img/rays.webp") center / contain no-repeat;
  opacity: 0.4; mix-blend-mode: screen; pointer-events: none; z-index: 0;
  filter: hue-rotate(215deg) saturate(1.4);
}
.hero > *, .page-hero > * { position: relative; z-index: 1; }

/* ---- Film grain — subtle texture over the whole site, procedural SVG
   noise, no image asset. Fixed + pointer-events:none so it never blocks
   clicks or scroll. ---- */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 40; pointer-events: none;
  opacity: 0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce), (max-width: 480px) {
  .hero::before, .page-hero::before { opacity: 0.22; }
}

/* ---- Hero ---- */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  padding-top: var(--space-6); padding-bottom: var(--space-6);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-6); align-items: center; }
.hero-title { font-size: clamp(2.4rem, 4.6vw, 4rem); }
.hero-sub { font-size: 18px; max-width: 46ch; }
.hero-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; margin-top: var(--space-4); }
.hero-trust { display: flex; gap: var(--space-4); margin-top: var(--space-5); flex-wrap: wrap; }
.hero-trust-item { display: flex; flex-direction: column; }
.hero-trust-item strong { font-family: var(--font-display); font-size: 26px; color: var(--gold); }
.hero-trust-item span { font-size: 12.5px; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .08em; }

.sigil-frame {
  position: relative; aspect-ratio: 1/1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 40%, rgba(139,92,246,.28), transparent 60%);
}
.sigil-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--line-strong); }
.sigil-ring.r2 { inset: 30px; border-color: rgba(217,184,89,.28); }
.sigil-ring.r3 { inset: 60px; border-style: dashed; border-color: rgba(207,192,234,.18); }
.sigil-core { width: 46%; height: 46%; border-radius: 50%; background: radial-gradient(circle, rgba(217,184,89,.35), rgba(139,92,246,.15) 60%, transparent 75%); filter: blur(2px); }

@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } .sigil-frame { max-width: 320px; margin-inline: auto; } }

/* ---- Sections generic ---- */
.section-head { max-width: 640px; margin-bottom: var(--space-5); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---- Cards / services grid ---- */
.grid-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.service-card {
  background: linear-gradient(180deg, var(--card), var(--bg-3));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-4); transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(217,184,89,.4); box-shadow: 0 24px 50px -20px rgba(139,92,246,.35); }
.service-icon { width: 46px; height: 46px; margin-bottom: var(--space-2); color: var(--gold); }
.service-card h3 { font-size: 19px; }
.service-card p { font-size: 14.5px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--violet-soft); margin-top: 10px; }
.service-link svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(4px); }
@media (max-width: 940px) { .grid-services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .grid-services { grid-template-columns: 1fr; } }

/* ---- Problem / pain section ---- */
.pain-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--space-6); align-items: center; }
.pain-list { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-3); }
.pain-item { display: flex; gap: 14px; padding: 16px; border-radius: var(--radius-md); background: rgba(139,92,246,.06); border: 1px solid var(--line); }
.pain-item svg { width: 20px; height: 20px; color: var(--crimson-soft); flex-shrink: 0; margin-top: 2px; }
.pain-item p { margin: 0; color: var(--ink-soft); font-size: 14.5px; }
@media (max-width: 940px) { .pain-split { grid-template-columns: 1fr; } }

/* ---- Process steps ---- */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); counter-reset: step; }
.process-step { position: relative; padding: var(--space-4) var(--space-3) var(--space-3); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--card); }
.process-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 13px; color: var(--gold);
  display: inline-block; margin-bottom: 14px; letter-spacing: .1em;
}
@media (max-width: 940px) { .process-steps { grid-template-columns: 1fr; } }

/* ---- Testimonials ---- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.testimonial-card { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--card); }
.testimonial-shot {
  aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--space-3);
  background: linear-gradient(160deg, rgba(139,92,246,.14), rgba(217,184,89,.06));
  border-bottom: 1px dashed var(--line-strong); color: var(--ink-mute); font-size: 13px;
}
.testimonial-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testimonial-shot.is-chat { aspect-ratio: 9/14; padding: 0; background: #0b0f14; }
.testimonial-shot.is-chat img { object-fit: contain; }
.testimonial-card figcaption { padding: 14px 18px; font-size: 12.5px; color: var(--ink-mute); }
@media (max-width: 940px) { .testimonial-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---- Testimonial written-quote cards ---- */
.testimonial-card.is-quote { padding: var(--space-3); display: flex; flex-direction: column; gap: 14px; }
.quote-head { display: flex; align-items: center; gap: 12px; }
.quote-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.quote-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quote-avatar.is-mono {
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  font-size: 18px; color: var(--gold); background: linear-gradient(160deg, rgba(139,92,246,.25), rgba(217,184,89,.16));
}
.quote-name { font-size: 13px; color: var(--ink-soft); font-weight: 500; }
.quote-name span { display: block; font-size: 11.5px; color: var(--ink-mute); font-weight: 400; margin-top: 1px; }
.testimonial-card.is-quote p.quote-text { font-size: 14.5px; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.testimonial-card.is-quote p.quote-text::before { content: '\201C'; color: var(--gold); font-family: var(--font-display); margin-right: 2px; }

/* ---- Bio / sobre section ---- */
.bio-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--space-6); align-items: center; }
.bio-portrait {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); border: 1px solid var(--line-strong);
  background: radial-gradient(circle at 50% 30%, rgba(217,184,89,.22), transparent 60%), var(--card);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.bio-portrait .glyph-big { font-family: var(--font-display); font-size: 15vw; max-font-size: 92px; color: rgba(217,184,89,.5); }
.bio-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 940px) { .bio-split { grid-template-columns: 1fr; } }

/* ---- Ritual gallery: real altar / ritual photos on service pages ---- */
.ritual-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.ritual-gallery.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-inline: auto; }
.ritual-photo {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--card);
}
.ritual-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.ritual-photo:hover img { transform: scale(1.06); }
.ritual-photo figcaption {
  position: absolute; inset: auto 0 0 0; padding: 16px 16px 13px;
  background: linear-gradient(to top, rgba(10,6,20,.85), transparent);
  font-size: 12.5px; color: #f2ecff;
}
@media (max-width: 940px) { .ritual-gallery, .ritual-gallery.cols-2 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .ritual-gallery, .ritual-gallery.cols-2 { grid-template-columns: 1fr; } }

/* ---- FAQ accordion ---- */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
  background: none; border: 0; color: var(--ink); text-align: left; padding: 22px 4px; font-size: 16px; font-family: var(--font-body);
}
.faq-q svg { width: 16px; height: 16px; color: var(--gold-soft); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-item[data-open="true"] .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 20px; font-size: 14.5px; max-width: 68ch; }

/* ---- CTA banner ---- */
.cta-banner {
  border-radius: var(--radius-lg); padding: var(--space-6) var(--space-5); text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,.28), transparent 60%), linear-gradient(180deg, var(--bg-3), var(--card));
  border: 1px solid var(--line-strong);
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.cta-banner .btn-primary { margin-top: var(--space-3); }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid var(--line); padding: var(--space-6) 0 var(--space-4); background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-4); }
.footer-col h4 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-soft); margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: var(--ink-mute); margin-bottom: 10px; }
.footer-col a:hover { color: var(--ink-soft); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: var(--space-5); padding-top: var(--space-3); border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-mute); }
@media (max-width: 940px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- WhatsApp floating CTA ---- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: flex; align-items: center; gap: 10px; padding: 14px 20px; border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c4a); color: #06210f; font-weight: 600; font-size: 14px;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.55);
  animation: wa-bob 3.2s ease-in-out infinite;
}
.wa-float svg { width: 22px; height: 22px; }
@keyframes wa-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (max-width: 640px) { .wa-float span { display: none; } .wa-float { padding: 14px; } }

/* ---- Custom cursor (desktop only) ---- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999; border-radius: 50%;
  transform: translate(-50%, -50%); mix-blend-mode: difference;
}
.cursor-dot { width: 6px; height: 6px; background: var(--gold); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid var(--ink); transition: width .2s, height .2s, opacity .2s; }
@media (hover: none), (max-width: 940px) { .cursor-dot, .cursor-ring { display: none; } }

/* ---- Page hero (inner pages) ---- */
.page-hero { padding-top: var(--space-7); padding-bottom: var(--space-5); text-align: center; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 12.5px; color: var(--ink-mute); margin-bottom: var(--space-3); }
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--gold-soft); }

.legal-body h2 { margin-top: var(--space-5); font-size: 20px; }
.legal-body p, .legal-body li { color: var(--ink-mute); font-size: 14.5px; }
.legal-body ul { list-style: disc; padding-left: 20px; }

.disclaimer-box {
  border: 1px solid var(--line-strong); border-radius: var(--radius-md); padding: var(--space-3);
  background: rgba(217,184,89,.05); font-size: 13.5px; color: var(--ink-mute); margin-top: var(--space-4);
}
.disclaimer-box strong { color: var(--gold-soft); }

/* ---- Utility ---- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--line-strong); font-size: 12.5px; color: var(--ink-soft); background: rgba(139,92,246,.08);
}
