:root {
  --bg: #08080d;
  --bg-soft: #0f1019;
  --surface: #141522;
  --surface-strong: #1b1c2c;
  --text: #f7f7fb;
  --muted: #adb0c0;
  --muted-strong: #d8d9e3;
  --line: rgba(255, 255, 255, 0.11);
  --primary: #7779ff;
  --secondary: #a46cff;
  --accent: #25c5d9;
  --success: #62d7a5;
  --warning: #ff8b85;
  --paper: #f3f1ec;
  --ink: #12131d;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  color: #08080d;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 13, 0.94);
}
.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand-logo { display: block; width: auto; height: 48px; object-fit: contain; }
.site-footer .brand-logo { height: 44px; }
.desktop-nav { display: flex; align-items: center; gap: 26px; }
.nav-link { color: var(--muted-strong); font-size: .94rem; font-weight: 650; }
.nav-link:hover, .nav-link:focus-visible { color: white; }
.mobile-nav { display: none; position: relative; }
.mobile-nav summary { list-style: none; cursor: pointer; padding: 10px; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.menu-lines, .menu-lines::before, .menu-lines::after {
  width: 24px; height: 2px; display: block; background: white; border-radius: 2px;
}
.menu-lines { position: relative; }
.menu-lines::before, .menu-lines::after { content: ""; position: absolute; left: 0; }
.menu-lines::before { top: -7px; }
.menu-lines::after { top: 7px; }
.mobile-menu {
  position: absolute; right: 0; top: 46px; width: min(300px, calc(100vw - 32px));
  padding: 12px; border: 1px solid var(--line); border-radius: 18px;
  background: #11121c; box-shadow: var(--shadow);
}
.mobile-menu a { display: block; padding: 13px 14px; border-radius: 12px; color: var(--muted-strong); }
.mobile-menu a:hover { background: rgba(255,255,255,.06); color: white; }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-tight { padding: 68px 0; }
.section-line { border-top: 1px solid var(--line); }
.section-soft { background: var(--bg-soft); }
.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 82px;
  background:
    radial-gradient(circle at 18% 5%, rgba(119,121,255,.17), transparent 31%),
    radial-gradient(circle at 85% 15%, rgba(37,197,217,.11), transparent 27%),
    var(--bg);
}
.hero::after {
  content: ""; position: absolute; inset: auto -15% -55% 35%; width: 800px; height: 800px;
  border: 1px solid rgba(164,108,255,.12); border-radius: 50%; pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.22fr) minmax(320px,.78fr); gap: 64px; align-items: start; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 22px;
  color: #d7d7ff; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 25px; height: 2px; background: linear-gradient(90deg,var(--primary),var(--accent)); }
.hero h1, .page-hero h1 { margin: 0; max-width: 900px; font-size: clamp(2.65rem, 6vw, 5.25rem); line-height: .99; letter-spacing: -.055em; }
.gradient-text { color: #a9aaff; }
.lead { max-width: 720px; margin: 27px 0 0; color: var(--muted-strong); font-size: clamp(1.08rem, 2.1vw, 1.3rem); line-height: 1.62; }
.sublead { max-width: 680px; margin: 16px 0 0; color: var(--muted); line-height: 1.7; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 21px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 800; font-size: .95rem; transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .nav-link:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible { outline: 3px solid rgba(37,197,217,.65); outline-offset: 3px; }
.button-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); box-shadow: 0 12px 30px rgba(119,121,255,.23); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.045); }
.button-small { min-height: 42px; padding: 10px 17px; }

.hero-proof { display: grid; gap: 12px; }
.signal-card, .card, .trust-card, .contact-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: rgba(20,21,34,.76); box-shadow: var(--shadow);
}
.signal-card { padding: 22px; }
.signal-card strong { display: block; margin-bottom: 6px; font-size: 1.03rem; }
.signal-card p { margin: 0; color: var(--muted); line-height: 1.55; font-size: .92rem; }
.signal-card:nth-child(2) { transform: translateX(24px); }
.signal-card:nth-child(3) { transform: translateX(8px); }
.signal-icon { width: 38px; height: 38px; margin-bottom: 15px; border-radius: 12px; display: grid; place-items: center; background: rgba(119,121,255,.13); color: #b8b9ff; font-weight: 900; }

.section-head { max-width: 780px; margin-bottom: 44px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.08; letter-spacing: -.04em; }
.section-head p { margin: 18px 0 0; color: var(--muted); font-size: 1.08rem; line-height: 1.7; }
.cards-2, .cards-3, .steps, .trust-grid { display: grid; gap: 20px; }
.cards-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.cards-3, .steps, .trust-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.card { padding: 30px; box-shadow: none; }
.card-tag { display: inline-block; margin-bottom: 22px; color: #bfc0ff; font-size: .76rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.card h3 { margin: 0 0 14px; font-size: 1.45rem; line-height: 1.2; }
.card p { margin: 0; color: var(--muted); line-height: 1.65; }
.card ul, .check-list { margin: 22px 0 0; padding: 0; list-style: none; }
.card li, .check-list li { position: relative; padding-left: 28px; margin-top: 12px; color: var(--muted-strong); line-height: 1.55; }
.card li::before, .check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 26px; color: #c3c4ff; font-weight: 800; }
.card-link:hover { color: white; }
.step { padding: 26px 22px; border-left: 1px solid var(--line); }
.step-number { color: #9ea0ff; font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.step h3 { margin: 15px 0 9px; font-size: 1.2rem; }
.step p { margin: 0; color: var(--muted); line-height: 1.6; }

.pain-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.pain-title { position: sticky; top: 110px; }
.pain-title h2 { margin: 0; font-size: clamp(2.2rem,4vw,3.8rem); line-height: 1.04; letter-spacing: -.045em; }
.pain-list { display: grid; gap: 14px; }
.pain-item { padding: 23px 0 23px 54px; border-bottom: 1px solid var(--line); position: relative; }
.pain-item::before { content: attr(data-number); position: absolute; left: 0; top: 26px; color: #8f91ff; font-size: .78rem; font-weight: 900; }
.pain-item h3 { margin: 0 0 8px; font-size: 1.15rem; }
.pain-item p { margin: 0; color: var(--muted); line-height: 1.65; }

.trust-card { padding: 28px; box-shadow: none; }
.trust-card h3 { margin: 14px 0 10px; }
.trust-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.trust-symbol { color: var(--success); font-size: 1.2rem; font-weight: 900; }

.page-hero { padding: 90px 0 76px; background: radial-gradient(circle at 80% 0, rgba(119,121,255,.16), transparent 34%); }
.page-hero h1 { max-width: 1020px; font-size: clamp(2.55rem, 5.7vw, 5rem); }
.hero-labels { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.label { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted-strong); font-size: .84rem; }
.feature-band { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.feature-band > div { padding: 25px 22px; background: var(--surface); }
.feature-band strong { display: block; margin-bottom: 8px; }
.feature-band span { color: var(--muted); font-size: .9rem; line-height: 1.5; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 46px; align-items: start; }
.contact-copy h2 { margin: 0; font-size: clamp(2.2rem,4vw,3.5rem); line-height: 1.06; letter-spacing: -.04em; }
.contact-copy p { color: var(--muted); line-height: 1.7; }
.contact-note { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .91rem; }
.contact-card { padding: 30px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 17px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { color: var(--muted-strong); font-size: .86rem; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px;
  background: rgba(255,255,255,.045); color: white;
}
.field textarea { min-height: 112px; resize: vertical; }
.field option { background: #151622; }
.privacy { display: flex; gap: 10px; align-items: flex-start; grid-column: 1 / -1; color: var(--muted); font-size: .82rem; line-height: 1.55; }
.privacy input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; }
.privacy a { color: #c6c7ff; text-decoration: underline; }
.honey { position: absolute; left: -9999px; }
.contact-card .button { width: 100%; margin-top: 2px; cursor: pointer; }

.faq { display: grid; gap: 12px; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); }
.faq summary { cursor: pointer; padding: 20px 22px; list-style: none; display: flex; justify-content: space-between; gap: 20px; font-weight: 800; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: #aeb0ff; font-size: 1.3rem; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.7; }

.cta-band { padding: 52px; border: 1px solid rgba(119,121,255,.26); border-radius: 30px; background: linear-gradient(120deg,rgba(119,121,255,.13),rgba(37,197,217,.06)); display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-band h2 { margin: 0; max-width: 700px; font-size: clamp(1.8rem,3.5vw,3rem); line-height: 1.1; letter-spacing: -.035em; }
.site-footer { padding: 42px 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; color: var(--muted); font-size: .88rem; }
.footer-copy { color: var(--muted); font-size: .88rem; }

.cookie-banner {
  position: fixed; z-index: 80; right: 20px; bottom: 20px; left: 20px; display: none;
  max-width: 920px; margin: 0 auto; padding: 18px 20px; border: 1px solid var(--line);
  border-radius: 18px; background: rgba(17,18,28,.98); box-shadow: var(--shadow);
}
.cookie-banner.is-visible { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.cookie-banner p { margin: 0; color: var(--muted-strong); font-size: .88rem; line-height: 1.55; }
.cookie-banner a { color: #c6c7ff; text-decoration: underline; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: 10px; }
.cookie-actions .button { min-height: 42px; padding: 9px 16px; cursor: pointer; }

@media (max-width: 900px) {
  .hero-grid, .pain-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-proof { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .signal-card:nth-child(2), .signal-card:nth-child(3) { transform: none; }
  .cards-3, .steps, .trust-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .pain-title { position: static; }
  .feature-band { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cta-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .nav-wrap, .container, .narrow { width: min(100% - 28px, var(--max)); }
  .hero { padding: 72px 0 58px; }
  .page-hero { padding: 66px 0 56px; }
  .hero-grid { gap: 38px; }
  .hero-proof, .cards-2, .cards-3, .steps, .trust-grid, .form-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .section-tight { padding: 52px 0; }
  .card, .contact-card { padding: 23px; }
  .hero h1, .page-hero h1 { letter-spacing: -.045em; }
  .actions { display: grid; }
  .actions .button { width: 100%; }
  .feature-band { grid-template-columns: 1fr; }
  .cta-band { padding: 30px 23px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .field-full, .privacy { grid-column: auto; }
  .cookie-banner { right: 12px; bottom: 12px; left: 12px; padding: 16px; }
  .cookie-banner.is-visible { align-items: stretch; flex-direction: column; gap: 14px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
}

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

/* Visual storytelling refresh */
.hero { padding: 96px 0 86px; }
.hero-grid { grid-template-columns: minmax(0,1.06fr) minmax(390px,.94fr); gap: 72px; align-items: start; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 760px; font-size: clamp(3rem, 5.25vw, 4.85rem); }
.hero .lead { max-width: 650px; font-size: clamp(1.12rem, 2vw, 1.34rem); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 25px; color: var(--muted); font-size: .82rem; font-weight: 650; }
.hero-notes span { display: inline-flex; align-items: center; gap: 8px; }
.hero-notes span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(98,215,165,.1); }

.opportunity-board {
  position: relative; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 30px;
  background: linear-gradient(145deg,rgba(27,28,44,.96),rgba(13,14,23,.96));
  box-shadow: 0 34px 90px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06);
}
.opportunity-board::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(145deg,rgba(119,121,255,.35),transparent 42%,rgba(37,197,217,.25)); filter: blur(16px); opacity: .5; }
.board-top { display: flex; align-items: center; gap: 9px; padding: 2px 4px 17px; color: var(--muted-strong); font-size: .78rem; font-weight: 750; }
.board-time { margin-left: auto; color: var(--muted); font-weight: 550; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--warning); box-shadow: 0 0 0 5px rgba(255,139,133,.1); }
.journey-row { display: grid; grid-template-columns: 38px 1fr auto; gap: 13px; align-items: center; padding: 17px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.035); }
.journey-row strong, .revila-action strong { display: block; margin-bottom: 3px; font-size: .92rem; }
.journey-row small, .revila-action small { display: block; color: var(--muted); font-size: .76rem; line-height: 1.35; }
.journey-muted { opacity: .74; }
.journey-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.06); color: var(--muted-strong); font-size: .76rem; font-weight: 900; }
.journey-line { height: 20px; margin-left: 34px; border-left: 1px dashed rgba(255,255,255,.2); }
.journey-line span { display: none; }
.status { padding: 6px 9px; border-radius: 999px; font-size: .66rem; font-weight: 850; }
.status-warm { color: #ffc2bd; background: rgba(255,139,133,.1); }
.status-cold { color: #aeb0c4; background: rgba(174,176,196,.1); }
.status-live { color: #97f5c9; background: rgba(98,215,165,.12); }
.revila-action { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: center; margin: 12px 0; padding: 14px 17px; border-radius: 17px; background: linear-gradient(105deg,rgba(119,121,255,.19),rgba(37,197,217,.09)); }
.brand-mini { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: linear-gradient(135deg,var(--primary),var(--secondary),var(--accent)); font-weight: 900; }
.journey-result { border-color: rgba(98,215,165,.32); background: rgba(98,215,165,.075); }
.journey-result .journey-icon { color: #11261d; background: var(--success); }
.board-float { position: absolute; right: -25px; bottom: -22px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: #f5f3ee; color: #171821; box-shadow: 0 18px 45px rgba(0,0,0,.28); font-size: .78rem; font-weight: 700; transform: rotate(-2deg); }
.board-float strong { margin-left: 6px; color: #4f51dc; }

.leak-section { background: var(--paper); color: var(--ink); }
.section-kicker { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; color: #666873; font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.kicker-line { height: 1px; flex: 1; background: rgba(18,19,29,.14); }
.leak-grid { display: grid; grid-template-columns: 1.35fr .82fr .82fr; grid-template-rows: repeat(2,minmax(190px,auto)); gap: 16px; }
.leak-intro { grid-row: 1 / 3; align-self: center; padding: 42px 60px 42px 0; }
.leak-intro h2 { max-width: 620px; margin: 0; font-size: clamp(2.3rem,4.4vw,4.25rem); line-height: 1.02; letter-spacing: -.05em; }
.leak-intro p { max-width: 490px; margin: 24px 0 0; color: #62646e; font-size: 1.12rem; line-height: 1.65; }
.leak-card { position: relative; overflow: hidden; padding: 27px; border: 1px solid rgba(18,19,29,.1); border-radius: 22px; background: #fff; box-shadow: 0 15px 40px rgba(24,25,37,.06); }
.leak-card::after { content: ""; position: absolute; width: 110px; height: 110px; right: -55px; bottom: -55px; border-radius: 50%; background: var(--leak-color); opacity: .12; }
.leak-card strong { display: block; max-width: 260px; margin-top: 30px; font-size: 1.12rem; line-height: 1.25; }
.leak-card p { max-width: 300px; margin: 10px 0 0; color: #6c6e78; font-size: .9rem; line-height: 1.55; }
.leak-state { padding: 6px 9px; border-radius: 999px; color: var(--leak-color); background: color-mix(in srgb,var(--leak-color) 10%,transparent); font-size: .66rem; font-weight: 900; letter-spacing: .08em; }
.leak-a { --leak-color: #6b6de9; grid-row: 1 / 3; }
.leak-b { --leak-color: #dc6c62; }
.leak-c { --leak-color: #1895a5; }

.route-section { background: #0b0c13; }
.section-head.compact { margin-bottom: 50px; }
.route-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.route-card { position: relative; overflow: hidden; min-height: 510px; display: flex; flex-direction: column; padding: 42px; border: 1px solid var(--line); border-radius: 30px; background: var(--surface); transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease; }
.route-card::before { content: ""; position: absolute; width: 340px; height: 340px; top: -220px; right: -100px; border-radius: 50%; background: var(--route-glow); filter: blur(15px); opacity: .22; }
.route-card:hover { transform: translateY(-5px); border-color: rgba(166,167,255,.42); box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.route-company { --route-glow: var(--secondary); }
.route-agency { --route-glow: var(--accent); }
.route-number { position: absolute; top: 30px; right: 34px; color: rgba(255,255,255,.14); font-size: 4rem; font-weight: 900; letter-spacing: -.08em; }
.route-card h3 { max-width: 500px; margin: 0; font-size: clamp(2rem,3.2vw,3rem); line-height: 1.03; letter-spacing: -.045em; }
.route-card p { max-width: 510px; margin: 20px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.route-visual { display: flex; align-items: center; gap: 13px; margin: 34px 0; padding: 17px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.035); color: var(--muted-strong); font-size: .82rem; font-weight: 750; }
.route-visual i { flex: 1; height: 1px; position: relative; overflow: visible; background: linear-gradient(90deg,var(--line),#8f91ff); color: transparent; }
.route-visual i::after { content: "›"; position: absolute; right: -1px; top: -11px; color: #9a9cff; font-size: 1.1rem; }
.route-result { color: white; }
.route-link { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); color: #c9caff; font-weight: 850; }
.route-link b { font-size: 1.3rem; }

.process-section { background: linear-gradient(145deg,#10111b,#0c0d14); }
.process-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: center; }
.process-copy h2 { margin: 0; max-width: 520px; font-size: clamp(2.3rem,4.5vw,4.25rem); line-height: 1.03; letter-spacing: -.05em; }
.process-copy > p:not(.eyebrow) { max-width: 500px; margin: 24px 0; color: var(--muted); line-height: 1.7; }
.text-link { display: inline-flex; gap: 10px; color: #c8c9ff; font-weight: 850; }
.process-track { position: relative; display: grid; gap: 12px; }
.process-track::before { content: ""; position: absolute; left: 35px; top: 44px; bottom: 44px; border-left: 1px dashed rgba(255,255,255,.18); }
.process-track article { position: relative; display: grid; grid-template-columns: 50px 1fr; gap: 18px; align-items: center; padding: 20px 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.035); }
.process-track article div { position: relative; z-index: 1; }
.process-index { position: relative; z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: #202233; color: #b9baff; font-size: .72rem; font-weight: 900; }
.process-track strong { font-size: 1.05rem; }
.process-track p { margin: 5px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }
.process-track .process-final { border-color: rgba(98,215,165,.27); background: rgba(98,215,165,.07); }
.process-final .process-index { background: var(--success); color: #0d2b1f; }

.insight-section { padding-top: 20px; background: var(--paper); color: var(--ink); }
.insight-wrap { padding: 65px; border-radius: 34px; background: #dedcf8; }
.insight-heading .eyebrow { color: #4e4f74; }
.insight-heading h2 { max-width: 930px; margin: 0; font-size: clamp(2.2rem,4vw,3.8rem); line-height: 1.03; letter-spacing: -.05em; }
.insight-heading > p:not(.eyebrow) { max-width: 760px; margin: 22px 0 0; color: #555765; font-size: 1.05rem; line-height: 1.65; }
.insight-panels { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-top: 42px; }
.insight-panel { min-height: 330px; padding: 32px; border-radius: 24px; }
.insight-primary { border: 1px solid rgba(18,19,29,.08); background: #fff; box-shadow: 0 18px 48px rgba(42,43,75,.1); }
.insight-secondary { border: 1px solid rgba(18,19,29,.13); background: rgba(255,255,255,.38); }
.insight-label { display: inline-flex; padding: 7px 10px; border-radius: 999px; color: #5557c9; background: rgba(107,109,233,.1); font-size: .67rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.insight-secondary .insight-label { color: #39727b; background: rgba(24,149,165,.1); }
.insight-panel h3 { margin: 28px 0 22px; font-size: clamp(1.7rem,2.7vw,2.5rem); line-height: 1.05; letter-spacing: -.035em; }
.insight-panel ul { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.insight-panel li { position: relative; padding-left: 28px; color: #4f515c; line-height: 1.5; }
.insight-panel li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: #5d5fda; font-weight: 900; }
.insight-secondary li::before { color: #168c9b; }
.insight-close { margin: 30px 0 0; padding-top: 26px; border-top: 1px solid rgba(18,19,29,.12); color: #3e404b; font-size: 1rem; font-weight: 750; line-height: 1.55; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 790px; }
  .opportunity-board { max-width: 650px; }
  .leak-grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-template-rows: auto; }
  .leak-intro { grid-column: 1 / -1; grid-row: auto; padding: 15px 0 30px; }
  .leak-a { grid-row: span 2; }
  .process-layout { gap: 55px; }
}

@media (max-width: 760px) {
  .hero { padding: 65px 0 62px; }
  .hero h1 { font-size: clamp(2.35rem,11.2vw,3.7rem); line-height: 1; }
  .hero-notes { display: grid; gap: 10px; }
  .opportunity-board { padding: 13px; border-radius: 23px; }
  .journey-row { grid-template-columns: 36px 1fr; padding: 14px; }
  .journey-row .status { grid-column: 2; justify-self: start; }
  .board-float { right: 8px; bottom: -24px; }
  .leak-grid, .route-grid, .process-layout, .insight-panels { grid-template-columns: 1fr; }
  .leak-intro { padding-right: 0; }
  .leak-a { grid-row: auto; }
  .route-card { min-height: 460px; padding: 30px 24px; }
  .route-number { top: 21px; right: 24px; }
  .process-layout { gap: 42px; }
  .process-track article { padding: 17px; }
  .insight-wrap { padding: 38px 23px; border-radius: 26px; }
  .insight-panels { margin-top: 32px; }
  .insight-panel { min-height: 0; padding: 25px 22px; }
}

@media (max-width: 440px) {
  .route-visual { align-items: flex-start; flex-direction: column; }
  .route-visual i { width: 1px; height: 24px; flex: none; background: linear-gradient(var(--line),#8f91ff); }
  .route-visual i::after { right: -5px; top: 10px; transform: rotate(90deg); }
}

/* Service pages */
.page-hero { padding: 94px 0 84px; overflow: hidden; background: radial-gradient(circle at 78% 10%,rgba(119,121,255,.19),transparent 31%),radial-gradient(circle at 95% 70%,rgba(37,197,217,.08),transparent 24%); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0,1.06fr) minmax(390px,.94fr); gap: 72px; align-items: center; }
.page-hero h1 { max-width: 750px; font-size: clamp(3rem,5.6vw,5.2rem); }
.page-hero .lead { max-width: 650px; }
.example-panel { position: relative; padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; background: linear-gradient(145deg,rgba(27,28,44,.96),rgba(13,14,23,.96)); box-shadow: 0 34px 90px rgba(0,0,0,.4); }
.example-label { display: block; margin: 2px 2px 17px; color: var(--muted); font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.example-row { display: grid; grid-template-columns: 12px 1fr auto; gap: 13px; align-items: center; padding: 17px 15px; border-top: 1px solid var(--line); }
.example-row:first-of-type { border-top: 0; }
.example-row strong, .lead-alert strong { display: block; font-size: .9rem; }
.example-row small, .lead-alert small { display: block; margin-top: 4px; color: var(--muted); font-size: .75rem; }
.example-row b { padding: 6px 9px; border-radius: 999px; background: rgba(119,121,255,.1); color: #c4c5ff; font-size: .67rem; }
.example-dot { width: 9px; height: 9px; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,255,255,.035); }
.dot-violet { background: var(--primary); }
.dot-coral { background: var(--warning); }
.dot-cyan { background: var(--accent); }
.example-summary { display: flex; justify-content: space-between; gap: 20px; margin-top: 14px; padding: 18px; border-radius: 16px; background: linear-gradient(105deg,rgba(119,121,255,.17),rgba(37,197,217,.08)); font-size: .79rem; }
.example-summary span { color: var(--muted); }
.example-summary strong { color: #e3e3ff; text-align: right; }
.lead-panel { padding: 28px; }
.lead-alert { display: grid; grid-template-columns: 42px 1fr auto; gap: 13px; align-items: center; padding: 18px; border: 1px solid rgba(98,215,165,.25); border-radius: 18px; background: rgba(98,215,165,.065); }
.lead-alert b { color: var(--success); font-size: .7rem; }
.pulse-ring { width: 38px; height: 38px; border: 10px solid rgba(98,215,165,.13); border-radius: 50%; background: var(--success); box-shadow: 0 0 0 1px rgba(98,215,165,.3); }
.lead-path { height: 38px; display: flex; align-items: center; justify-content: space-around; padding: 0 40px; }
.lead-path span { width: 4px; height: 4px; border-radius: 50%; background: #8e90ee; box-shadow: 0 0 0 4px rgba(119,121,255,.08); }
.lead-actions { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; }
.lead-actions div { min-height: 116px; display: flex; flex-direction: column; justify-content: space-between; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.035); }
.lead-actions span { color: #9496f4; font-size: .68rem; font-weight: 900; }
.lead-actions strong { font-size: .83rem; line-height: 1.25; }
.pain-section-light { background: var(--paper); color: var(--ink); }
.pain-section-light .eyebrow { color: #57596d; }
.pain-section-light .pain-item { border-color: rgba(18,19,29,.12); }
.pain-section-light .pain-item p { color: #656771; }
.pain-section-light .pain-item::before { color: #5c5eda; }

.fit-grid { gap: 14px; }
.fit-card { position: relative; min-height: 220px; padding-right: 58px; }
.fit-card .fit-number { position: absolute; top: 28px; right: 28px; color: rgba(255,255,255,.18); font-size: 1.05rem; font-weight: 900; }
.fit-card h3 { max-width: 440px; }
.fit-close { max-width: 900px; margin: 28px 0 0; padding: 22px 24px; border-left: 3px solid var(--primary); background: rgba(119,121,255,.07); color: var(--muted-strong); line-height: 1.65; }

.agency-flow-panel { padding: 20px; }
.agency-flow-row { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 16px 14px; border-top: 1px solid var(--line); }
.agency-flow-row > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; background: rgba(119,121,255,.12); color: #bfc0ff; font-size: .7rem; font-weight: 900; }
.agency-flow-row strong { display: block; font-size: .9rem; line-height: 1.3; }
.agency-flow-row small { display: block; margin-top: 5px; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.agency-flow-result { margin-top: 5px; border: 1px solid rgba(98,215,165,.22); border-radius: 16px; background: rgba(98,215,165,.06); }
.agency-flow-result > span { background: var(--success); color: #0d2b1f; }

@media (max-width: 1000px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .example-panel { max-width: 680px; }
}

@media (max-width: 680px) {
  .page-hero { padding: 64px 0 62px; }
  .page-hero h1 { font-size: clamp(2.65rem,12.5vw,4rem); line-height: .99; }
  .example-panel, .lead-panel { padding: 15px; border-radius: 22px; }
  .example-row { grid-template-columns: 11px 1fr; }
  .example-row b { grid-column: 2; justify-self: start; }
  .example-summary { flex-direction: column; gap: 7px; }
  .example-summary strong { text-align: left; }
  .lead-alert { grid-template-columns: 38px 1fr; }
  .lead-alert b { grid-column: 2; }
  .lead-actions { grid-template-columns: 1fr; }
  .lead-actions div { min-height: 76px; }
  .fit-card { min-height: 0; padding-right: 50px; }
  .fit-card .fit-number { top: 24px; right: 22px; }
  .agency-flow-panel { padding: 13px; }
  .agency-flow-row { padding: 14px 10px; }
}

.trust-section { background: #0c0d14; }
.trust-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.trust-heading h2 { margin: 0; font-size: clamp(2rem,3.6vw,3.3rem); line-height: 1.04; letter-spacing: -.045em; }
.trust-heading > p:not(.eyebrow) { margin: 15px 0 0; color: var(--muted); }
.trust-points { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px; }
.trust-points span { padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.035); color: var(--muted-strong); font-size: .88rem; font-weight: 750; }
.trust-points b { margin-right: 9px; color: var(--success); }

@media (max-width: 760px) {
  .trust-layout { grid-template-columns: 1fr; gap: 32px; }
  .trust-points { grid-template-columns: 1fr; }
}
/* Accesos rápidos visibles en la cabecera móvil */
.mobile-quick-nav {
  display: none;
}

@media (max-width: 680px) {
  .site-header .nav-wrap {
    min-height: 64px;
  }

  .site-header .brand-logo {
    height: 42px;
  }

  .mobile-quick-nav {
    width: min(100% - 28px, var(--max));
    margin: 0 auto;
    padding: 0 0 11px;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 1.3fr);
    gap: 7px;
  }

  .mobile-quick-nav .button {
    min-width: 0;
    min-height: 39px;
    padding: 8px 5px;
    white-space: nowrap;
    font-size: clamp(0.66rem, 2.9vw, 0.78rem);
    line-height: 1.1;
  }

  .mobile-quick-nav .button[aria-current="page"] {
    border-color: rgba(169, 170, 255, 0.65);
    background: rgba(119, 121, 255, 0.18);
    color: #fff;
  }
}