/* ═══════════════════════════════════════════
   DESIGN TOKENS — LUMORA PREMIUM
═══════════════════════════════════════════ */
:root {
  /* Color */
  --ink:        #060F1E;
  --navy-900:   #0A1628;
  --navy-800:   #0D1E35;
  --navy-700:   #122340;
  --navy:       #1B2B4B;
  --navy-mid:   #243860;
  --gold:       #C4952A;
  --gold-lt:    #D4AA45;
  --gold-pale:  rgba(196,149,42,.10);
  --gold-glow:  rgba(196,149,42,.25);
  --teal:       #0B6E62;
  --cream:      #F8F4EF;
  --white:      #FFFFFF;
  --gray-100:   #F0F2F5;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #64748B;
  --text:       #0F172A;

  /* Type */
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Sora', sans-serif;
  --body:    'Inter', sans-serif;

  /* Radius */
  --r2: 2px;  --r4: 4px;  --r8: 8px;
  --r12: 12px; --r16: 16px; --r24: 24px; --r32: 32px;

  /* Shadow */
  --sh-sm:  0 1px 4px rgba(6,15,30,.08);
  --sh-md:  0 4px 24px rgba(6,15,30,.12);
  --sh-lg:  0 16px 64px rgba(6,15,30,.18);
  --sh-xl:  0 32px 80px rgba(6,15,30,.24);
  --sh-gold:0 8px 40px rgba(196,149,42,.30);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform .1s ease, width .2s, height .2s, background .2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(196,149,42,.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform .12s ease, width .25s, height .25s, border-color .25s;
}
body.hovering .cursor-dot  { width: 12px; height: 12px; background: var(--gold-lt); }
body.hovering .cursor-ring { width: 52px; height: 52px; border-color: var(--gold); }
@media (max-width: 768px) { .cursor-dot, .cursor-ring { display: none; } body { cursor: auto; } }

/* ═══════════════════════════════════════════
   SCROLL PROGRESS
═══════════════════════════════════════════ */
#progress {
  position: fixed; top: 0; left: 0; z-index: 9997;
  height: 2px; width: 0;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  transition: width .1s linear;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.wrap    { max-width: 1260px; margin: 0 auto; padding: 0 32px; }
.wrap-sm { max-width:  900px; margin: 0 auto; padding: 0 32px; }
.wrap-xs { max-width:  720px; margin: 0 auto; padding: 0 32px; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY UTILITIES
═══════════════════════════════════════════ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 16px;
}
.eyebrow.dark { color: var(--navy-mid); }

.display-xl {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -1px; color: var(--white);
}
.display-xl em { font-style: italic; color: var(--gold); }

.display-lg {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.5px; color: var(--navy);
}
.display-lg em { font-style: italic; color: var(--gold); }
.display-lg.white { color: var(--white); }

.display-md {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; line-height: 1.15;
  color: var(--navy);
}
.display-md em { font-style: italic; color: var(--gold); }
.display-md.white { color: var(--white); }

.lead {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--gray-400); line-height: 1.8;
}
.lead.dark { color: var(--gray-600); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  padding: 14px 32px; border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: none; transition: all .25s ease;
  letter-spacing: .4px; white-space: nowrap;
}
.btn-gold   { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--sh-gold); }
.btn-ghost  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--navy); border-color: var(--navy-mid); }
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ink    { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--navy-800); transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 17px 44px; font-size: 15px; }

/* ═══════════════════════════════════════════
   REVEAL
═══════════════════════════════════════════ */
.reveal          { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.from-left { transform: translateX(-36px); }
.reveal.from-right{ transform: translateX(36px); }
.reveal.visible  { opacity: 1; transform: translate(0); }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 14px 22px; border-radius: 2px;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: all .25s; cursor: none;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (max-width: 600px) { .wa-float span { display: none; } .wa-float { padding: 14px; } }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 24px 0; transition: all .4s ease;
}
#nav.solid {
  background: rgba(6,15,30,.96);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 12px; cursor: none; }
.logo img { height: 34px; width: auto; }
.logo-wordmark { font-family: var(--sans); font-weight: 800; font-size: 18px; color: var(--white); letter-spacing: 2px; line-height: 1; }
.logo-sub { font-size: 7px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-top: 2px; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.65); transition: color .2s; cursor: none;
  letter-spacing: .3px;
}
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-contact {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--gold); border-bottom: 1px solid rgba(196,149,42,.4);
  padding-bottom: 1px; transition: border-color .2s; cursor: none;
}
.nav-contact:hover { border-color: var(--gold); }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: white; margin: 5px 0; transition: all .3s; }

.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: var(--ink); z-index: 790;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a { font-family: var(--serif); font-size: 32px; color: white; }
.mobile-overlay a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 28px; right: 32px; font-size: 28px; color: white; background: none; border: none; cursor: pointer; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--ink);
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 80px;
  position: relative; overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 900px 700px at 75% 30%, rgba(196,149,42,.07) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 15% 70%, rgba(11,110,98,.06) 0%, transparent 55%),
    radial-gradient(ellipse 500px 400px at 50% 10%, rgba(27,43,75,.4) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-deco {
  position: absolute; top: -40px; right: -20px; z-index: 0;
  font-family: var(--serif); font-size: 340px; font-weight: 800;
  color: rgba(255,255,255,.02); line-height: 1; pointer-events: none;
  letter-spacing: -10px; user-select: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end;
  padding-top: 160px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(196,149,42,.25);
  padding: 8px 18px; margin-bottom: 32px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  color: var(--gold-lt); letter-spacing: 2.5px; text-transform: uppercase;
}
.badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 2s infinite; flex-shrink: 0; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:.3; } }
.hero h1 { margin-bottom: 28px; }
.hero h1 .italic { font-style: italic; }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.55);
  line-height: 1.8; max-width: 460px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-proof {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.08);
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-val { font-family: var(--sans); font-size: 22px; font-weight: 800; color: var(--white); line-height: 1; }
.proof-lbl { font-size: 11px; color: rgba(255,255,255,.40); letter-spacing: 1px; text-transform: uppercase; }
.proof-divider { width: 1px; background: rgba(255,255,255,.10); align-self: stretch; }

.hero-visual { position: relative; align-self: end; }
.hero-photo {
  width: 100%; aspect-ratio: 3/4;
  border-radius: 0;
  overflow: hidden;
  background: var(--navy);
  position: relative;
  box-shadow: var(--sh-xl);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: brightness(.92) contrast(1.04);
}
.hero-photo-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,15,30,.9) 0%, transparent 70%);
  padding: 32px 28px 28px;
}
.photo-name { font-family: var(--serif); font-size: 18px; font-weight: 600; color: white; }
.photo-role { font-family: var(--sans); font-size: 12px; color: var(--gold-lt); letter-spacing: 1px; margin-top: 3px; }
.hero-metric {
  position: absolute; top: 32px; left: -48px;
  background: white; padding: 18px 22px;
  box-shadow: var(--sh-lg);
  display: flex; flex-direction: column; gap: 4px;
  min-width: 160px;
}
.metric-num { font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--navy); line-height: 1; }
.metric-lbl { font-size: 12px; color: var(--gray-600); }
.metric-delta { font-size: 11px; color: #16A34A; font-weight: 600; }
.hero-metric::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); }
.hero-tag {
  position: absolute; bottom: 80px; right: -32px;
  background: var(--gold); padding: 12px 20px;
  font-family: var(--sans); font-size: 12px; font-weight: 700;
  color: var(--ink); letter-spacing: 1.5px; text-transform: uppercase;
  box-shadow: var(--sh-gold);
}

/* ═══════════════════════════════════════════
   MARQUEE — TRUST BAR
═══════════════════════════════════════════ */
.marquee-section {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 0 48px;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.40); letter-spacing: 2px; text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.marquee-item .m-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; opacity: .7; }

/* ═══════════════════════════════════════════
   STATEMENT SECTION
═══════════════════════════════════════════ */
.statement {
  padding: 120px 0;
  background: var(--cream);
}
.statement-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.statement-num {
  font-family: var(--serif); font-size: 140px; font-weight: 700;
  color: rgba(27,43,75,.06); line-height: 1;
  margin-bottom: -40px; display: block;
}
.statement-desc { margin-top: 20px; }
.statement-list { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.sl-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--gray-200);
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  color: var(--navy); transition: all .2s;
}
.sl-item:first-child { border-top: 1px solid var(--gray-200); }
.sl-item:hover { color: var(--gold); padding-left: 6px; }
.sl-num { font-family: var(--serif); font-size: 11px; color: var(--gold); min-width: 24px; }
.sl-arrow { margin-left: auto; font-size: 18px; color: var(--gray-400); transition: transform .2s; }
.sl-item:hover .sl-arrow { transform: translateX(4px); color: var(--gold); }

.statement-visual { position: relative; }
.sv-photo {
  width: 100%; aspect-ratio: 4/5;
  overflow: hidden; background: var(--navy);
}
.sv-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(.9); }
.sv-card-over {
  position: absolute; bottom: -32px; right: -32px;
  background: var(--navy); padding: 28px 32px;
  width: 240px;
  box-shadow: var(--sh-xl);
}
.sv-card-over::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); }
.sco-label { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.sco-val { font-family: var(--serif); font-size: 40px; font-weight: 700; color: white; line-height: 1; }
.sco-desc { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }

/* ═══════════════════════════════════════════
   SERVICES — À LA CARTE
═══════════════════════════════════════════ */
.services {
  padding: 140px 0;
  background: var(--navy-900);
  position: relative; overflow: hidden;
}
.services::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 600px at 80% 20%, rgba(196,149,42,.05) 0%, transparent 60%);
}
.services-head { margin-bottom: 80px; }
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 80px;
}
.services-intro-left { }
.services-intro-right { padding-bottom: 8px; }
.services-note {
  font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,.40);
  line-height: 1.7; max-width: 400px;
  border-left: 2px solid var(--gold); padding-left: 20px;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
}
.srv-card {
  background: var(--navy-900);
  padding: 48px 40px;
  position: relative;
  transition: background .3s;
  cursor: none;
}
.srv-card:hover { background: rgba(255,255,255,.03); }
.srv-card.highlight { background: rgba(196,149,42,.06); }
.srv-card.highlight:hover { background: rgba(196,149,42,.09); }
.srv-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0; transition: opacity .3s;
}
.srv-card:hover::after, .srv-card.highlight::after { opacity: 1; }
.srv-index {
  font-family: var(--serif); font-size: 48px; font-weight: 700;
  color: rgba(255,255,255,.04); line-height: 1;
  position: absolute; top: 20px; right: 24px;
}
.srv-icon-wrap {
  width: 48px; height: 48px;
  border: 1px solid rgba(196,149,42,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 28px;
}
.srv-name {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.srv-desc {
  font-size: 14px; color: rgba(255,255,255,.45);
  line-height: 1.75; margin-bottom: 28px;
}
.srv-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 28px;
}
.price-from { font-size: 12px; color: rgba(255,255,255,.35); font-family: var(--sans); }
.price-sym  { font-size: 18px; font-weight: 700; color: var(--gold); font-family: var(--sans); }
.price-amount { font-family: var(--serif); font-size: 42px; font-weight: 700; color: var(--gold); line-height: 1; }
.price-period { font-size: 12px; color: rgba(255,255,255,.35); font-family: var(--sans); align-self: flex-end; padding-bottom: 6px; }
.price-commission { font-size: 13px; color: var(--gold-lt); font-family: var(--sans); font-weight: 600; }
.srv-includes { margin-bottom: 32px; }
.srv-includes-label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: 12px;
}
.srv-feat-list { display: flex; flex-direction: column; gap: 8px; }
.srv-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,.60);
}
.srv-feat::before { content: '—'; color: var(--gold); opacity: .6; flex-shrink: 0; font-size: 11px; }
.srv-note {
  font-size: 11px; color: rgba(255,255,255,.25); font-style: italic;
  margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.06);
}
.srv-cta-wrap { margin-top: auto; }
.srv-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--gold); letter-spacing: .5px;
  border-bottom: 1px solid rgba(196,149,42,.3);
  padding-bottom: 2px; transition: all .2s; cursor: none;
}
.srv-cta:hover { color: var(--gold-lt); border-color: var(--gold-lt); gap: 14px; }
.srv-cta.cotizar { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.15); }
.srv-cta.cotizar:hover { color: var(--white); border-color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════
   METHODOLOGY
═══════════════════════════════════════════ */
.method {
  padding: 140px 0;
  background: var(--cream);
}
.method-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}
.method-left { position: sticky; top: 120px; }
.method-left .display-lg { margin-bottom: 24px; }
.method-left .lead { color: var(--gray-600); }
.method-left .btn { margin-top: 36px; }
.method-phases { display: flex; flex-direction: column; gap: 0; }
.phase {
  display: flex; gap: 28px;
  padding: 36px 0; border-bottom: 1px solid var(--gray-200);
  transition: all .3s;
}
.phase:first-child { border-top: 1px solid var(--gray-200); }
.phase:hover { padding-left: 8px; }
.phase-num {
  font-family: var(--serif); font-size: 42px; font-weight: 700;
  color: rgba(27,43,75,.10); line-height: 1; flex-shrink: 0;
  width: 60px; text-align: right;
  transition: color .3s;
}
.phase:hover .phase-num { color: rgba(196,149,42,.4); }
.phase-body { flex: 1; }
.phase-week { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.phase-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.phase-desc { font-size: 14px; color: var(--gray-600); line-height: 1.72; }
.phase-items { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.phase-item { font-size: 13px; color: var(--navy-mid); display: flex; align-items: center; gap: 8px; }
.phase-item::before { content: ''; width: 16px; height: 1px; background: var(--gold); opacity: .5; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   RESULTS
═══════════════════════════════════════════ */
.results {
  padding: 140px 0;
  background: var(--ink);
}
.results-head { text-align: center; margin-bottom: 80px; }
.results-head .lead { color: rgba(255,255,255,.40); margin-top: 16px; }
.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
}
.res-card {
  background: var(--ink);
  padding: 48px 40px;
  position: relative;
  transition: background .3s;
  cursor: none;
}
.res-card:hover { background: rgba(255,255,255,.03); }
.res-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, var(--gold), transparent); opacity: 0; transition: opacity .3s; }
.res-card:hover::before { opacity: 1; }
.res-quote-mark {
  font-family: var(--serif); font-size: 80px; line-height: 1;
  color: rgba(196,149,42,.15); margin-bottom: 20px;
  display: block; margin-left: -8px;
}
.res-quote { font-family: var(--serif); font-size: 16px; font-style: italic; color: rgba(255,255,255,.70); line-height: 1.8; margin-bottom: 32px; }
.res-author { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07); }
.res-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 1.5px solid rgba(196,149,42,.3); flex-shrink: 0; }
.res-initials { width: 52px; height: 52px; border-radius: 50%; background: var(--navy-mid); border: 1.5px solid rgba(196,149,42,.3); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.res-name  { font-family: var(--sans); font-size: 14px; font-weight: 600; color: var(--white); }
.res-spec  { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 2px; }
.res-stars { color: var(--gold); font-size: 11px; margin-top: 3px; }
.res-metrics { display: flex; gap: 20px; }
.res-m-val { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--gold); line-height: 1; }
.res-m-lbl { font-size: 11px; color: rgba(255,255,255,.30); margin-top: 3px; letter-spacing: .5px; text-transform: uppercase; }

/* ═══════════════════════════════════════════
   DIFFERENTIATORS
═══════════════════════════════════════════ */
.diff {
  padding: 120px 0;
  background: var(--cream);
}
.diff-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.diff-table { margin-top: 40px; }
.diff-row {
  display: grid; grid-template-columns: 1fr 48px 1fr;
  align-items: stretch; margin-bottom: 2px;
}
.diff-col {
  padding: 16px 20px; font-size: 14px; display: flex; align-items: center;
  font-family: var(--body);
}
.diff-col.them { background: #FEF2F2; color: #991B1B; border-radius: var(--r4) 0 0 var(--r4); }
.diff-col.us   { background: rgba(11,110,98,.08); color: #065F46; border-radius: 0 var(--r4) var(--r4) 0; }
.diff-vs { background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: 9px; font-weight: 700; color: var(--gold); letter-spacing: 1px; }
.diff-visual { position: relative; }
.diff-img { width: 100%; aspect-ratio: 4/5; overflow: hidden; }
.diff-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.88); }
.diff-overlay-card {
  position: absolute; top: 40px; right: -28px;
  background: var(--navy); padding: 24px 28px; min-width: 200px;
  box-shadow: var(--sh-xl);
}
.diff-overlay-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); }
.doc-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-family: var(--sans); margin-bottom: 8px; }
.doc-stat  { font-family: var(--serif); font-size: 36px; font-weight: 700; color: white; line-height: 1; }
.doc-sub   { font-size: 12px; color: rgba(255,255,255,.40); margin-top: 4px; }

/* ═══════════════════════════════════════════
   CONTACT BANNER — HUBSPOT
═══════════════════════════════════════════ */
.contact {
  padding: 140px 0;
  background: var(--navy-800);
  position: relative; overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 500px at 70% 50%, rgba(196,149,42,.06) 0%, transparent 60%);
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
  position: relative; z-index: 1;
}
.contact-left .display-md { margin-bottom: 20px; }
.contact-left .lead { color: rgba(255,255,255,.45); }
.contact-proof { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.cp-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: var(--sans); font-size: 14px; font-weight: 500; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.cp-item:hover { color: rgba(255,255,255,.80); }
.cp-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid rgba(196,149,42,.25);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}

.form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 48px 44px;
  position: relative;
}
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--gold), transparent); }
.form-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.form-sub   { font-size: 13px; color: rgba(255,255,255,.35); margin-bottom: 32px; }

.f-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.f-group label { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.35); }
.f-group input,
.f-group select,
.f-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  padding: 13px 16px; font-size: 14px; font-family: var(--body);
  color: white; transition: border-color .2s; border-radius: 0;
  appearance: none; -webkit-appearance: none;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,149,42,.08);
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: rgba(255,255,255,.20); }
.f-group select option { background: var(--navy-800); }
.f-group textarea { resize: none; min-height: 96px; }
.f-submit {
  width: 100%; padding: 16px; margin-top: 6px;
  background: var(--gold); color: var(--ink);
  font-family: var(--sans); font-size: 14px; font-weight: 700;
  letter-spacing: .5px; border: none; cursor: none;
  transition: all .25s;
}
.f-submit:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--sh-gold); }
.f-privacy { font-size: 11px; color: rgba(255,255,255,.20); text-align: center; margin-top: 12px; }
#formSuccess {
  display: none; text-align: center; padding: 60px 20px;
}
.fs-icon { font-size: 56px; margin-bottom: 20px; }
.fs-title { font-family: var(--serif); font-size: 26px; font-weight: 600; color: white; margin-bottom: 10px; }
.fs-sub   { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.7; }
.fs-sub a { color: var(--gold); }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq {
  padding: 120px 0;
  background: var(--cream);
}
.faq-head { text-align: center; margin-bottom: 72px; }
.faq-head .display-md { margin-bottom: 16px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: none; gap: 16px;
}
.faq-q h3 { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--navy); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 300; color: var(--gold);
  transition: transform .3s, background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--ink); border-color: var(--gold); }
.faq-a { display: none; padding-bottom: 22px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 15px; color: var(--gray-600); line-height: 1.8; }

/* ═══════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════ */
.cta-final {
  padding: 140px 0;
  background: var(--ink);
  text-align: center; position: relative; overflow: hidden;
}
.cta-final-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 600px at 50% 50%, rgba(196,149,42,.06) 0%, transparent 65%);
}
.cta-final > .wrap { position: relative; z-index: 1; }
.cta-final .display-lg { color: var(--white); margin-bottom: 20px; }
.cta-final .lead { color: rgba(255,255,255,.45); max-width: 560px; margin: 0 auto 48px; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-note { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,.25); letter-spacing: .5px; margin-top: 24px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 72px 0 36px;
}
.foot-grid {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.foot-brand-desc { font-size: 14px; color: rgba(255,255,255,.35); line-height: 1.75; margin-top: 20px; max-width: 280px; }
.foot-contact-items { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.foot-contact-items a { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.40); transition: color .2s; cursor: none; }
.foot-contact-items a:hover { color: var(--gold); }
.foot-col h4 { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.foot-col ul { display: flex; flex-direction: column; gap: 12px; }
.foot-col ul li a { font-size: 13px; color: rgba(255,255,255,.40); transition: color .2s; cursor: none; }
.foot-col ul li a:hover { color: var(--white); }
.foot-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot-copy { font-size: 12px; color: rgba(255,255,255,.22); font-family: var(--sans); }
.foot-copy strong { color: var(--gold); }
.socials { display: flex; gap: 12px; }
.soc-btn { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.35); transition: all .2s; cursor: none; }
.soc-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width:1024px) {
  .hero-inner, .statement-inner, .method-inner,
  .contact-inner, .diff-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { display: none; }
  .services-intro { grid-template-columns: 1fr; gap: 32px; }
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .method-left { position: static; }
}
@media (max-width:768px) {
  .nav-links, .nav-right > .btn { display: none; }
  .hamburger { display: block; }
  .hero { padding-bottom: 60px; }
  .hero-inner { padding-top: 120px; }
  .srv-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .diff-overlay-card { display: none; }
  .f-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .display-xl { font-size: 38px; }
  .display-lg { font-size: 30px; }
}
