/* ==========================================================================
   SV IMMOBILIARE — Strategic Real Estate Logistics & Advisory
   ========================================================================== */

:root {
  /* --- Colore primario: Blu Notte Istituzionale ---
     Trasmette autorità, stabilità e affidabilità bancaria/finanziaria.
     È il colore delle grandi private bank e dei fondi: sobrio, mai gridato. */
  --primary: #0B2A4A;
  --primary-deep: #061726;
  --primary-light: #16456F;

  /* --- Accento 1: Oro Anticato ---
     Innesca desiderio e percezione di prestigio/esclusività.
     Usato con parsimonia: solo su CTA, numeri chiave, dettagli. */
  --gold: #C9A227;
  --gold-light: #E4C25C;
  --gold-dim: rgba(201, 162, 39, 0.16);

  /* --- Accento 2: Verde Smeraldo Profondo ---
     Associazione a crescita, rendimento, "via libera": bilancia l'oro
     con un segnale di sicurezza/positività finanziaria. */
  --emerald: #1E6F5C;
  --emerald-light: #2F9179;

  /* --- Sfondo: Blu-nero quasi totale ---
     Il buio è discrezione: coerente col posizionamento off-market/riservato,
     ed è lo stesso codice cromatico dei club privati e private banking. */
  --bg: #070B12;
  --bg-alt: #0B121D;
  --surface: #101927;
  --surface-2: #141F30;
  --border: rgba(245, 241, 232, 0.09);
  --border-strong: rgba(245, 241, 232, 0.16);

  /* --- Gerarchia testo ---
     Bianco caldo (non clinico) per i titoli, grigio-blu per il corpo,
     grigio spento per le note secondarie. */
  --text-heading: #F5F1E8;
  --text-body: #B7C0CC;
  --text-muted: #7C8798;
  --text-on-gold: #10151F;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-heading);
  font-weight: 600;
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section {
  position: relative;
  padding: 140px 0;
  background: var(--bg);
}
.section--alt { background: var(--bg-alt); }

.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 18px; }
.section-head p { font-size: 17px; color: var(--text-body); }

/* --- Diagonal flow dividers between sections --- */
.divider {
  position: relative;
  height: 120px;
  background: var(--bg);
  margin-top: -1px;
}
.divider--to-alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%); clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0% 100%); }
.divider--to-bg { background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%); clip-path: polygon(0 0%, 100% 40%, 100% 100%, 0% 100%); }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.55s; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: transparent;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 11, 18, 0.85);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { height: 66px; display: flex; align-items: center; gap: 12px; transition: height 0.4s var(--ease); }
.nav.scrolled .nav-logo { height: 50px; }
.nav-logo img { height: 100%; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-body);
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--gold); color: var(--text-on-gold) !important; }
.nav-toggle { display: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
/* Tall runway that gives the background scrub room to play out while the
   hero itself stays pinned to the viewport (classic scroll-scrub pattern). */
.hero-pin-wrapper {
  position: relative;
  height: 380vh;
}
.hero {
  position: sticky;
  top: 0;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  background: var(--primary-deep);
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.hero-canvas.is-ready { opacity: 1; }
.hero-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 16%, rgba(201,162,39,0.20), transparent 52%),
    linear-gradient(180deg, rgba(6,10,18,0.60) 0%, rgba(6,10,18,0.58) 45%, rgba(6,10,18,0.86) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(245,241,232,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,241,232,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-logo {
  height: 132px;
  margin-bottom: 32px;
  opacity: 0;
  filter: drop-shadow(0 0 0 rgba(201,162,39,0));
  animation: fadeUp 1s var(--ease) 0.1s forwards, logoGlow 5s ease-in-out 1.2s infinite;
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(201,162,39,0)); }
  50% { filter: drop-shadow(0 0 22px rgba(201,162,39,0.45)); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: none; opacity: 1; }
}
.hero-pin-wrapper.reduced-motion { height: 100vh; }
.hero-pin-wrapper.reduced-motion .hero { position: relative; }

/* Second scroll-scrub moment — same anatomy as the hero: full-bleed footage
   with the copy living directly in the frame, held legible by one persistent
   gradient rather than a boxed card. */
.metodo-pin-wrapper { position: relative; height: 320vh; }
.metodo-scrub {
  position: sticky;
  top: 0;
  min-height: 100vh;
  height: 100vh;
  background: var(--primary-deep);
  overflow: hidden;
}
.metodo-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.metodo-canvas.is-ready { opacity: 1; }
/* Mirrors the hero's scrim formula: a gold glow up top, a gradient that
   deepens toward the edges so type sits in a readable band wherever it
   lands, while the centre of the frame stays the clearest. */
.metodo-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 14%, rgba(201,162,39,0.16), transparent 50%),
    linear-gradient(180deg, rgba(6,10,18,0.5) 0%, rgba(6,10,18,0.22) 30%, rgba(6,10,18,0.3) 55%, rgba(6,10,18,0.62) 100%);
}
.metodo-pin-wrapper.reduced-motion { height: 100vh; }
.metodo-pin-wrapper.reduced-motion .metodo-scrub { position: relative; }

/* Three statements cross-fade directly over the footage — no card, just
   type with enough shadow to hold on any frame — each taking a different
   spot so the sequence feels choreographed rather than static. */
.metodo-caption {
  position: absolute;
  z-index: 2;
  max-width: 460px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  pointer-events: none;
}
.metodo-caption.is-active {
  opacity: 1;
  transform: translateY(0);
}
.metodo-caption--start { left: 56px; bottom: 64px; text-align: left; }
/* Top-left rather than dead-centre: the footage keeps its own logo mark
   sitting center-right for most of the clip, and text needs a spot that's
   never fighting it. */
.metodo-caption--mid   { left: 56px; top: 110px; text-align: left; transform: translateY(-16px); }
.metodo-caption--mid.is-active { transform: translateY(0); }
.metodo-caption--end   { right: 56px; bottom: 64px; text-align: right; }

.metodo-caption-index {
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(245, 241, 232, 0.62);
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.metodo-caption .eyebrow {
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.metodo-caption--end .eyebrow { justify-content: flex-end; }
.metodo-caption--end .eyebrow::before { order: 2; }
.metodo-caption .statement {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 500;
  line-height: 1.32;
  color: var(--text-heading);
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
}

/* A quiet progress tracker — three dots, top-right, confirming which of the
   three statements is live without competing with them. */
.metodo-progress {
  position: absolute;
  z-index: 2;
  top: 44px; right: 48px;
  display: flex;
  gap: 10px;
}
.metodo-progress-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.28);
  transition: background 0.5s var(--ease), transform 0.5s var(--ease);
}
.metodo-progress-dot.is-active {
  background: var(--gold);
  transform: scale(1.35);
}

@media (max-width: 900px) {
  .metodo-caption { max-width: calc(100% - 48px); }
  .metodo-caption--start { left: 24px; right: 24px; bottom: 40px; max-width: none; }
  .metodo-caption--end { left: 24px; right: 24px; bottom: 40px; max-width: none; text-align: left; }
  .metodo-caption--end .eyebrow { justify-content: flex-start; }
  .metodo-caption--end .eyebrow::before { order: 0; }
  .metodo-caption--mid { left: 24px; right: 24px; top: 88px; max-width: none; }
  .metodo-caption .statement { font-size: 19px; }
  /* The caption's own index already carries this, and there's no way to
     park the dots on a small screen without fighting the fixed nav. */
  .metodo-progress { display: none; }
}
.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  color: var(--text-heading);
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .sub {
  font-size: 19px;
  color: var(--text-body);
  max-width: 620px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.5s forwards;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 70px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.65s forwards;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.8s forwards;
}
.hero-stats .stat-num {
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stats .stat-label {
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 40px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.1s forwards;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(100deg, var(--gold), var(--gold-light));
  color: var(--text-on-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(201,162,39,0.28); }
.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text-heading);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

/* ==========================================================================
   PAIN POINTS
   ========================================================================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pain-card {
  background: var(--bg);
  padding: 44px 40px;
  transition: background 0.4s;
}
.pain-card:hover { background: var(--surface); }
.pain-card .num {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 18px;
}
.pain-card h3 { font-size: 20px; margin-bottom: 12px; }
.pain-card p { font-size: 15px; color: var(--text-muted); }

/* ==========================================================================
   SOLUTION / PROCESS
   ========================================================================== */
.process {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  margin-top: 20px;
}
.process::before {
  content: '';
  position: absolute;
  top: 22px; left: 4%; right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 15%, var(--border-strong) 85%, transparent);
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.process-step .dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  color: var(--gold-light);
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.process-step strong {
  display: block;
  color: var(--text-heading);
  font-size: 14.5px;
  margin-bottom: 8px;
}
.process-step span { font-size: 13px; color: var(--text-muted); }

.solution-statement {
  margin-top: 90px;
  padding: 56px;
  background: linear-gradient(120deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}
.solution-statement p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--text-heading);
  font-weight: 500;
  line-height: 1.5;
}
.solution-statement span { color: var(--gold-light); }

/* ==========================================================================
   FEATURES -> BENEFITS
   ========================================================================== */
.fb-table { border-top: 1px solid var(--border); }
.fb-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}
.fb-row .feature { color: var(--text-heading); font-size: 16.5px; font-weight: 500; }
.fb-row .feature .tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.fb-row .arrow { color: var(--gold); text-align: center; font-size: 18px; }
.fb-row .benefit { color: var(--text-body); font-size: 15.5px; }

/* ==========================================================================
   METRICS
   ========================================================================== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.metric-card {
  background: var(--bg-alt);
  padding: 42px 28px;
  text-align: center;
}
.metric-card .value {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--gold-light);
  margin-bottom: 10px;
  line-height: 1;
}
.metric-card .label { font-size: 13px; color: var(--text-muted); }

.funnel {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.funnel-step {
  text-align: center;
  padding: 0 28px;
}
.funnel-step .n { font-family: var(--font-serif); font-size: 30px; color: var(--text-heading); }
.funnel-step .l { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }
.funnel-arrow { color: var(--emerald-light); font-size: 20px; opacity: 0.7; }

/* ==========================================================================
   PORTFOLIO / OFF-MARKET
   ========================================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 34px 28px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.portfolio-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.portfolio-card .lock {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold-dim);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 15px;
}
.portfolio-card h4 { font-size: 17px; margin-bottom: 8px; }
.portfolio-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.portfolio-card .status {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-light);
  font-weight: 600;
}
.portfolio-note {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--bg-alt);
  border: 1px dashed var(--border-strong);
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   SEARCH ON MANDATE — a quiet extension of the portfolio above: not just
   what's already sourced, but a standing offer to go find it. Same section
   rhythm as everywhere else, just an asymmetric split instead of a header.
   ========================================================================== */
.search-mandate {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 64px;
  background: linear-gradient(120deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}
.search-mandate-copy h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 16px 0 18px;
  max-width: 560px;
}
.search-mandate-copy p {
  font-size: 15.5px;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 28px;
}
.search-mandate-tags {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--border);
  padding-left: 32px;
}
.search-mandate-tags span {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-heading);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.search-mandate-tags span:last-child { border-bottom: none; padding-bottom: 0; }

@media (max-width: 900px) {
  .search-mandate {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 28px;
  }
  .search-mandate-tags {
    border-left: none;
    padding-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  .search-mandate-tags span {
    border-bottom: none;
    padding: 8px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-family: var(--font-sans);
    font-size: 13px;
  }
}

/* ==========================================================================
   SOCIAL PROOF
   ========================================================================== */
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  margin-bottom: 20px;
}
.logo-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: scrollLeft 34s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-chip {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 14px 26px;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.logo-chip:hover { color: var(--text-heading); border-color: var(--border-strong); }

.proof-sub-label {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 56px 0 20px;
  display: flex; align-items: center; gap: 14px;
}
.proof-sub-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.network-banner {
  margin-top: 56px;
  padding: 40px 44px;
  background: linear-gradient(120deg, rgba(30,111,92,0.12), rgba(11,42,74,0.3));
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.network-banner .big-num {
  font-family: var(--font-serif);
  font-size: 46px;
  color: var(--emerald-light);
  line-height: 1;
  white-space: nowrap;
}
.network-banner p { font-size: 15px; color: var(--text-body); flex: 1; min-width: 260px; }
.network-banner .chain { font-size: 13px; color: var(--text-muted); margin-top: 10px; letter-spacing: 0.02em; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: var(--text-heading);
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 500;
}
.faq-q .icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: transform 0.35s var(--ease), background 0.35s;
}
.faq-item.open .faq-q .icon { background: var(--gold); color: var(--text-on-gold); transform: rotate(135deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-a p { padding: 0 4px 28px; max-width: 700px; font-size: 15px; color: var(--text-muted); }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  padding: 150px 0;
  background:
    radial-gradient(circle at 24% 30%, var(--gold-dim), transparent 55%),
    linear-gradient(160deg, var(--primary-deep), var(--bg) 70%);
  text-align: center;
  position: relative;
}
.final-cta .eyebrow { justify-content: center; }
.final-cta .eyebrow::before { display: none; }
.final-cta h2 { font-size: clamp(30px, 4vw, 48px); max-width: 780px; margin: 0 auto 22px; }
.final-cta .sub { font-size: 17px; max-width: 600px; margin: 0 auto 48px; color: var(--text-body); }
.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 64px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.contact-card { background: var(--bg); padding: 32px 30px; }
.contact-card .label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.contact-card .value { font-size: 16px; color: var(--text-heading); font-weight: 600; }
.contact-card .note { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-brand img { height: 86px; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); max-width: 320px; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; font-size: 13.5px; color: var(--text-muted); margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .pain-grid, .metrics-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .process { flex-direction: column; gap: 32px; }
  .process::before { display: none; }
  .fb-row { grid-template-columns: 1fr; gap: 10px; text-align: left; }
  .fb-row .arrow { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .section { padding: 90px 0; }
  .metodo-pin-wrapper { height: 260vh; }

  /* The hero is a fixed 100dvh sticky box with overflow:hidden, so the
     scroll-scrub can genuinely play (this is the whole point on every
     breakpoint, not just desktop). What used to break here was content:
     logo+headline+copy+two buttons+stats is taller than one phone screen,
     so align-items:center overflowed top+bottom and pushed the logo up
     behind the fixed nav. Fix is two-fold: flex-start + top padding anchors
     everything below the nav, and every element is sized down enough that
     the whole stack actually fits inside one screen — nothing to clip. */
  .hero { align-items: flex-start; padding: 96px 0 22px; height: 100dvh; }
  .hero-logo { height: 76px; margin-bottom: 24px; }
  .hero h1 { font-size: 27px; line-height: 1.2; margin-bottom: 14px; }
  .hero .sub { font-size: 15px; line-height: 1.5; margin-bottom: 20px; }
  .hero-actions { margin-bottom: 20px; gap: 12px; }
  .hero-actions .btn { padding: 12px 20px; font-size: 12px; }
  .hero-actions .btn-ghost { display: none; }
  .hero-stats { gap: 20px; row-gap: 12px; }
  .hero-stats .stat-num { font-size: 22px; }
  .hero-stats .stat-label { font-size: 10.5px; }
  .scroll-cue { display: none; }
  .nav-logo { height: 50px; }
  .nav.scrolled .nav-logo { height: 40px; }
}
