/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --navy:       #030281;
  --navy-soft:  #0c0b93;
  --navy-deep:  #020160;
  --blue:       #133974;
  --gold:       #A18B5F;
  --gold-light: #C9B48A;
  --violet:     #8B6FC4;
  --white:      #FFFFFF;
  --paper:      #F7F6F1;
  --paper-2:    #EFEDE4;
  --ink:        #1A1A1A;
  --ink-soft:   #3B3B3B;
  --ink-mute:   #6B6B72;
  --cream-text: #F2F0E8;
  --cream-mute: rgba(242,240,232,0.72);
  --cream-dim:  rgba(242,240,232,0.5);
  --line-light: rgba(26,26,26,0.12);
  --line-navy:  rgba(242,240,232,0.16);

  --sans: "Montserrat", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
}

@property --mesh-x { syntax: "<percentage>"; inherits: false; initial-value: 30%; }
@property --mesh-y { syntax: "<percentage>"; inherits: false; initial-value: 40%; }

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; font-weight: 800; }
::selection { background: var(--gold); color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.1rem; background: var(--gold); color: var(--navy);
  z-index: 9999; border-radius: 8px; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section { position: relative; padding-block: clamp(4rem, 9vw, 7.5rem); }
.section--navy { background: var(--navy); color: var(--cream-text); }
.section--paper { background: var(--paper); }
.section--paper2 { background: var(--paper-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--gold);
}

.rule-gold {
  width: 64px; height: 3px; background: var(--gold);
  margin-block: 1.1rem 1.6rem;
  border-radius: 2px;
}
.rule-gold--center { margin-inline: auto; }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-lede { font-size: 1.08rem; color: var(--ink-mute); margin-top: 1rem; line-height: 1.7; }
.section--navy .section-lede { color: var(--cream-mute); }

.kicker-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue);
}
.section--navy .kicker-tag { color: var(--gold-light); }

/* =============================================================
   4. Typography
   ============================================================= */
h1 { font-size: clamp(2.4rem, 5.6vw, 4.3rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-mute); line-height: 1.65; }

/* =============================================================
   5. Components
   ============================================================= */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem;
  font-size: .92rem; font-weight: 700; letter-spacing: .01em;
  border-radius: 999px;
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft), background-color .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 10px 24px -8px rgba(161,139,95,0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -10px rgba(161,139,95,0.6); }
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }

.btn-ghost {
  background: transparent; color: inherit;
  border: 1.5px solid currentColor;
}
.btn-ghost:hover { background: rgba(242,240,232,0.08); transform: translateY(-3px); }
.section--paper .btn-ghost, .section--paper2 .btn-ghost { border-color: var(--navy); color: var(--navy); }
.section--paper .btn-ghost:hover, .section--paper2 .btn-ghost:hover { background: rgba(3,2,129,0.06); }

.btn-icon { width: 16px; height: 16px; transition: transform .4s var(--ease-soft); }
.btn:hover .btn-icon { transform: translateX(3px); }

/* --- Cards --- */
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  border: 1px solid var(--line-light);
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft), border-color .5s var(--ease-soft);
  isolation: isolate;
}
.card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(161,139,95,.16), transparent 65%);
  opacity: 0; transition: opacity .4s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -24px rgba(3,2,129,0.28);
  border-color: rgba(161,139,95,0.4);
}
.card:hover::before { opacity: 1; }

.card--navy {
  background: var(--navy-soft);
  border-color: var(--line-navy);
  color: var(--cream-text);
}
.card--navy:hover { box-shadow: 0 30px 60px -24px rgba(0,0,0,0.5); }

.card-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.card-icon svg { width: 22px; height: 22px; }

.card h3 { margin-bottom: .6rem; }
.card p { color: var(--ink-mute); font-size: .95rem; }
.card--navy p { color: var(--cream-mute); }

/* --- Tags / chips --- */
.chip {
  display: inline-flex; align-items: center;
  padding: .4rem .85rem;
  font-size: .8rem; font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  color: var(--ink-soft);
}
.section--navy .chip { border-color: var(--line-navy); color: var(--cream-mute); }

/* --- Nav: floating liquid-glass pill --- */
.nav {
  position: fixed; z-index: 100;
  top: clamp(0.85rem, 2vw, 1.4rem);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - clamp(1.5rem, 5vw, 3rem));
  max-width: calc(var(--container) + 1.5rem);
  border-radius: 999px;
  padding-block: .8rem;
  padding-inline: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--cream-text);
  /* Solid fallback for browsers without backdrop-filter (gotcha B.12) */
  background: rgba(9, 8, 110, 0.88);
  border: 1px solid rgba(242,240,232,0.14);
  box-shadow: 0 24px 50px -22px rgba(3,2,129,0.55), 0 2px 10px rgba(0,0,0,0.12);
  transition: background-color .4s var(--ease-out), padding .4s var(--ease-out), box-shadow .4s var(--ease-out), top .4s var(--ease-out);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav {
    background: rgba(6, 5, 90, 0.78);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
  }
}
.nav.is-scrolled {
  top: clamp(0.6rem, 1.4vw, 0.9rem);
  padding-block: .65rem;
  background: rgba(6, 5, 90, 0.95);
  box-shadow: 0 18px 40px -18px rgba(3,2,129,0.6), 0 2px 10px rgba(0,0,0,0.16);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav.is-scrolled { background: rgba(6, 5, 90, 0.88); }
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.nav-logo { display: flex; align-items: baseline; gap: .45rem; color: var(--cream-text); }
.nav-logo-mark { font-weight: 800; font-size: 1.15rem; letter-spacing: .02em; color: var(--cream-text); }
.nav-logo-mark b { color: var(--gold-light); }
.nav-logo-sub { font-size: .62rem; letter-spacing: .28em; color: var(--gold-light); font-weight: 700; }

.nav-links { display: none; align-items: center; gap: 2.1rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link {
  position: relative; padding-block: .25rem;
  font-size: .87rem; font-weight: 700; color: var(--cream-text);
  transition: color .3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold-light);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-soft);
}
.nav-link:hover { color: var(--cream-text); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; }
@media (min-width: 720px) { .nav-cta { display: inline-flex; padding: .65rem 1.3rem; font-size: .84rem; } }

.nav-burger {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 50%; border: 1.5px solid rgba(242,240,232,0.22); color: var(--cream-text);
}
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger svg { width: 20px; height: 20px; }

.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: var(--navy); color: var(--cream-text);
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[data-open="true"] { clip-path: inset(0); }
.nav-mobile-list { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; }
.nav-mobile-list a { font-size: 1.6rem; font-weight: 700; }
.nav-mobile-close {
  position: absolute; top: 1.3rem; right: var(--gutter);
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1.5px solid var(--line-navy); border-radius: 10px;
}

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  background: var(--white);
  color: var(--ink);
  overflow: clip;
  padding-top: 7.5rem;
  isolation: isolate;
}

/* --- Legal page header (aviso-de-privacidad.html) --- */
.legal-hero { padding-top: 8.5rem; padding-bottom: 2.5rem; }
.legal-title { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); margin-top: .6rem; }
.legal-meta { margin-top: .9rem; font-size: .9rem; color: var(--ink-mute); }
.legal-content { max-width: 46rem; margin-inline: auto; }
.legal-content h2 { font-size: clamp(1.3rem, 2vw, 1.6rem); color: var(--navy); margin-top: 2.8rem; margin-bottom: 1rem; }
.legal-content h3 { font-size: 1.05rem; margin-top: 1.8rem; margin-bottom: .6rem; }
.legal-content p { color: var(--ink-mute); line-height: 1.75; margin-bottom: 1rem; }
.legal-content p strong { color: var(--ink); }
.legal-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal-content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-content ul li { color: var(--ink-mute); margin-bottom: .4rem; line-height: 1.6; }
.hero-field {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 700px at 82% -10%, rgba(161,139,95,0.10), transparent 60%),
    radial-gradient(900px 600px at -10% 100%, rgba(139,111,196,0.07), transparent 55%),
    var(--white);
}
.hero-net {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%;
  opacity: .55;
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.hero-inner { display: grid; gap: 3rem; align-items: center; padding-block: 3rem 4rem; max-width: 46rem; }

.hero-title { max-width: 15ch; }
.hero-title em { color: var(--gold); font-style: normal; }
.hero-sub { margin-top: 1.4rem; max-width: 42ch; color: var(--ink-mute); font-size: clamp(1.02rem, 1.6vw, 1.18rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.1rem; }
.hero .btn-ghost:hover { background: rgba(3,2,129,0.06); }

.hero-trust {
  margin-top: 3.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line-light);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem;
  align-items: center;
}
.hero-trust-label { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; }
.hero-trust-item { font-size: .84rem; color: var(--ink-mute); }
.hero-trust-dot { color: var(--gold); margin-inline: .1rem; }

/* --- Trust / logic strip --- */
.trust-strip { background: var(--navy-deep); padding-block: 2.6rem; }
.trust-grid {
  display: grid; gap: 1.6rem 2rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-num { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; color: var(--gold-light); }
.trust-label { font-size: .78rem; color: var(--cream-mute); margin-top: .3rem; }

/* --- Statement / bias section --- */
.statement {
  display: grid; gap: 2.5rem;
  align-items: start;
}
@media (min-width: 900px) { .statement { grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; } }
.statement-num { font-family: var(--sans); font-size: 5.5rem; font-weight: 800; color: var(--blue); opacity: .18; line-height: 1; }
.statement-quote { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 700; line-height: 1.32; color: var(--navy); }
.statement-quote em { color: var(--gold); font-style: normal; }
.statement-body p { margin-top: 1.3rem; color: var(--ink-mute); font-size: 1.02rem; line-height: 1.75; max-width: 52ch; }
.statement-body p + p { margin-top: 1rem; }

/* --- Two paths (hiring / development) --- */
.paths { display: grid; gap: 1.6rem; }
@media (min-width: 820px) { .paths { grid-template-columns: 1fr 1fr; } }
.path-card { padding: clamp(1.9rem, 3vw, 2.6rem); }
.path-card .card-icon { border-color: var(--gold); }
.path-card--alt .card-icon { border-color: var(--violet); color: var(--violet); }
.path-list { margin-top: 1.4rem; display: grid; gap: .7rem; }
.path-list li {
  display: flex; gap: .65rem; align-items: flex-start;
  font-size: .93rem; color: var(--ink-soft);
}
.path-list li svg { width: 15px; height: 15px; margin-top: .2rem; flex-shrink: 0; color: var(--gold); }

/* --- Also-for professionals (psicólogos y coaches) --- */
.pro-card { padding: clamp(2rem, 3.4vw, 2.8rem); }
.pro-card-grid { display: grid; gap: 2rem; }
@media (min-width: 860px) { .pro-card-grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; } }
.pro-list { margin-top: 0; }
@media (min-width: 860px) { .pro-list { margin-top: 0; } }
.pro-cta { margin-top: 2.2rem; }

/* --- Steps (cómo funciona) --- */
.steps {
  display: grid; gap: 1.1rem;
  counter-reset: step;
}
@media (min-width: 780px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; } }
@media (min-width: 780px) { .steps--3 { grid-template-columns: repeat(3, 1fr); } }
.step-card { position: relative; padding-top: 2.6rem; }
.step-n {
  position: absolute; top: 1.6rem; left: clamp(1.6rem, 2.6vw, 2.2rem);
  font-size: .78rem; font-weight: 800; letter-spacing: .08em;
  color: var(--gold);
}
.step-card::after {
  content: ""; position: absolute; top: 0; left: clamp(1.6rem, 2.6vw, 2.2rem); right: clamp(1.6rem, 2.6vw, 2.2rem);
  height: 2px; background: linear-gradient(90deg, var(--gold), transparent);
}

/* --- Dimensions (15 recursos) --- */
.dim-grid { display: grid; gap: 1.4rem; }
@media (min-width: 860px) { .dim-grid { grid-template-columns: repeat(3, 1fr); } }
.dim-card { padding: clamp(1.8rem, 2.8vw, 2.3rem); }
.dim-card .kicker-tag { display: block; margin-bottom: .7rem; }
.dim-card h3 { font-size: 1.35rem; margin-bottom: .7rem; }
.dim-card p { color: var(--cream-mute); font-size: .93rem; margin-bottom: 1.3rem; }
.dim-list { display: flex; flex-wrap: wrap; gap: .5rem; }
.dim-list li {
  font-size: .78rem; font-weight: 600;
  padding: .38rem .75rem;
  border-radius: 999px;
  border: 1px solid var(--line-navy);
  color: var(--cream-text);
  background: rgba(242,240,232,0.04);
}

/* --- Behaviors (18 comportamientos) accordion --- */
.behav-grid { display: grid; gap: 1.1rem; }
@media (min-width: 780px) { .behav-grid { grid-template-columns: repeat(2, 1fr); } }
.behav-item {
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: var(--white);
  overflow: clip;
}
.behav-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 700; font-size: .98rem; text-align: left;
}
.behav-trigger-plus {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold);
  display: grid; place-items: center;
  transition: transform .4s var(--ease-soft), background-color .3s;
}
.behav-trigger-plus svg { width: 12px; height: 12px; }
.behav-item[data-open="true"] .behav-trigger-plus { transform: rotate(135deg); background: var(--gold); color: var(--white); }
.behav-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease-soft); }
.behav-panel-inner { overflow: hidden; }
.behav-item[data-open="true"] .behav-panel { grid-template-rows: 1fr; }
.behav-panel-list { padding: 0 1.4rem 1.3rem; display: grid; gap: .5rem; }
.behav-panel-list li { display: flex; gap: .6rem; font-size: .89rem; color: var(--ink-mute); }
.behav-panel-list li::before { content: "—"; color: var(--gold); flex-shrink: 0; }

/* --- Science / credibility --- */
.science-grid {
  display: grid; gap: 2.5rem;
}
@media (min-width: 960px) { .science-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.science-list { display: grid; gap: 1.5rem; }
.science-item { display: flex; gap: 1rem; }
.science-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px; border: 1.5px solid var(--gold); color: var(--gold);
  display: grid; place-items: center;
}
.science-item-icon svg { width: 19px; height: 19px; }
.science-item h4 { font-size: 1rem; margin-bottom: .35rem; }
.science-item p { font-size: .9rem; color: var(--cream-mute); }

.badge-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
.badge {
  font-size: .76rem; font-weight: 700; letter-spacing: .03em;
  padding: .5rem .9rem; border-radius: 8px;
  border: 1px solid var(--line-navy); color: var(--cream-mute);
}

.quote-block {
  position: relative;
  padding: 2rem 2.2rem;
  background: rgba(242,240,232,0.04);
  border: 1px solid var(--line-navy);
  border-radius: 16px;
}
.quote-block::before {
  content: "“"; position: absolute; top: -.4rem; left: 1.4rem;
  font-size: 4rem; color: var(--gold); opacity: .5; font-weight: 800;
}
.quote-block p { font-size: 1.1rem; font-style: italic; color: var(--cream-text); line-height: 1.6; }
.quote-block footer { margin-top: 1.1rem; font-size: .84rem; color: var(--gold-light); font-style: normal; font-weight: 700; }

/* --- Impact numbers --- */
.impact-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 860px) { .impact-grid { grid-template-columns: repeat(3, 1fr); } }
.impact-card { text-align: center; padding: 2rem 1.3rem; }
.impact-num { font-size: clamp(2.1rem, 4vw, 2.9rem); font-weight: 800; color: var(--navy); }
.impact-num .u { font-size: .55em; color: var(--gold); }
.impact-label { margin-top: .5rem; font-size: .88rem; color: var(--ink-mute); }
.impact-note { margin-top: .2rem; font-size: .74rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

/* --- Values (why BTI-LATAM) --- */
.values-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

/* --- Pain points (¿te sentís identificado?) --- */
.pain-grid { display: grid; gap: 1.4rem; }
@media (min-width: 720px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }
.pain-card .card-icon { border-color: var(--blue); color: var(--blue); }

/* --- What's included recap --- */
.includes-list {
  display: grid; gap: 1.2rem;
  max-width: 52rem; margin-inline: auto;
}
@media (min-width: 720px) { .includes-list { grid-template-columns: 1fr 1fr; gap: 1.4rem 2.4rem; } }
.includes-item { display: flex; gap: 1rem; align-items: flex-start; }
.includes-check {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%; background: var(--gold); color: var(--navy);
  display: grid; place-items: center;
}
.includes-check svg { width: 15px; height: 15px; }
.includes-item h4 { font-size: .98rem; margin-bottom: .25rem; }
.includes-item p { font-size: .88rem; color: var(--ink-mute); }
.includes-cta { text-align: center; margin-top: 2.8rem; }

/* --- FAQ --- */
.faq-list { display: grid; gap: .9rem; max-width: 52rem; }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: 1.3rem;
  font-weight: 700; font-size: 1.02rem; text-align: left;
}
.faq-trigger-plus {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%; border: 1.5px solid var(--navy); color: var(--navy);
  display: grid; place-items: center;
  transition: transform .4s var(--ease-soft);
}
.faq-trigger-plus svg { width: 13px; height: 13px; }
.faq-item[data-open="true"] .faq-trigger-plus { transform: rotate(135deg); background: var(--navy); color: var(--white); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease-soft); }
.faq-panel-inner { overflow: hidden; }
.faq-item[data-open="true"] .faq-panel { grid-template-rows: 1fr; }
.faq-panel p { padding-bottom: 1.4rem; color: var(--ink-mute); max-width: 58ch; line-height: 1.7; }

/* --- Final CTA + pricing --- */
.cta-copy--center { max-width: 42rem; margin-inline: auto; text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.cta-copy--center h2 { max-width: none; }
.cta-copy--center p { margin-top: 1.2rem; max-width: none; }

.pricing-grid { display: grid; gap: 1.6rem; align-items: start; }
@media (min-width: 820px) { .pricing-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.price-card {
  background: rgba(242,240,232,0.06);
  border: 1px solid var(--line-navy);
  border-radius: 18px;
  padding: clamp(1.9rem, 3vw, 2.6rem);
  display: flex; flex-direction: column;
}
.price-card--enterprise { border-color: rgba(139,111,196,0.45); }
.price-card-head { margin-bottom: 1rem; }
.price-title { color: var(--cream-text); margin-top: .3rem; }
.kicker-tag--violet { color: var(--violet); }
.price-value {
  font-size: clamp(2.6rem, 4.4vw, 3.4rem); font-weight: 800; color: var(--cream-text);
  padding-bottom: 1.4rem; margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-navy);
}
.price-value .cur { font-size: .38em; color: var(--gold-light); font-weight: 700; vertical-align: .6em; margin-right: .2rem; }
.price-value .per { font-size: .32em; color: var(--cream-mute); font-weight: 600; margin-left: .3rem; }
.price-value--consult { font-size: clamp(1.6rem, 2.6vw, 2rem); }

.price-includes { display: grid; gap: .9rem; margin-bottom: 1.6rem; flex-grow: 1; }
.price-includes li { display: flex; gap: .7rem; font-size: .93rem; color: var(--cream-mute); line-height: 1.5; }
.price-includes li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: .2rem; }
.price-card--enterprise .price-includes li svg { color: var(--violet); }

.price-cta { width: 100%; }
.price-card--enterprise .price-cta { border-color: var(--violet); color: var(--violet); }
.price-card--enterprise .price-cta:hover { background: rgba(139,111,196,0.1); }
.price-note { margin-top: 1rem; font-size: .78rem; color: var(--cream-dim); text-align: center; }

/* --- Footer --- */
.footer { background: var(--navy-deep); color: var(--cream-mute); padding-block: 3.5rem 2rem; }
.footer-top {
  display: grid; gap: 2.5rem;
  padding-bottom: 2.5rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--line-navy);
}
@media (min-width: 780px) { .footer-top { grid-template-columns: 1.3fr 1fr; } }
.footer-brand-mark { font-weight: 800; font-size: 1.3rem; color: var(--cream-text); }
.footer-brand-mark b { color: var(--gold); }
.footer-tagline { margin-top: .8rem; max-width: 32ch; font-size: .9rem; }
.footer-col-title { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-bottom: 1rem; }
.footer-links { display: grid; gap: .65rem; }
.footer-links a { font-size: .9rem; transition: color .3s; }
.footer-links a:hover { color: var(--cream-text); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .8rem; }
.footer-disclaimer {
  margin-top: 2rem; padding-top: 1.6rem;
  border-top: 1px solid var(--line-navy);
  max-width: 62rem; margin-inline: auto;
  text-align: center; font-size: .78rem; line-height: 1.7; color: var(--cream-dim);
}

/* =============================================================
   7. Effects (reveal, halo, etc.)
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }
[data-reveal-stagger] > * { transition-delay: calc(var(--i, 0) * 70ms); }

.hero-net-svg path { stroke: var(--navy); stroke-opacity: .1; }
.hero-net-svg circle { fill: var(--gold); }
.hero-net-dot { animation: netPulse 5s ease-in-out infinite; }
@keyframes netPulse { 0%, 100% { opacity: .35; } 50% { opacity: .9; } }

/* =============================================================
   9. Reduced motion — only truly intrusive loops
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-net-dot { animation: none; opacity: .6; }
}
