  :root {
    --bg: #FFFFFF;
    --bg-warm: #FFFBF5;
    --surface: #F2F7FC;
    --surface-2: #E6EFF8;
    --surface-warm: #FFF1E4;
    --text: #0B1E3F;
    --text-muted: #5A6B85;
    --accent: #0F62A8;
    --accent-deep: #073B6F;
    --accent-soft: #3D8FD1;
    --accent-tint: #D8E8F8;
    --coral: #FF6F4F;
    --coral-soft: #FFA88E;
    --coral-tint: #FFE5DC;
    --palm: #0E9F6E;
    --palm-soft: #6FCFA6;
    --sand: #F5DFB8;
    --gold: #F2B441;
    --border: rgba(11, 30, 63, 0.10);
    --border-strong: rgba(11, 30, 63, 0.20);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --max-w: 1200px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-sm: 0 1px 2px rgba(11, 30, 63, 0.06), 0 4px 12px -6px rgba(11, 30, 63, 0.08);
    --shadow-md: 0 8px 20px -8px rgba(11, 30, 63, 0.18), 0 2px 6px -2px rgba(11, 30, 63, 0.10);
    --shadow-lg: 0 30px 60px -28px rgba(11, 30, 63, 0.30), 0 12px 28px -14px rgba(15, 98, 168, 0.18);
    --shadow-coral: 0 18px 40px -18px rgba(255, 111, 79, 0.45);
  }

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

  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
  }

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

  ::selection { background: var(--accent); color: #FFFFFF; }

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

  .container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ---------- NAV ---------- */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 14px 0;
    background: rgba(255, 251, 245, 0.65);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  }
  .nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px -10px rgba(11, 30, 63, 0.10);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .brand {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Fraunces', serif;
    font-size: 20px; font-weight: 500; letter-spacing: -0.01em;
  }
  .brand-mark { color: var(--accent); }
  .nav-links { display: none; gap: 28px; }
  .nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color .2s var(--ease);
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    display: inline-flex; align-items: center;
    padding: 9px 16px;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 14px;
    color: var(--text);
    transition: border-color .2s var(--ease), background .2s var(--ease);
  }
  .nav-cta:hover { border-color: var(--accent); background: var(--accent-tint); }
  @media (min-width: 768px) {
    .nav-links { display: inline-flex; }
  }

  /* ---------- BUTTONS ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 15px; font-weight: 500;
    line-height: 1; cursor: pointer;
    transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
    border: 1px solid transparent;
    font-family: inherit;
  }
  .btn:hover { transform: scale(1.02); }
  .btn:active { transform: scale(0.99); }
  .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #FFFFFF;
    box-shadow: 0 10px 24px -10px rgba(15, 98, 168, 0.50);
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-deep) 0%, #052748 100%);
    box-shadow: 0 14px 28px -12px rgba(15, 98, 168, 0.60);
  }
  .btn-coral {
    background: linear-gradient(135deg, var(--coral) 0%, #E84F2C 100%);
    color: #FFFFFF;
    box-shadow: var(--shadow-coral);
  }
  .btn-coral:hover {
    background: linear-gradient(135deg, #E84F2C 0%, #C23A18 100%);
    box-shadow: 0 22px 44px -18px rgba(255, 111, 79, 0.55);
  }
  .btn-ghost {
    background: rgba(255, 255, 255, 0.6);
    color: var(--text);
    border-color: var(--border-strong);
    backdrop-filter: blur(8px);
  }
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: #FFFFFF; }
  .btn .arrow { transition: transform .2s var(--ease); }
  .btn:hover .arrow { transform: translateX(3px); }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFBF5 0%, #FFFFFF 60%);
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(55% 50% at 8% 0%, rgba(15, 98, 168, 0.22), transparent 60%),
      radial-gradient(45% 55% at 100% 20%, rgba(255, 111, 79, 0.18), transparent 65%),
      radial-gradient(40% 40% at 85% 100%, rgba(14, 159, 110, 0.10), transparent 60%),
      radial-gradient(35% 45% at 30% 90%, rgba(242, 180, 65, 0.12), transparent 60%);
    animation: drift 60s linear infinite;
    pointer-events: none;
    z-index: 0;
  }
  .hero-shape {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0.55;
  }
  .hero-shape-1 {
    top: 8%; left: -8%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  }
  .hero-shape-2 {
    bottom: 0%; right: -6%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, var(--coral-soft), transparent 70%);
  }
  @keyframes drift {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(40px, 20px, 0) scale(1.04); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-bg { animation: none; }
  }
  .hero-content {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
    align-items: center;
  }
  @media (min-width: 960px) {
    .hero-content { grid-template-columns: 1.05fr 1fr; gap: 48px; }
  }
  .hero-text { max-width: 640px; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent-deep);
    padding: 7px 14px;
    border: 1px solid rgba(15, 98, 168, 0.18);
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-tint), rgba(255, 229, 220, 0.7));
    box-shadow: 0 4px 12px -6px rgba(15, 98, 168, 0.30);
  }
  .eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 12px var(--coral);
    animation: pulse 2.4s ease-in-out infinite;
  }

  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(40px, 5.8vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 24px 0 24px;
    max-width: 18ch;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(115deg, var(--accent) 0%, var(--coral) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .hero p.lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 56ch;
    margin-bottom: 32px;
  }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }

  .hero-trust {
    display: flex; flex-wrap: wrap; gap: 16px 28px;
    margin-top: 8px;
    font-size: 13.5px; color: var(--text-muted);
  }
  .hero-trust span {
    display: inline-flex; align-items: center; gap: 8px;
  }
  .hero-trust svg {
    width: 16px; height: 16px;
    color: var(--palm);
    flex-shrink: 0;
  }

  /* Hero visual — phone mockup with photo */
  .hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    min-height: 480px;
  }
  .hero-photo {
    position: absolute;
    width: 78%; aspect-ratio: 4/5;
    top: 0; right: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--surface);
    transform: rotate(2deg);
    z-index: 1;
  }
  .hero-photo img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
  }
  .hero-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 30, 63, 0.35));
  }
  .hero-phone {
    position: relative;
    width: 240px;
    aspect-ratio: 9/19;
    background: #0B1E3F;
    border-radius: 36px;
    padding: 10px;
    box-shadow:
      0 30px 60px -20px rgba(11, 30, 63, 0.55),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset,
      0 0 0 8px rgba(255, 255, 255, 0.92);
    transform: translate(-30%, 18%) rotate(-6deg);
    z-index: 2;
  }
  .hero-phone-screen {
    width: 100%; height: 100%;
    border-radius: 26px;
    background: linear-gradient(165deg, #0F62A8 0%, #073B6F 60%, #FF6F4F 130%);
    padding: 28px 18px 18px;
    display: flex; flex-direction: column;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
  }
  .hero-phone-screen::before {
    content: '';
    position: absolute; top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 22px;
    background: #0B1E3F;
    border-radius: 12px;
  }
  .phone-status {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 18px;
  }
  .phone-amount {
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1;
    margin-top: 14px;
    letter-spacing: -0.02em;
  }
  .phone-amount .cur {
    font-size: 14px;
    opacity: 0.8;
    margin-right: 4px;
  }
  .phone-amount-sub {
    font-size: 10px;
    opacity: 0.7;
    margin-top: 6px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
  }
  .phone-card {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 12px;
    padding: 12px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .phone-row {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 10.5px;
  }
  .phone-row .lbl { opacity: 0.7; }
  .phone-row .val { font-weight: 600; }
  .phone-status-ok {
    display: inline-flex; align-items: center; gap: 6px;
    background: #0E9F6E;
    color: #FFFFFF;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    width: fit-content;
  }
  .phone-status-ok::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 0 8px #FFFFFF;
  }
  .hero-badge {
    position: absolute;
    z-index: 3;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 10px;
    font-size: 13px;
    font-weight: 500;
  }
  .hero-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
  .hero-badge-1 {
    top: 8%; left: 2%;
    color: var(--accent-deep);
    transform: rotate(-3deg);
  }
  .hero-badge-1 svg { color: var(--accent); }
  .hero-badge-2 {
    bottom: 8%; right: 2%;
    color: var(--accent-deep);
    transform: rotate(3deg);
  }
  .hero-badge-2 svg { color: var(--coral); }
  @media (max-width: 959px) {
    .hero-visual { min-height: 420px; }
    .hero-phone { transform: translate(-20%, 12%) rotate(-6deg); }
  }

  /* ---------- BRANDS / CARDS ACCEPTED ---------- */
  .logos {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-warm) 0%, #FFFFFF 100%);
  }
  .logos-label {
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent-deep);
    margin-bottom: 32px;
  }
  .logos-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }
  .logos-track {
    display: flex; gap: 64px;
    width: max-content;
    animation: marquee 36s linear infinite;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .logo {
    display: inline-flex; align-items: center;
    color: var(--text-muted);
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.02em;
    opacity: 0.75;
    white-space: nowrap;
    transition: opacity .2s var(--ease), color .2s var(--ease);
  }
  .logo:hover { opacity: 1; color: var(--text); }
  @media (prefers-reduced-motion: reduce) {
    .logos-track { animation: none; flex-wrap: wrap; justify-content: center; }
  }

  /* ---------- SECTION SHELL ---------- */
  section { position: relative; }
  .section { padding: 100px 0; }
  .section-head {
    max-width: 720px;
    margin-bottom: 56px;
  }
  .section-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--accent-deep);
    background: linear-gradient(135deg, var(--accent-tint), var(--coral-tint));
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    border: 1px solid rgba(15, 98, 168, 0.12);
  }
  .grad-text {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(115deg, var(--accent) 0%, var(--coral) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(32px, 4.4vw, 52px);
    letter-spacing: -0.02em;
    line-height: 1.08;
  }
  .section-sub {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 17px;
    max-width: 56ch;
  }

  /* ---------- GENERIC GRIDS ---------- */
  .grid-2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .grid-4 { display: grid; grid-template-columns: 1fr; gap: 16px; }
  @media (min-width: 640px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  }
  @media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  }
  @media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  }

  .card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
    display: flex; flex-direction: column;
    min-height: 260px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
  }
  .card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--coral));
    opacity: 0;
    transition: opacity .3s var(--ease);
  }
  .card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 98, 168, 0.30);
    box-shadow: var(--shadow-lg);
  }
  .card:hover::before { opacity: 1; }
  .card-icon {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent-tint) 0%, rgba(255, 229, 220, 0.6) 100%);
    margin-bottom: 24px;
    transition: transform .35s var(--ease), background .35s var(--ease);
  }
  .card:hover .card-icon {
    transform: scale(1.05) rotate(-3deg);
    background: linear-gradient(135deg, var(--accent) 0%, var(--coral) 100%);
    color: #FFFFFF;
  }
  .card-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
  }
  .card-desc {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
  }
  .card-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--accent);
    transition: color .2s var(--ease);
    font-weight: 500;
  }
  .card-link .arrow { transition: transform .2s var(--ease); }
  .card:hover .card-link .arrow { transform: translateX(4px); }

  .card-compact { min-height: 220px; padding: 26px; }
  .card-compact .card-title { font-size: 19px; }
  .card-compact .card-desc { font-size: 14px; }

  /* Card with image */
  .card-img {
    padding: 0;
    overflow: hidden;
  }
  .card-img-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
  }
  .card-img-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease);
  }
  .card-img:hover .card-img-media img { transform: scale(1.08); }
  .card-img-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 30, 63, 0.65));
  }
  .card-img-icon {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 2;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
  }
  .card-img-body {
    padding: 22px 24px 26px;
  }
  .card-img .card-title { margin-bottom: 8px; }
  .card-img .card-desc { font-size: 14px; margin-bottom: 0; }

  /* ---------- ZONES (POLOS) ---------- */
  .zones-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  @media (min-width: 540px) { .zones-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 900px) { .zones-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
  .zone {
    position: relative;
    background: #0B1E3F;
    border-radius: 18px;
    aspect-ratio: 3/4;
    overflow: hidden;
    display: block;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    box-shadow: var(--shadow-sm);
    color: #FFFFFF;
  }
  .zone:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
  .zone-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
  }
  .zone:hover .zone-img { transform: scale(1.08); }
  .zone::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(11, 30, 63, 0.15) 0%, rgba(11, 30, 63, 0.40) 50%, rgba(11, 30, 63, 0.92) 100%);
    transition: background .35s var(--ease);
  }
  .zone:hover::after {
    background:
      linear-gradient(180deg, rgba(15, 98, 168, 0.10) 0%, rgba(11, 30, 63, 0.50) 50%, rgba(11, 30, 63, 0.95) 100%);
  }
  .zone-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 22px;
    z-index: 2;
  }
  .zone-pin {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral-soft);
    margin-bottom: 8px;
  }
  .zone-pin svg { width: 12px; height: 12px; }
  .zone-name {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 19px;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 8px;
  }
  .zone-sub {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
  }
  .zone-arrow {
    position: absolute;
    top: 18px; right: 18px;
    z-index: 2;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    transition: background .25s var(--ease), transform .25s var(--ease);
  }
  .zone:hover .zone-arrow {
    background: var(--coral);
    border-color: var(--coral);
    transform: scale(1.08) rotate(-12deg);
  }

  /* ---------- STEPS (CÓMO RECIBES) ---------- */
  .steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 16px;
  }
  @media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
  .step {
    position: relative;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .step-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .step-desc {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 36ch;
  }

  /* ---------- PRICING ---------- */
  .pricing-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
  }
  @media (min-width: 900px) {
    .pricing-wrap { grid-template-columns: 1.05fr 1fr; gap: 56px; }
  }
  .pricing-card {
    position: relative;
    background:
      radial-gradient(80% 100% at 0% 0%, rgba(15, 98, 168, 0.10), transparent 60%),
      radial-gradient(60% 80% at 100% 100%, rgba(255, 111, 79, 0.10), transparent 60%),
      linear-gradient(155deg, #FFFFFF 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  .pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--coral));
  }
  .pricing-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }
  .pricing-rate {
    display: flex; align-items: baseline; gap: 8px;
    margin-bottom: 8px;
  }
  .pricing-rate .pct {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(56px, 7vw, 84px);
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text);
  }
  .pricing-rate .pct em {
    font-style: italic;
    background: linear-gradient(115deg, var(--accent) 0%, var(--coral) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .pricing-rate .per { font-size: 14px; color: var(--text-muted); }
  .pricing-tagline {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 36ch;
  }
  .pricing-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .pricing-list li {
    display: flex; align-items: start; gap: 12px;
    font-size: 14.5px;
    color: var(--text);
  }
  .pricing-list li svg {
    flex-shrink: 0;
    width: 18px; height: 18px;
    color: var(--accent);
    margin-top: 2px;
  }
  .pricing-fineprint {
    margin-top: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }

  /* ---------- PRODUCT SHOWCASE (LEGACY MARKETPLACE BANNER) ---------- */
  .branch-banner {
    position: relative;
    background:
      radial-gradient(60% 80% at 100% 0%, rgba(255, 111, 79, 0.35), transparent 60%),
      radial-gradient(80% 100% at 0% 100%, rgba(15, 98, 168, 0.45), transparent 60%),
      linear-gradient(135deg, #052748 0%, #0B1E3F 60%, #0F62A8 100%);
    color: #FFFFFF;
    border-radius: 24px;
    padding: 44px 40px;
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  .branch-banner::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255, 111, 79, 0.45), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
  }
  .branch-banner > * { position: relative; z-index: 1; }
  @media (min-width: 768px) {
    .branch-banner { grid-template-columns: 1.4fr 1fr; gap: 32px; padding: 48px 44px; }
  }
  .branch-banner .branch-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
  }
  .branch-banner h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(28px, 3.6vw, 40px);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 12px;
  }
  .branch-banner h3 em { font-style: italic; color: var(--coral-soft); }
  .branch-banner p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    max-width: 50ch;
  }
  .branch-meta {
    display: flex; flex-direction: column; gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
  }
  .branch-meta .meta-row {
    display: flex; align-items: center; gap: 10px;
  }
  .branch-meta .meta-row svg {
    width: 16px; height: 16px;
    color: #6CCB81;
  }

  /* ---------- OFFERS ---------- */
  .offers-head {
    display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
    gap: 24px; margin-bottom: 48px;
  }
  .offers-head .section-head { margin-bottom: 0; flex: 1 1 400px; }
  .offers-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--accent);
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--accent-tint);
  }
  .offers-meta .pulse {
    width: 7px; height: 7px; border-radius: 50%; background: #6CCB81;
    box-shadow: 0 0 8px #6CCB81;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .55; transform: scale(0.85); }
  }

  .offers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  @media (min-width: 768px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 1024px) { .offers-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

  .offer {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
    box-shadow: 0 1px 3px rgba(15, 27, 45, 0.04);
  }
  .offer:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 98, 168, 0.30);
    box-shadow: var(--shadow-lg);
  }

  .offer-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background:
      radial-gradient(80% 70% at 50% 35%, rgba(15, 98, 168, 0.08), transparent 70%),
      radial-gradient(40% 60% at 100% 100%, rgba(255, 111, 79, 0.10), transparent 70%),
      linear-gradient(180deg, #FFFFFF 0%, var(--surface) 100%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .offer-media img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform .5s var(--ease);
  }
  .offer:hover .offer-media img { transform: scale(1.04); }
  .offer-brand {
    position: absolute; top: 14px; left: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--text);
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
    border-radius: 999px;
  }
  .offer-cond {
    position: absolute; top: 14px; right: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 11px; font-weight: 500;
    color: var(--accent);
    padding: 5px 10px;
    background: var(--accent-tint);
    border: 1px solid rgba(30, 91, 168, 0.25);
    border-radius: 999px;
  }
  .offer-credit {
    position: absolute; bottom: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600;
    color: #15803D;
    padding: 5px 10px;
    background: #DCFCE7;
    border: 1px solid #86EFAC;
    border-radius: 999px;
  }
  .offer-credit svg { width: 12px; height: 12px; }

  .offer-body {
    padding: 22px 24px 24px;
    display: flex; flex-direction: column; flex: 1;
    border-top: 1px solid var(--border);
  }
  .offer-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: var(--text);
  }
  .offer-spec {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
    flex: 1;
  }
  .offer-foot {
    display: flex; align-items: end; justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .offer-price-block { display: flex; flex-direction: column; gap: 2px; }
  .offer-price-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted);
  }
  .offer-price {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 26px;
    letter-spacing: -0.015em;
    color: var(--text);
    line-height: 1;
  }
  .offer-price .cents { font-size: 16px; color: var(--text-muted); }
  .offer-loc {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
  }
  .offer-loc svg { width: 12px; height: 12px; }

  /* ---------- TESTIMONIAL ---------- */
  .quote-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  @media (min-width: 768px) {
    .quote-wrap { grid-template-columns: 88px 1fr; gap: 48px; }
  }
  .quote-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--coral));
    display: flex; align-items: center; justify-content: center;
    color: #FFFFFF;
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 12px 24px -10px rgba(15, 98, 168, 0.40);
  }
  .quote {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(22px, 2.6vw, 32px);
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--text);
    max-width: 60ch;
  }
  .quote-attr {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
  }
  .quote-attr strong { color: var(--text); font-weight: 500; }

  /* ---------- FINAL CTA ---------- */
  .final-cta {
    margin: 100px 24px 100px;
    border-radius: 28px;
    background:
      radial-gradient(80% 120% at 0% 0%, rgba(255, 111, 79, 0.55), transparent 55%),
      radial-gradient(70% 100% at 100% 100%, rgba(14, 159, 110, 0.30), transparent 60%),
      radial-gradient(60% 90% at 50% 50%, rgba(15, 98, 168, 0.50), transparent 70%),
      linear-gradient(135deg, #052748 0%, #073B6F 70%, #0F62A8 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 90px 32px;
    text-align: center;
    overflow: hidden;
    position: relative;
    color: #FFFFFF;
    box-shadow: var(--shadow-lg);
  }
  .final-cta::before, .final-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
  }
  .final-cta::before {
    top: -80px; left: -80px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(255, 111, 79, 0.55), transparent 70%);
  }
  .final-cta::after {
    bottom: -100px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(61, 143, 209, 0.55), transparent 70%);
  }
  .final-cta > * { position: relative; z-index: 1; }
  .final-cta h2 { color: #FFFFFF; }
  .final-cta h2 em {
    background: linear-gradient(115deg, #FFFFFF 0%, var(--coral-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
  }
  .final-cta p { color: rgba(255, 255, 255, 0.85) !important; }
  .final-cta .btn-ghost { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.05); }
  .final-cta .btn-ghost:hover { border-color: #FFFFFF; background: rgba(255, 255, 255, 0.12); color: #FFFFFF; }
  .final-cta .btn-primary { background: #FFFFFF; color: var(--accent-deep); }
  .final-cta .btn-primary:hover { background: var(--coral); color: #FFFFFF; box-shadow: 0 16px 32px -12px rgba(255, 111, 79, 0.6); }
  .final-cta h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(32px, 4.6vw, 56px);
    letter-spacing: -0.022em;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 22ch;
    margin-left: auto; margin-right: auto;
  }
  .final-cta p {
    max-width: 50ch;
    margin: 0 auto 32px;
    font-size: 17px;
  }
  .final-cta .hero-ctas { justify-content: center; }
  @media (min-width: 1024px) {
    .final-cta { margin-left: auto; margin-right: auto; max-width: calc(var(--max-w) - 48px); padding: 120px 32px; }
  }

  /* ---------- FOOTER ---------- */
  footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 40px;
    color: var(--text-muted);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 56px;
  }
  @media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1.4fr repeat(4, 1fr); }
  }
  .footer-brand .brand { font-size: 22px; margin-bottom: 12px; }
  .footer-brand p { font-size: 14px; max-width: 32ch; }
  .footer-col h4 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a { font-size: 14px; transition: color .2s var(--ease); }
  .footer-col a:hover { color: var(--text); }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex; flex-wrap: wrap;
    justify-content: space-between; gap: 12px;
    font-size: 13px;
  }

  /* ---------- HIGHLIGHT STRIP (BANCAS) ---------- */
  .highlight-strip {
    position: relative;
    margin-top: 56px;
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #052748 0%, #073B6F 60%, #FF6F4F 130%);
    color: #FFFFFF;
    isolation: isolate;
  }
  @media (min-width: 880px) {
    .highlight-strip { grid-template-columns: 1.05fr 1fr; }
  }
  .highlight-media {
    position: relative;
    min-height: 280px;
    aspect-ratio: 4/3;
    order: -1;
  }
  @media (min-width: 880px) {
    .highlight-media { aspect-ratio: auto; min-height: 100%; order: 0; }
  }
  .highlight-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .highlight-media::after {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(90deg, transparent 40%, rgba(5, 39, 72, 0.85)),
      linear-gradient(180deg, rgba(5, 39, 72, 0.15) 0%, rgba(5, 39, 72, 0.65) 100%);
  }
  @media (max-width: 879px) {
    .highlight-media::after {
      background: linear-gradient(180deg, rgba(5, 39, 72, 0.20) 0%, rgba(5, 39, 72, 0.85) 100%);
    }
  }
  .highlight-content {
    position: relative;
    padding: 44px 36px 44px;
    display: flex; flex-direction: column;
    justify-content: center;
    gap: 16px;
    z-index: 2;
  }
  @media (min-width: 880px) {
    .highlight-content { padding: 56px 48px; }
  }
  .highlight-content::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255, 111, 79, 0.50), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
  }
  .highlight-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--coral), #E84F2C);
    padding: 7px 14px;
    border-radius: 999px;
    width: fit-content;
    box-shadow: 0 8px 20px -8px rgba(255, 111, 79, 0.55);
  }
  .highlight-tag .pulse-coral {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 0 10px #FFFFFF;
    animation: pulse 2s ease-in-out infinite;
  }
  .highlight-strip h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(28px, 3.6vw, 42px);
    letter-spacing: -0.022em;
    line-height: 1.08;
    margin: 2px 0 4px;
    max-width: 22ch;
    color: #FFFFFF;
  }
  .highlight-strip h3 em {
    font-style: italic;
    background: linear-gradient(115deg, #FFFFFF 0%, var(--coral-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .highlight-strip p {
    font-size: 15.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    max-width: 48ch;
  }
  .highlight-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 18px;
    margin: 10px 0 6px;
  }
  .highlight-bullets li {
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.95);
  }
  .highlight-bullets li svg {
    flex-shrink: 0;
    width: 16px; height: 16px;
    color: var(--coral-soft);
  }
  .highlight-strip .hero-ctas { margin-top: 12px; }
  .highlight-strip .btn-primary {
    background: #FFFFFF;
    color: var(--accent-deep);
    box-shadow: 0 12px 28px -10px rgba(255, 255, 255, 0.30);
  }
  .highlight-strip .btn-primary:hover {
    background: var(--coral);
    color: #FFFFFF;
    box-shadow: var(--shadow-coral);
  }
  .highlight-strip .btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.30);
  }
  .highlight-strip .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    color: #FFFFFF;
  }

  /* ---------- CLIENTES ---------- */
  .clients-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  @media (min-width: 540px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 860px) { .clients-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; } }

  .client-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    padding: 22px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
    overflow: hidden;
  }
  .client-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--coral));
    opacity: 0;
    transition: opacity .3s var(--ease);
  }
  .client-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 98, 168, 0.30);
    box-shadow: var(--shadow-md);
  }
  .client-card:hover::after { opacity: 1; }

  .client-wordmark {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: var(--text);
  }
  .client-wordmark em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(115deg, var(--accent) 0%, var(--coral) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .client-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
  }
  .client-sector {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-deep);
  }
  .client-loc {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12.5px;
    color: var(--text-muted);
  }
  .client-loc svg { width: 12px; height: 12px; color: var(--coral); }

  /* ---------- WHATSAPP FAB ---------- */
  .wa-fab {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 90;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 20px 14px 16px;
    background: #25D366;
    color: #0F2A14;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 14px; font-weight: 600;
    box-shadow:
      0 12px 28px -8px rgba(37, 211, 102, 0.45),
      0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  }
  .wa-fab:hover {
    transform: scale(1.04) translateY(-2px);
    background: #2EE070;
    box-shadow:
      0 18px 36px -8px rgba(37, 211, 102, 0.55),
      0 6px 16px rgba(0, 0, 0, 0.3);
  }
  .wa-fab svg { width: 22px; height: 22px; flex-shrink: 0; }
  .wa-fab .wa-label { display: none; }
  @media (min-width: 768px) {
    .wa-fab .wa-label { display: inline; }
  }
  @media (max-width: 767px) {
    .wa-fab { padding: 14px; }
  }

  /* ---------- REVEAL ANIMATION ---------- */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
  }
  html.js-reveal .reveal {
    opacity: 0;
    transform: translateY(20px);
  }
  html.js-reveal .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  }
