/*
 * ═══════════════════════════════════════════════════════════
 * VAVA ADVISORY · styles.css
 * CSS único — Nueva arquitectura limpia
 * Mobile-first · Dark luxury · Bloomberg aesthetic
 * ═══════════════════════════════════════════════════════════
 *
 * 01  Tokens
 * 02  Reset
 * 03  Tipografía
 * 04  Layout
 * 05  Topbar
 * 06  Header & Nav
 * 07  Buttons
 * 08  Kicker / Eyebrow
 * 09  Section helpers
 * 10  Hero
 * 11  Trust band
 * 12  Pain section
 * 13  Services stack
 * 14  Process
 * 15  Intelligence / Dashboard
 * 16  Cases
 * 17  Exclusivity
 * 18  FAQ
 * 19  CTA Final
 * 20  Footer
 * 21  Float WA
 * 22  Sticky CTA desktop
 * 23  Mobile sticky bar
 * 24  Guarantee badge
 * 25  Reveal animation
 * 26  Responsive
 * 27  Print & reduced motion
 * ═══════════════════════════════════════════════════════════
 */


/* ═══════════════════════════════════════
   01  TOKENS
═══════════════════════════════════════ */
:root {
  /* Base */
  --c-bg:        #060708;
  --c-bg1:       #0e1014;
  --c-bg2:       #161920;
  --c-bg3:       #1e2229;
  --c-cream:     #F4EFE4;
  --c-cream2:    #EDE8DC;
  --c-navy:      #0C2550;
  --c-navy2:     #0a1e3d;

  /* Gold */
  --c-gold:      #D4B876;
  --c-gold2:     #C9A860;
  --c-gold-dim:  rgba(212,184,118,.12);
  --c-gold-line: rgba(212,184,118,.22);

  /* Text — dark bg */
  --c-t:    #EDE8DF;
  --c-t2:   rgba(237,232,223,.65);
  --c-t3:   rgba(237,232,223,.40);
  --c-t4:   rgba(237,232,223,.22);

  /* Text — light bg */
  --c-ink:  #1A1612;
  --c-ink2: rgba(26,22,18,.58);
  --c-ink3: rgba(26,22,18,.36);

  /* Borders */
  --c-bdr:  rgba(237,232,223,.07);
  --c-bdr2: rgba(237,232,223,.13);

  /* Typography */
  --f-serif: 'Playfair Display', Georgia, serif;
  --f-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:  'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

  /* Spacing */
  --wrap:   1200px;
  --pad:    clamp(20px, 4.5vw, 56px);
  --sec-y:  clamp(80px, 9vw, 140px);
  --ease:   cubic-bezier(.22,1,.36,1);

  /* Status colors */
  --c-amber: #C99756;
  --c-red:   #B85A3E;
  --c-green: #25D366;
}


/* ═══════════════════════════════════════
   02  RESET
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--f-sans);
  background: var(--c-bg);
  color: var(--c-t);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
address { font-style: normal; }
ul { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--c-gold); color: var(--c-bg); }


/* ═══════════════════════════════════════
   03  TIPOGRAFÍA
═══════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.026em;
  color: var(--c-t);
  margin: 0;
}

h1 { font-size: clamp(38px, 6vw, 80px); }
h2 { font-size: clamp(28px, 4.2vw, 56px); line-height: 1.06; }
h3 { font-size: clamp(19px, 2.2vw, 26px); line-height: 1.18; letter-spacing: -0.016em; }
h4 { font-size: clamp(16px, 1.6vw, 20px); }

p { margin: 0; color: var(--c-t2); }

em { font-style: italic; color: var(--c-gold); }

.ink   { color: var(--c-ink); }
.ink-2 { color: var(--c-ink2); }

.sec-lead {
  font-size: clamp(15.5px, 1.35vw, 18.5px);
  color: var(--c-t2);
  line-height: 1.60;
  max-width: 56ch;
  margin-top: 18px;
}


/* ═══════════════════════════════════════
   04  LAYOUT
═══════════════════════════════════════ */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
  width: 100%;
}

.section {
  padding-top:    var(--sec-y);
  padding-bottom: var(--sec-y);
  overflow: hidden;
}

.sec--cream {
  background: var(--c-cream);
}

.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(28px, 4.5vw, 72px);
  align-items: end;
  margin-bottom: clamp(44px, 5.5vw, 80px);
}
.sec-head--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 740px;
  margin-inline: auto;
  margin-bottom: clamp(44px, 5.5vw, 80px);
}


/* ═══════════════════════════════════════
   05  TOPBAR
═══════════════════════════════════════ */
.topbar {
  background: linear-gradient(90deg,
    rgba(212,184,118,.03) 0%,
    rgba(212,184,118,.08) 50%,
    rgba(212,184,118,.03) 100%);
  border-bottom: 1px solid rgba(212,184,118,.10);
  padding: 9px 0;
  overflow: hidden;
}

.topbar__inner {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.topbar__item {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-t3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.topbar__item::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--c-gold);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   06  HEADER & NAV
═══════════════════════════════════════ */
.hdr {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(6,7,8,.86);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-bdr);
  width: 100%;
  overflow: hidden;
  transition: background .3s var(--ease);
}
.hdr.scrolled { background: rgba(6,7,8,.96); }

.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 13px;
  flex-wrap: nowrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo__mark { width: 36px; height: 36px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
  font-family: var(--f-serif);
  font-size: 20px;
  letter-spacing: -0.014em;
  color: var(--c-t);
}
.logo__tag {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-t4);
  margin-top: 3px;
}

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--c-t3);
  padding: 4px 0;
  position: relative;
  transition: color .25s var(--ease);
  white-space: nowrap;
}
.nav a:hover,
.nav a.active { color: var(--c-gold); }
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--c-gold);
}

/* Header actions */
.hdr__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hdr__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: var(--f-mono);
  color: var(--c-t2);
  letter-spacing: .03em;
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.hdr__phone span { color: var(--c-gold); font-size: 8px; }
.hdr__phone:hover { color: var(--c-gold); }

/* Burger */
.burger {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--c-t);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.m-nav {
  display: none;
  flex-direction: column;
  background: var(--c-bg1);
  border-top: 1px solid var(--c-bdr);
  padding: 16px var(--pad) max(20px, env(safe-area-inset-bottom));
  gap: 2px;
}
.m-nav.open { display: flex; }
.m-nav a {
  padding: 13px 0;
  font-size: 15.5px;
  color: var(--c-t2);
  border-bottom: 1px solid var(--c-bdr);
  transition: color .22s;
}
.m-nav a:hover { color: var(--c-gold); }
.m-nav a:last-of-type:not(.btn) { border-bottom: none; }
.m-nav .btn { margin-top: 14px; width: 100%; justify-content: center; min-height: 56px; }
.m-nav__phone {
  color: var(--c-gold) !important;
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 600;
}


/* ═══════════════════════════════════════
   07  BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  font-family: var(--f-sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1px solid transparent;
  min-height: 52px;
  cursor: pointer;
  white-space: nowrap;
  touch-action: manipulation;
  transition:
    background .3s var(--ease),
    border-color .3s var(--ease),
    color .3s var(--ease),
    transform .3s var(--ease),
    box-shadow .3s var(--ease);
  text-decoration: none;
}
.btn svg { flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--lg { padding: 16px 28px; font-size: 14px; min-height: 56px; }

/* Gold — hero primary */
.btn--gold {
  background: linear-gradient(135deg, #e0c47a 0%, #c9a860 100%);
  color: #060504;
  border-color: rgba(255,255,255,.14);
  box-shadow: 0 10px 28px rgba(212,184,118,.18);
  font-weight: 700;
}
.btn--gold:hover {
  background: linear-gradient(135deg, #edd48e 0%, #d4b876 100%);
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(212,184,118,.28);
}

/* Ghost — outline on dark */
.btn--ghost {
  background: rgba(237,232,223,.05);
  color: var(--c-t);
  border-color: rgba(237,232,223,.22);
}
.btn--ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

/* Navy — CTA final on cream */
.btn--navy {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}
.btn--navy:hover {
  background: var(--c-navy2);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(12,37,80,.45);
}

/* Ghost ink — on cream */
.btn--ink {
  background: transparent;
  color: var(--c-ink);
  border-color: rgba(26,22,18,.22);
}
.btn--ink:hover {
  border-color: var(--c-ink);
  background: rgba(26,22,18,.04);
}

/* WhatsApp */
.btn--wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn--wa:hover {
  background: #1aad50;
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════
   08  KICKER
═══════════════════════════════════════ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.kicker::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--c-gold);
  flex-shrink: 0;
}

.kicker--ink       { color: var(--c-ink); }
.kicker--ink::before { background: var(--c-ink); }


/* ═══════════════════════════════════════
   09  SECTION HELPERS
═══════════════════════════════════════ */
.sec-head .kicker { margin-bottom: 14px; display: block; }
.sec-head h2 { color: var(--c-t); }
.sec--cream .sec-head h2,
.sec--cream h2 { color: var(--c-ink); }

/* Editorial quote */
.edquote {
  text-align: center;
  padding: clamp(52px, 6vw, 80px) 0;
  border-top: 1px solid var(--c-bdr);
  border-bottom: 1px solid var(--c-bdr);
}
.edquote__text {
  font-family: var(--f-serif);
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  color: var(--c-t);
  line-height: 1.28;
  letter-spacing: -0.016em;
  max-width: 26ch;
  margin: 0 auto;
}
.edquote__text em { color: var(--c-gold); font-style: italic; }
.edquote__source {
  margin-top: 22px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-t3);
}


/* ═══════════════════════════════════════
   10  HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(104px, 13vw, 168px) 0 clamp(80px, 10vw, 128px);
  border-bottom: 1px solid var(--c-bdr);
}

/* Cinematic background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(165deg, rgba(6,7,8,.95) 0%, rgba(6,7,8,.72) 55%, rgba(12,37,80,.58) 100%),
    url('assets/images/hero-boardroom.webp') center 28% / cover no-repeat;
  /* CSS-only fallback if image missing: */
  background-color: var(--c-bg);
}

/* Gold grid overlay */
.hero__noise {
  position: absolute;
  inset: -15%;
  z-index: 1;
  background-image:
    linear-gradient(rgba(212,184,118,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,184,118,.04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse at 35% 45%, black 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(ellipse at 35% 45%, black 0%, transparent 68%);
  pointer-events: none;
}

.hero__body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(44px, 5.5vw, 88px);
  align-items: center;
}

.hero__left { display: flex; flex-direction: column; gap: 0; }

.hero__h1 {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.034em;
  color: var(--c-t);
  margin: 20px 0;
  max-width: 13ch;
}
.hero__h1 em { font-style: italic; color: var(--c-gold); }

.hero__sub {
  font-size: clamp(15.5px, 1.42vw, 18px);
  color: var(--c-t2);
  line-height: 1.60;
  max-width: 48ch;
  margin-bottom: 26px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  background: rgba(212,184,118,.08);
  border: 1px solid rgba(212,184,118,.24);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 26px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 18px;
}

.hero__trust {
  font-size: 11px;
  color: var(--c-t4);
  letter-spacing: .04em;
}

/* Metric cards */
.hero__right {
  display: flex;
  flex-direction: column;
  background: rgba(14,16,20,.80);
  border: 1px solid rgba(212,184,118,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero__stat {
  padding: clamp(18px, 2.2vw, 26px) clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--c-bdr);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero__stat:last-child { border-bottom: none; }

.hero__stat-label {
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-t4);
}

.hero__stat-val {
  font-family: var(--f-serif);
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--c-t);
  line-height: 1;
  letter-spacing: -0.018em;
  font-weight: 400;
}
.hero__stat-val em { font-style: italic; color: var(--c-gold); font-size: .75em; }

.hero__stat-desc {
  font-size: 11.5px;
  color: var(--c-t3);
  line-height: 1.38;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span:first-child {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
  animation: scrollpulse 2s ease-in-out infinite;
}
.hero__scroll span:last-child {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-t4);
}
@keyframes scrollpulse {
  0%, 100% { opacity: .3; }
  50%       { opacity: 1; }
}


/* ═══════════════════════════════════════
   11  TRUST BAND
═══════════════════════════════════════ */
.trust-band {
  background: var(--c-bg1);
  border-top: 1px solid var(--c-bdr);
  border-bottom: 1px solid var(--c-bdr);
  padding: clamp(40px, 4.5vw, 66px) 0;
}

.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-bdr);
}

.trust-band__item {
  background: var(--c-bg1);
  padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2.2vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.trust-band__item strong {
  font-family: var(--f-serif);
  font-size: clamp(32px, 3.8vw, 48px);
  color: var(--c-gold);
  line-height: 1;
  letter-spacing: -0.016em;
  font-weight: 400;
}

.trust-band__item span {
  font-size: 11px;
  color: var(--c-t3);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.38;
}


/* ═══════════════════════════════════════
   12  PAIN SECTION
═══════════════════════════════════════ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-bdr);
  border: 1px solid var(--c-bdr);
  margin-top: 52px;
}

.pain-card {
  background: var(--c-bg);
  padding: clamp(28px, 3.8vw, 50px) clamp(22px, 3.2vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 3px solid transparent;
  transition: background .32s var(--ease), border-left-color .32s var(--ease);
}
.pain-card:hover {
  background: var(--c-bg1);
  border-left-color: var(--c-gold);
}

.pain-card__num {
  font-family: var(--f-serif);
  font-size: 56px;
  color: rgba(212,184,118,.12);
  line-height: 1;
  font-style: italic;
}

.pain-card h3 {
  font-size: clamp(18px, 2vw, 23px);
  color: var(--c-t);
  line-height: 1.2;
}

.pain-card p { font-size: 14px; line-height: 1.66; }

.pain-card__tag {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--c-bdr);
}

.pain-close {
  margin-top: 52px;
  text-align: center;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--c-gold);
  line-height: 1.45;
  max-width: 50ch;
  margin-inline: auto;
}


/* ═══════════════════════════════════════
   13  SERVICES STACK
═══════════════════════════════════════ */
.svc-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(26,22,18,.10);
  border: 1px solid rgba(26,22,18,.14);
  margin-top: 48px;
}

.svc-row {
  display: grid;
  grid-template-columns: 62px 1fr 220px 150px;
  align-items: center;
  padding: clamp(26px, 3.2vw, 38px) clamp(20px, 2.8vw, 34px);
  gap: 24px;
  background: var(--c-cream);
  text-decoration: none;
  color: inherit;
  position: relative;
  border-left: 3px solid transparent;
  transition: background .3s var(--ease), border-left-color .3s var(--ease);
  overflow: hidden;
}
.svc-row:hover {
  background: var(--c-cream2);
  border-left-color: var(--c-gold);
}

.svc-row__num {
  font-family: var(--f-serif);
  font-size: 36px;
  color: var(--c-gold);
  font-style: italic;
  line-height: 1;
  flex-shrink: 0;
}

.svc-row__body { display: flex; flex-direction: column; gap: 7px; min-width: 0; }

.svc-row__body h3 {
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--c-ink);
  line-height: 1.18;
}

.svc-row__body p {
  font-size: 13.5px;
  color: var(--c-ink2);
  line-height: 1.58;
  max-width: 48ch;
}

.svc-row__price {
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--c-ink2);
  line-height: 1.5;
  min-width: 0;
}
.svc-row__price strong { color: var(--c-gold); font-weight: 500; display: block; }
.svc-row__price span { font-size: 11px; display: block; margin-top: 2px; }

.svc-row__cta {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-ink);
  border-bottom: 1px solid rgba(26,22,18,.22);
  padding-bottom: 2px;
  width: fit-content;
  transition: color .25s, border-color .25s;
  white-space: nowrap;
}
.svc-row:hover .svc-row__cta { color: var(--c-gold); border-color: var(--c-gold); }

/* Guarantee */
.guarantee {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  margin-top: 40px;
  background: rgba(12,37,80,.07);
  border: 1px solid rgba(12,37,80,.18);
  max-width: 660px;
  margin-inline: auto;
}
.guarantee__icon {
  color: var(--c-navy);
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1.2;
}
.guarantee strong { display: block; font-size: 14px; font-weight: 600; color: var(--c-ink); margin-bottom: 3px; }
.guarantee span { font-size: 13px; color: var(--c-ink2); line-height: 1.55; }


/* ═══════════════════════════════════════
   14  PROCESS
═══════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212,184,118,.16);
  margin-top: 52px;
  overflow: hidden;
}

.process-step {
  background: var(--c-bg);
  padding: clamp(26px, 3.2vw, 40px) clamp(20px, 2.6vw, 32px) clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .3s var(--ease);
}
.process-step:hover { background: var(--c-bg1); }

.process-step__n {
  font-family: var(--f-serif);
  font-size: 62px;
  color: rgba(212,184,118,.14);
  line-height: 1;
  font-style: italic;
}

.process-step h3 { font-size: clamp(17px, 1.8vw, 21px); color: var(--c-t); }
.process-step p  { font-size: 13.5px; color: var(--c-t2); line-height: 1.64; }

.process-step__time {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding-top: 16px;
  border-top: 1px solid var(--c-bdr);
}


/* ═══════════════════════════════════════
   15  INTELLIGENCE / DASHBOARD
═══════════════════════════════════════ */
.intel {
  position: relative;
  background: var(--c-bg);
  overflow: hidden;
}
.intel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--c-bdr) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-bdr) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: .32;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, black 15%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, black 15%, transparent 80%);
}

.intel__wrap { position: relative; z-index: 2; }

.intel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 5.5vw, 88px);
  align-items: start;
  margin-top: 64px;
}

.intel__copy h3 {
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--c-t);
  margin-bottom: 18px;
  line-height: 1.14;
}
.intel__copy p { font-size: 15px; color: var(--c-t2); line-height: 1.70; margin-bottom: 14px; }

.intel__features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
}

.intel__features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--c-bdr);
}
.intel__features li:last-child { border-bottom: 1px solid var(--c-bdr); }

.intel__mark {
  width: 24px; height: 24px;
  border: 1px solid var(--c-gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.intel__features strong { display: block; font-size: 14px; color: var(--c-t); margin-bottom: 3px; font-weight: 600; }
.intel__features span  { font-size: 12.5px; color: var(--c-t3); line-height: 1.5; }

/* Dashboard */
.dashboard {
  background: var(--c-bg2);
  border: 1px solid var(--c-bdr2);
  padding: 26px;
}

.dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-bdr2);
  margin-bottom: 20px;
}
.dashboard__title {
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: var(--c-t3);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.dashboard__live {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--c-gold);
  letter-spacing: .18em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dashboard__dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--c-gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--c-gold);
  animation: live 2.5s ease-in-out infinite;
}
@keyframes live { 0%,100%{opacity:1;}50%{opacity:.25;} }

.db-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr .52fr;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--c-bdr);
  align-items: center;
}
.db-row:last-child { border-bottom: none; }

.db-row__label { font-size: 12px; color: var(--c-t2); }

.db-row__bar {
  height: 3px;
  background: var(--c-bg3);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.db-row__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--c-gold);
  border-radius: 2px;
}
.db-row__bar--amber .db-row__fill { background: var(--c-amber); }
.db-row__bar--red   .db-row__fill { background: var(--c-red); }

.db-row__val {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--c-t);
  text-align: right;
  letter-spacing: .03em;
}
.db-row__val--amber { color: #D9A865; }
.db-row__val--red   { color: #D9876E; }

.dashboard__note {
  margin-top: 18px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-t4);
  text-align: center;
}


/* ═══════════════════════════════════════
   16  CASES
═══════════════════════════════════════ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.case {
  background: var(--c-bg1);
  border: 1px solid var(--c-bdr);
  padding: clamp(26px, 3.2vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.case:hover {
  border-color: var(--c-gold-line);
  transform: translateY(-2px);
}

.case__industry {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--c-gold);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.case h3 {
  font-size: clamp(17px, 1.9vw, 22px);
  color: var(--c-t);
  line-height: 1.22;
}

.case__action { font-size: 13.5px; line-height: 1.60; flex: 1; }

.case__result {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--c-bdr2);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case__result span { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--c-t3); }
.case__result strong {
  font-family: var(--f-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--c-gold);
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}


/* ═══════════════════════════════════════
   17  EXCLUSIVITY
═══════════════════════════════════════ */
.excl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5.5vw, 80px);
  align-items: start;
}

.excl__copy { display: flex; flex-direction: column; gap: 0; }
.excl__copy h2 { color: var(--c-ink); margin-bottom: 18px; }
.excl__copy .ink-2 { font-size: 16px; line-height: 1.68; margin-bottom: 12px; }

.excl__rule {
  width: 52px; height: 1px;
  background: var(--c-gold);
  margin: 20px 0;
}

.excl__italic {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--c-gold);
  line-height: 1.4;
  margin-top: 16px;
}

.excl__list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.excl__list li {
  font-size: 14.5px;
  color: var(--c-ink2);
  line-height: 1.56;
  padding-left: 28px;
  position: relative;
}
.excl__list li::before {
  content: "×";
  position: absolute;
  left: 0; top: -1px;
  color: var(--c-gold);
  font-family: var(--f-serif);
  font-size: 19px;
  font-style: italic;
}


/* ═══════════════════════════════════════
   18  FAQ
═══════════════════════════════════════ */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 0;
}

.faq-item { border-bottom: 1px solid var(--c-bdr); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(18px, 2.4vw, 28px) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-family: var(--f-serif);
  font-size: clamp(16px, 1.9vw, 21px);
  color: var(--c-t);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.010em;
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--c-gold); }

.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--c-gold-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .28s var(--ease), background .28s var(--ease);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--c-gold-dim);
}

.faq-body {
  padding-bottom: clamp(16px, 2.2vw, 26px);
}
.faq-body p {
  font-size: 14.5px;
  color: var(--c-t2);
  line-height: 1.72;
  max-width: 90%;
}


/* ═══════════════════════════════════════
   19  CTA FINAL
═══════════════════════════════════════ */
.cta-final {
  background: var(--c-cream);
  padding: clamp(72px, 9vw, 128px) 0;
  overflow: hidden;
}

.cta-final__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-final__inner h2 {
  max-width: 22ch;
  color: var(--c-ink);
}

.cta-final__inner .ink-2 {
  max-width: 52ch;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.65;
}

.cta-final__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
}


/* ═══════════════════════════════════════
   20  FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-bdr);
  padding: clamp(52px, 6.5vw, 80px) 0 clamp(22px, 2.8vw, 36px);
  overflow: hidden;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(22px, 3.2vw, 50px);
  margin-bottom: clamp(36px, 4.5vw, 52px);
}

.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__brand p {
  font-size: 13px;
  color: var(--c-t3);
  line-height: 1.62;
  max-width: 26ch;
  margin: 0;
}
.footer__brand address {
  font-size: 13px;
  color: var(--c-t3);
  line-height: 1.68;
}
.footer__brand address a { color: var(--c-t3); transition: color .22s; }
.footer__brand address a:hover { color: var(--c-gold); }

.footer__col { display: flex; flex-direction: column; gap: 0; }
.footer__col h4 {
  font-family: var(--f-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.footer__col a {
  font-size: 13.5px;
  color: var(--c-t2);
  padding: 5px 0;
  transition: color .22s var(--ease);
  word-break: break-word;
}
.footer__col a:hover { color: var(--c-gold); }

.footer__bottom {
  border-top: 1px solid var(--c-bdr);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom p { font-size: 11px; color: var(--c-t4); margin: 0; }
.footer__meta {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: var(--c-t4);
  align-items: center;
}


/* ═══════════════════════════════════════
   21  FLOAT WHATSAPP
═══════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 26px; right: 24px;
  z-index: 150;
  width: 52px; height: 52px;
  background: var(--c-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.40);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.float-wa:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 34px rgba(37,211,102,.55);
}
.float-wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: wapulse 2.6s infinite;
}
@keyframes wapulse {
  0%   { box-shadow: 0 0 0 0   rgba(37,211,102,.42); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0   rgba(37,211,102,0); }
}


/* ═══════════════════════════════════════
   22  STICKY CTA — DESKTOP SCROLL
═══════════════════════════════════════ */
.s-cta {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(130%);
  z-index: 100;
  background: rgba(14,16,20,.96);
  border: 1px solid var(--c-gold-line);
  padding: 12px 22px 12px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,.52);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: calc(100vw - 32px);
  transition: transform .46s var(--ease);
  white-space: nowrap;
}
.s-cta.visible { transform: translateX(-50%) translateY(0); }

.s-cta span { font-size: 12.5px; color: var(--c-t2); }
.s-cta span strong { color: var(--c-t); font-weight: 600; }
.s-cta a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold);
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 1px;
  flex-shrink: 0;
  transition: color .22s;
}
.s-cta a:hover { color: var(--c-gold2); }


/* ═══════════════════════════════════════
   23  MOBILE STICKY BAR
═══════════════════════════════════════ */
.m-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(6,7,8,.96);
  border-top: 1px solid rgba(212,184,118,.20);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 10px 14px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  gap: 10px;
}

.m-bar__wa {
  flex: 1;
  min-height: 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--c-green);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  touch-action: manipulation;
  transition: background .22s;
}
.m-bar__wa:hover { background: #1aad50; }

.m-bar__cta {
  flex: 1.6;
  min-height: 54px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e0c47a 0%, #c9a860 100%);
  color: #060504;
  font-weight: 700;
  font-size: 13px;
  touch-action: manipulation;
  transition: opacity .22s;
}
.m-bar__cta:hover { opacity: .92; }


/* ═══════════════════════════════════════
   24  GUARANTEE BADGE
═══════════════════════════════════════ */
/* (already in §13) */


/* ═══════════════════════════════════════
   25  REVEAL ANIMATION
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .72s var(--ease),
    transform .72s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════
   26  RESPONSIVE
═══════════════════════════════════════ */

/* Tablet — < 1024px */
@media (max-width: 1023px) {
  .nav, .hdr__phone { display: none; }
  .burger { display: flex; }
  .hdr__actions .btn--gold { display: none; }

  .hero__body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero__right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero__stat { border-bottom: none; border-right: 1px solid var(--c-bdr); }
  .hero__stat:last-child { border-right: none; }
  .hero__scroll { display: none; }

  .svc-row {
    grid-template-columns: 52px 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 10px;
    column-gap: 16px;
  }
  .svc-row__num  { grid-area: 1/1; }
  .svc-row__body { grid-area: 1/2; }
  .svc-row__price { grid-column: 1/-1; }
  .svc-row__cta   { grid-column: 1/-1; }

  .intel__grid { grid-template-columns: 1fr; gap: 36px; }
  .cases-grid  { grid-template-columns: 1fr 1fr; }
  .excl        { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .trust-band__grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile — < 768px */
@media (max-width: 767px) {
  :root { --pad: clamp(18px, 5.5vw, 26px); --sec-y: 72px; }

  body { padding-bottom: 84px; }
  .float-wa { display: none; }
  .s-cta { display: none; }
  .m-bar { display: flex; }

  .topbar__item:nth-child(n+2) { display: none; }
  .hdr__inner { padding-block: 11px; }

  .hero {
    min-height: auto;
    max-height: none;
    padding: 84px 0 60px;
  }
  .hero__h1 {
    font-size: clamp(36px, 10.5vw, 50px);
    max-width: 100%;
    margin: 16px 0;
  }
  .hero__sub { font-size: 15.5px; margin-bottom: 20px; max-width: 100%; }
  .hero__badge { font-size: 10px; margin-bottom: 20px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; min-height: 58px; white-space: normal; line-height: 1.28; }
  .hero__right { grid-template-columns: repeat(3, 1fr); }
  .hero__stat { padding: 14px 10px; }
  .hero__stat-val { font-size: clamp(20px, 6.5vw, 28px); }
  .hero__stat-label { font-size: 8.5px; }
  .hero__stat-desc { font-size: 10.5px; }

  .sec-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
  .sec-head--center { margin-bottom: 32px; }
  .trust-band__grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; gap: 14px; }
  .excl { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__meta { justify-content: center; }

  .cta-final__btns { flex-direction: column; align-items: stretch; }
  .cta-final__btns .btn {
    width: 100%;
    min-height: 56px;
    white-space: normal;
    line-height: 1.28;
  }
}

/* Very small — < 480px */
@media (max-width: 479px) {
  :root { --pad: 16px; }
  .hero__right { grid-template-columns: 1fr 1fr; }
  .hero__stat:last-child {
    grid-column: 1/-1;
    border-top: 1px solid var(--c-bdr);
    border-right: none;
  }
  .footer__grid { grid-template-columns: 1fr; }
}

/* Desktop — ≥ 1024px: show all header elements */
@media (min-width: 1024px) {
  .nav { display: flex; }
  .hdr__phone { display: inline-flex; }
  .burger { display: none; }
  .m-nav { display: none !important; }
  .hdr__actions .btn--gold { display: inline-flex; }
  .m-bar { display: none !important; }
  body { padding-bottom: 0; }
  .float-wa { display: flex; }
}


/* ═══════════════════════════════════════
   27  PRINT & REDUCED MOTION
═══════════════════════════════════════ */
@media print {
  .hdr, .topbar, .footer,
  .float-wa, .m-bar, .s-cta { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0 !important; }
  .hero__bg { display: none; }
  .hero { padding: 40px 0; min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .float-wa::after, .dashboard__dot { animation: none; }
  html { scroll-behavior: auto; }
}



/* === VAVA FINAL DEPLOY FIX — do not remove === */
.hero__bg{
  background:
    linear-gradient(165deg, rgba(6,7,8,.95) 0%, rgba(6,7,8,.72) 55%, rgba(12,37,80,.58) 100%),
    url('assets/images/hero-boardroom.webp') center 28% / cover no-repeat !important;
  background-color:#060708 !important;
}
@media(max-width:767px){
  .hero__bg{
    background:
      linear-gradient(180deg, rgba(6,7,8,.76), rgba(6,7,8,.94)),
      url('assets/images/hero-boardroom.webp') center top / cover no-repeat !important;
  }
}
