/* ═══════════════════════════════════════════════════
   12 PILLARS METHOD EXECUTIVE · REDESIGN v2
   Art direction: Dark luxury · Editorial authority
   Palette: Near-black + rich gold + ice white
   Fonts: Cormorant Garamond (display) + Outfit (body)
═══════════════════════════════════════════════════ */

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

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --ink:        #0A0A08;
  --ink-2:      #111110;
  --ink-3:      #1A1918;
  --ink-4:      #252421;
  --ink-5:      #30302D;

  --cream:      #F5F2EC;
  --cream-2:    #EDE9E0;
  --cream-3:    #E0DAD0;

  --gold:       #C9A84C;
  --gold-2:     #DDB95A;
  --gold-3:     #EDD07A;
  --gold-dim:   rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.25);

  --slate:      #8A8880;
  --slate-2:    #6A6866;
  --slate-3:    #4A4A48;

  --white:      #FAFAF8;
  --white-dim:  rgba(250,250,248,0.06);
  --white-dim2: rgba(250,250,248,0.10);
  --white-dim3: rgba(250,250,248,0.16);

  --green:      #2E7D52;
  --green-dim:  rgba(46,125,82,0.12);

  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  14px;
  --r-xl:  20px;
  --r-2xl: 28px;

  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-circ:  cubic-bezier(0.0, 0.0, 0.2, 1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  /* Semantic aliases (keep compatible with original JS) */
  --color-primary: var(--gold);
  --color-primary-hover: var(--gold-2);
  --color-primary-highlight: var(--gold-dim);
  --color-success: var(--green);
  --color-success-bg: var(--green-dim);
  --color-bg: var(--ink);
  --color-surface: var(--ink-2);
  --color-surface-offset: var(--ink-3);
  --color-border: var(--ink-5);
  --color-divider: var(--ink-4);
  --color-text: var(--white);
  --color-text-muted: var(--slate);
  --color-text-faint: var(--slate-2);
  --color-text-inverse: var(--ink);
  --color-gold: var(--gold);
  --color-gold-light: var(--gold-3);
  --color-gold-bg: rgba(201,168,76,0.08);
  --color-gold-border: var(--gold-border);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  color: var(--white);
  background: var(--ink);
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 400;
}
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; }

::selection { background: var(--gold-dim); color: var(--white); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; border-radius: var(--r-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── LAYOUT ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.section {
  padding-block: clamp(4rem, 9vw, 8rem);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-size: clamp(2.25rem, 1.2rem + 2.5vw, 3.75rem);
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 1rem;
  color: var(--slate);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.75;
  font-weight: 300;
}

/* ── NOISE TEXTURE OVERLAY ──────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.875rem 2rem;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background 200ms var(--ease-expo), transform 200ms var(--ease-expo), box-shadow 200ms var(--ease-expo);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary.btn-sm  { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn-primary.btn-lg  { padding: 1.125rem 2.5rem; font-size: 1rem; letter-spacing: 0.06em; }
.btn-primary.btn-full { width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 200ms var(--ease-expo);
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--slate);
  transition: background 200ms, color 200ms;
}
.btn-ghost:hover { background: var(--white-dim2); color: var(--white); }

.btn-ghost-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 200ms;
  padding: 0.75rem 0;
}
.btn-ghost-secondary:hover { color: var(--white); }

/* ── HEADER ──────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,8,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--ink-4);
  transition: box-shadow 240ms var(--ease-expo), transform 240ms var(--ease-expo);
}
.header--hidden { transform: translateY(-100%); }
.header--scrolled { box-shadow: 0 1px 0 var(--ink-5); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo-accent { color: var(--gold); }

.nav {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--slate);
  text-decoration: none;
  transition: color 200ms;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
}
.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 200ms var(--ease-expo);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 1rem clamp(1.25rem, 5vw, 4rem) 1.5rem;
  border-top: 1px solid var(--ink-4);
  background: var(--ink);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-size: 1rem;
  font-weight: 400;
  color: var(--slate);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--ink-4);
  transition: color 200ms;
}
.mobile-nav-link:hover { color: var(--white); }
.mobile-cta { margin-top: 1rem; text-align: center; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 10vw, 8rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Fine grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--ink-4) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink-4) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 30%, transparent 100%);
}

/* Ambient glow */
.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70vw;
  height: 60vh;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 70%);
}

/* Diagonal accent line */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--gold-border), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--slate-3);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 1rem + 7vw, 8.5rem);
  line-height: 0.95;
  color: var(--white);
  max-width: 12ch;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subhead {
  font-size: clamp(1rem, 0.85rem + 0.5vw, 1.1875rem);
  color: var(--slate);
  max-width: 54ch;
  line-height: 1.75;
  font-weight: 300;
}

/* Metrics */
.hero-metrics {
  display: flex;
  gap: 1px;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid var(--ink-5);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-4);
}

.metric-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 1.25rem 2rem;
  background: var(--ink-2);
  min-width: 130px;
  flex: 1;
  position: relative;
}
.metric-chip::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: var(--ink-4);
}
.metric-chip:last-child::after { display: none; }

.metric-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.2rem + 1.25vw, 2.5rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}

.metric-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--slate);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.02em;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-proof-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink-4);
  width: 100%;
  max-width: 620px;
}

.sp-label {
  font-size: 0.75rem;
  color: var(--slate-2);
  white-space: nowrap;
}

.sp-logos {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.sp-logo {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.04em;
}

.sp-sep { color: var(--slate-3); }

.variant-badge {
  display: none;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}
.variant-badge.show { display: inline-block; }

/* ── PAIN POINTS ─────────────────────────────────── */
.pain {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-4);
  border-bottom: 1px solid var(--ink-4);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--ink-4);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.pain-card {
  background: var(--ink-2);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 200ms;
}
.pain-card:hover { background: var(--ink-3); }

.pain-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.pain-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--white);
  font-weight: 400;
}

.pain-desc {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.7;
  font-weight: 300;
}

.pain-stat {
  font-size: 0.75rem;
  color: var(--slate-2);
  background: var(--ink-3);
  border: 1px solid var(--ink-5);
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  margin-top: auto;
  line-height: 1.5;
}
.pain-stat strong { color: var(--gold); font-weight: 600; }

/* ── VIDEO / CALENDLY SECTION ────────────────────── */
.video-section {
  background: var(--ink);
}

.video-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.video-text { display: flex; flex-direction: column; gap: 1.75rem; }

.video-desc {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.8;
  font-weight: 300;
}

.video-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.video-features li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--white);
}
.video-features li svg { flex-shrink: 0; }

/* Calendly card */
.calendly-cta-wrap { flex: 1; }

.calendly-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--ink-5);
  background: var(--ink-2);
  transition: transform 240ms var(--ease-expo), box-shadow 240ms var(--ease-expo);
}
.calendly-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.calendly-card-top {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.calendly-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-expo);
  filter: grayscale(20%);
}
.calendly-card:hover .calendly-img { transform: scale(1.05); }

.calendly-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, var(--ink-2) 100%);
}

.calendly-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calendly-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.avail-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(46,125,82,0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(46,125,82,0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(46,125,82,0.08); }
}

.calendly-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--white);
  line-height: 1.25;
  font-weight: 400;
}

.calendly-desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.7;
  font-weight: 300;
}

.calendly-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cal-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--slate);
  font-weight: 400;
}

.calendly-btn { justify-content: center; }

.calendly-note {
  font-size: 0.75rem;
  color: var(--slate-2);
  text-align: center;
  font-style: italic;
  max-width: none;
}

/* ── RESULTS ─────────────────────────────────────── */
.results {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-4);
  border-bottom: 1px solid var(--ink-4);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--ink-4);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.result-card {
  background: var(--ink-2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 200ms;
}
.result-card:hover { background: var(--ink-3); }

.result-card--large {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.03) 100%);
  border-right: 1px solid var(--gold-border);
}
.result-card--large:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.05) 100%);
}
.result-card--large .kpi-number { color: var(--gold-2); font-size: clamp(2.5rem, 1.5rem + 2vw, 4rem); }
.result-card--large .result-title { color: var(--white); }
.result-card--large .result-desc { color: var(--slate); }
.result-card--large .result-icon--primary {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.result-icon {
  width: 44px; height: 44px;
  background: var(--white-dim);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border: 1px solid var(--ink-5);
}

.result-kpi {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kpi-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 400;
}

.kpi-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--slate-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.result-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 400;
}
.result-desc {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.65;
  font-weight: 300;
}
.result-desc-sm {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
  font-weight: 300;
}

.result-proof {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gold-border);
}
.proof-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
}
.proof-quote {
  font-size: 0.8125rem;
  color: rgba(250,250,248,0.6);
  line-height: 1.5;
  max-width: none;
  font-style: italic;
  font-family: var(--font-display);
}

/* ── METHODOLOGY ─────────────────────────────────── */
.methodology { background: var(--ink); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-4);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.pillar-card {
  background: var(--ink-2);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 200ms;
  position: relative;
}
.pillar-card:hover { background: var(--ink-3); }

.pillar-card--featured {
  background: linear-gradient(160deg, rgba(201,168,76,0.07), var(--ink-2));
  border-top: 2px solid var(--gold);
}
.pillar-card--featured::before {
  content: 'Diferenciador exclusivo';
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.pillar-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--ink-5);
}
.pillar-icon--neuro  { background: rgba(74,159,192,0.08); color: #4A9FC0; }
.pillar-icon--equine { background: var(--gold-dim); color: var(--gold); border-color: var(--gold-border); }
.pillar-icon--forest { background: var(--green-dim); color: #4DAA6A; }

.pillar-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-2);
  text-align: right;
  line-height: 1.4;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--white);
  line-height: 1.2;
  font-weight: 400;
}

.pillar-science {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  padding: 3px 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  display: inline-block;
  width: fit-content;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}

.pillar-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0.5rem;
}

.outcome-chip {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--slate);
  background: var(--ink-3);
  border: 1px solid var(--ink-5);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}
.pillar-card--featured .outcome-chip {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold);
}

.pillar-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--slate-2);
  font-style: italic;
  padding-top: 0.875rem;
  border-top: 1px solid var(--ink-4);
  margin-top: auto;
}

/* Process steps */
.method-process {
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
}

.process-header { margin-bottom: 2rem; }
.process-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  font-weight: 400;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 19px;
  left: calc(33.33% + 8px);
  right: calc(33.33% + 8px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-border), var(--gold), var(--gold-border));
  opacity: 0.4;
}

.process-step { display: flex; flex-direction: column; gap: 1rem; }

.step-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  justify-content: center;
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.step-body { display: flex; flex-direction: column; gap: 0.5rem; }
.step-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
}
.step-desc {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
  font-weight: 300;
}

/* ── ABOUT DAVID ─────────────────────────────────── */
.about-section {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-4);
  border-bottom: 1px solid var(--ink-4);
}

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonials { background: var(--ink); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--ink-4);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.testimonial-card {
  background: var(--ink-2);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: background 200ms;
}
.testimonial-card:hover { background: var(--ink-3); }

.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.07), var(--ink-2));
  border-top: 1px solid var(--gold-border);
}

.stars {
  font-size: 0.875rem;
  color: var(--gold);
  letter-spacing: 3px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-style: italic;
  color: rgba(250,250,248,0.85);
  line-height: 1.7;
  flex: 1;
  font-weight: 300;
}
.testimonial-quote::before { content: '"'; }
.testimonial-quote::after  { content: '"'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--ink-5);
  flex-shrink: 0;
  filter: grayscale(30%);
}
.author-info { display: flex; flex-direction: column; gap: 2px; }
.author-name { font-weight: 600; font-size: 0.875rem; color: var(--white); }
.author-role { font-size: 0.75rem; color: var(--slate-2); }

.testimonial-metric {
  font-size: 0.75rem;
  color: var(--slate);
  background: var(--ink-3);
  border: 1px solid var(--ink-5);
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-sm);
}
.metric-highlight {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--gold);
  font-style: normal;
}

/* ── PRICING ─────────────────────────────────────── */
.pricing { background: var(--ink-2); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-4);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-xl);
  overflow: hidden;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.pricing-card {
  background: var(--ink-2);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: background 200ms;
}
.pricing-card:hover { background: var(--ink-3); }

.pricing-card--featured {
  background: linear-gradient(160deg, rgba(201,168,76,0.08), var(--ink-2));
  border-top: 2px solid var(--gold);
}

.pricing-badge-top {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
}

.pricing-tier {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.pricing-for {
  font-size: 0.8125rem;
  color: var(--slate);
  line-height: 1.5;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding-block: 0.5rem;
  border-block: 1px solid var(--ink-4);
}
.price-from { font-size: 0.75rem; color: var(--slate-2); }
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  color: var(--white);
  line-height: 1;
  font-weight: 300;
}
.price-unit { font-size: 0.875rem; color: var(--slate); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--slate);
  padding-left: 1.25rem;
  position: relative;
  max-width: none;
  line-height: 1.5;
  font-weight: 300;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.pricing-features li strong {
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--slate-2);
  text-align: center;
}

.pricing-guarantee {
  background: rgba(46,125,82,0.06);
  border: 1px solid rgba(46,125,82,0.2);
  border-radius: var(--r-xl);
  padding: 2.5rem clamp(2rem, 5vw, 4rem);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.guarantee-text { display: flex; flex-direction: column; gap: 0.5rem; }
.guarantee-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: #4DAA6A;
  font-weight: 400;
}
.guarantee-desc { font-size: 0.875rem; color: var(--slate); line-height: 1.65; max-width: 70ch; }

/* ── CONTACT ─────────────────────────────────────── */
.contact { background: var(--ink); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-text { display: flex; flex-direction: column; gap: 1.75rem; }

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.5rem + 2vw, 3.5rem);
  line-height: 1.05;
  font-weight: 300;
}
.contact-headline em { font-style: italic; color: var(--gold); }

.contact-desc {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
  font-weight: 300;
}

.contact-trust { display: flex; flex-direction: column; gap: 0.875rem; padding-top: 0.5rem; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--slate);
  font-weight: 300;
}

.contact-form-wrap {
  background: var(--ink-2);
  border: 1px solid var(--ink-5);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3rem);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-field { display: flex; flex-direction: column; gap: 0.5rem; }

.form-field label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--ink-3);
  border: 1px solid var(--ink-5);
  border-radius: var(--r-sm);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: var(--white);
  transition: border-color 200ms, box-shadow 200ms;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--slate-2); }

.form-field input.error,
.form-field textarea.error { border-color: #c0392b; }

.form-privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--slate-2);
  text-align: center;
  justify-content: center;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 3rem;
}
.success-icon { color: var(--gold); }
.success-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 400; }
.success-desc { font-size: 0.875rem; color: var(--slate); }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-4);
  padding-block: 2.5rem;
}

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

.footer-tagline {
  font-size: 0.75rem;
  color: var(--slate-2);
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.8125rem;
  color: var(--slate);
  transition: color 200ms;
}
.footer-nav a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--slate-2);
  max-width: none;
}
.footer-copy a { color: var(--slate); text-decoration: underline; text-underline-offset: 3px; }

/* ── STICKY CTA MOBILE ───────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 1rem clamp(1.25rem, 5vw, 2rem);
  background: rgba(10,10,8,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--ink-4);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}
.sticky-cta.visible { display: block; }

/* ── EXIT INTENT POPUP ───────────────────────────── */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.exit-popup[hidden] { display: none; }

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
}

.popup-content {
  position: relative;
  z-index: 1;
  background: var(--ink-2);
  border: 1px solid var(--ink-5);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 480px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  animation: popupIn 0.4s var(--ease-expo);
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.375rem;
  line-height: 1;
  color: var(--slate);
  cursor: pointer;
  transition: color 200ms;
}
.popup-close:hover { color: var(--white); }

.popup-icon { font-size: 2.5rem; line-height: 1; }
.popup-title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 400; }
.popup-desc { font-size: 0.9375rem; color: var(--slate); line-height: 1.65; }

.popup-form { display: flex; flex-direction: column; gap: 0.75rem; }
.popup-input {
  width: 100%;
  background: var(--ink-3);
  border: 1px solid var(--ink-5);
  border-radius: var(--r-sm);
  padding: 0.875rem 1rem;
  font-size: 0.9375rem;
  color: var(--white);
  transition: border-color 200ms;
}
.popup-input:focus { outline: none; border-color: var(--gold); }
.popup-privacy { font-size: 0.75rem; color: var(--slate-2); }

/* ── SCROLL REVEAL ───────────────────────────────── */
[data-scroll-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
[data-scroll-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-card--large { grid-column: span 2; border-right: none; border-bottom: 1px solid var(--gold-border); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .pillar-card--featured { grid-column: span 2; }
  .pillar-card--featured::before { right: auto; left: 1.5rem; }
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-steps::before { display: none; }
  .process-step { flex-direction: row; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 768px) {
  .nav, .header-actions .btn-primary { display: none; }
  .menu-toggle { display: flex; }
  .header-actions { margin-left: auto; }

  .video-wrapper { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .result-card--large { grid-column: span 1; }
  .hero-metrics { flex-direction: row; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-ghost-secondary { justify-content: center; }
  .sticky-cta { display: block; }
  .pricing-guarantee { flex-direction: column; }
  .pain-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card--featured { grid-column: span 1; }
  .metric-chip { min-width: 110px; }
}

@media (max-width: 480px) {
  .hero-metrics { flex-direction: column; }
  .metric-chip { flex-direction: row; justify-content: space-between; }
  .metric-chip::after { display: none; }
}
