    :root {
      --bg: #070707;
      --bg-elevated: #111111;
      --bg-soft: #191919;
      --gold: #e0c36b;
      --gold-bright: #f7e2a8;
      --gold-soft: #a88f47;
      --text: #f4f0e6;
      --text-muted: #b6ac97;
      --line: rgba(224, 195, 107, 0.25);
      --radius: 18px;
      --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
      --max: 1120px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: "Roboto", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(224, 195, 107, 0.2), transparent 30%),
        radial-gradient(circle at 88% 92%, rgba(224, 195, 107, 0.18), transparent 25%),
        linear-gradient(160deg, #030303, #0b0b0b 45%, #050505);
      line-height: 1.5;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(to right, rgba(224, 195, 107, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(224, 195, 107, 0.03) 1px, transparent 1px);
      background-size: 56px 56px;
      opacity: 0.28;
      z-index: -1;
    }

    .container { width: min(var(--max), calc(100% - 3rem)); margin: 0 auto; }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(7, 7, 7, 0.86);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }

    .navwrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      min-height: 78px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      color: var(--text);
      text-decoration: none;
      letter-spacing: 0.03em;
      font-weight: 700;
    }

    .brand-mark {
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--gold), #7f6327);
      color: #0a0a0a;
      font-weight: 700;
    }

    nav ul {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 1.4rem;
      margin: 0;
      padding: 0;
    }

    nav a {
      text-decoration: none;
      color: var(--text-muted);
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 180ms ease;
    }

    nav a:hover, nav a.active { color: var(--gold-bright); }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.62rem 1.1rem;
      border-radius: 999px;
      background: linear-gradient(130deg, var(--gold), #9b7a34);
      color: #130f06;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
    }

    .nav-cta:hover {
      box-shadow: 0 12px 24px rgba(224, 195, 107, 0.26);
      transform: translateY(-1px);
    }

    .menu-btn {
      display: none;
      background: transparent;
      color: var(--gold-bright);
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 0.35rem 0.65rem;
      font-size: 1rem;
    }

    .hero {
      padding: 4.6rem 0 3.5rem;
      position: relative;
      overflow: hidden;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.12fr 0.88fr;
      gap: 2rem;
      align-items: center;
    }

    .kicker {
      color: var(--gold-bright);
      font-size: 0.85rem;
      letter-spacing: 0.19em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      display: inline-block;
    }

    h1, h2, h3 { line-height: 1.1; margin: 0 0 1rem; }

    h1 {
      font-size: clamp(2rem, 5vw, 4rem);
      max-width: 14ch;
      font-family: "Roboto", sans-serif;
      font-weight: 700;
    }

    .lead {
      color: var(--text-muted);
      max-width: 54ch;
      margin-bottom: 1.8rem;
      font-size: 1.04rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      margin-bottom: 1.4rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      border-radius: 999px;
      padding: 0.75rem 1.25rem;
      border: 1px solid transparent;
      transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: linear-gradient(145deg, var(--gold), #a17e32);
      color: #140f05;
      box-shadow: 0 14px 26px rgba(224, 195, 107, 0.22);
    }

    .btn-ghost {
      color: var(--text);
      border-color: var(--line);
      background: rgba(255, 255, 255, 0.02);
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.65rem;
      margin-top: 1rem;
    }

    .pill {
      background: rgba(224, 195, 107, 0.08);
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 0.82rem;
      color: var(--text-muted);
      padding: 0.45rem 0.72rem;
      text-align: center;
    }

    .hero-card {
      position: relative;
      background: linear-gradient(170deg, #14100a, #100d08 60%, #0b0b0b);
      border: 1px solid var(--line);
      border-radius: 26px;
      box-shadow: var(--shadow);
      padding: 1.4rem;
      isolation: isolate;
    }

    .hero-card::after {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: 26px;
      padding: 1px;
      background: linear-gradient(145deg, rgba(247, 226, 168, 0.45), rgba(247, 226, 168, 0.02));
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      z-index: -1;
    }

    .hero-card-title { margin-top: 0; }

    .flow {
      display: grid;
      gap: 0.75rem;
    }

    .flow-step {
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 0.75rem 0.85rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      color: var(--text-muted);
      background: rgba(224, 195, 107, 0.03);
      transform: translateX(0);
      transition: transform 220ms ease, border-color 220ms ease;
    }

    .flow-step:hover {
      transform: translateX(6px);
      border-color: rgba(247, 226, 168, 0.5);
    }

    .flow-step strong { color: var(--text); }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--gold-bright);
      box-shadow: 0 0 0 7px rgba(247, 226, 168, 0.12);
      flex-shrink: 0;
    }

    section { padding: 4.2rem 0; }

    .strip {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.015);
    }

    .trusted {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0.8rem;
      text-align: center;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .metric {
      padding: 0.9rem 0.5rem;
      border: 1px solid rgba(224, 195, 107, 0.16);
      border-radius: 14px;
      background: rgba(224, 195, 107, 0.04);
    }

    .metric strong {
      display: block;
      color: var(--gold-bright);
      font-size: 1.45rem;
      margin-bottom: 0.15rem;
    }

    .section-head {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 2.1rem;
    }

    h2 {
      font-size: clamp(1.8rem, 3.6vw, 3rem);
      font-family: "Roboto", sans-serif;
      margin-bottom: 0.6rem;
    }

    .section-head p { color: var(--text-muted); margin: 0; }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .card {
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(224, 195, 107, 0.08), rgba(255, 255, 255, 0.015));
      border: 1px solid var(--line);
      padding: 1.2rem 1rem;
      min-height: 178px;
      transition: transform 220ms ease, border-color 220ms ease;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(247, 226, 168, 0.52);
    }

    .icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(224, 195, 107, 0.18);
      color: var(--gold-bright);
      margin-bottom: 0.8rem;
      font-size: 1.15rem;
    }

    .card h3 {
      margin: 0 0 0.45rem;
      font-size: 1.1rem;
    }

    .card p {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.94rem;
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.2rem;
      align-items: stretch;
    }

    .panel {
      border: 1px solid var(--line);
      border-radius: 22px;
      background: linear-gradient(170deg, rgba(255, 255, 255, 0.015), rgba(224, 195, 107, 0.06));
      padding: 1.5rem;
    }

    .panel h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }

    .panel p { color: var(--text-muted); }

    .checklist {
      list-style: none;
      padding: 0;
      margin: 1rem 0 0;
      display: grid;
      gap: 0.75rem;
    }

    .checklist li {
      border-left: 2px solid var(--gold-soft);
      padding-left: 0.6rem;
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .timeline {
      display: grid;
      gap: 0.72rem;
      margin-top: 1rem;
    }

    .timeline div {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.94rem;
      color: var(--text-muted);
      padding: 0.56rem 0.6rem;
      border-radius: 10px;
      background: rgba(224, 195, 107, 0.08);
      border: 1px solid rgba(224, 195, 107, 0.2);
    }

    .timeline b { color: var(--gold-bright); }

    .cta {
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 2rem 1.4rem;
      background:
        radial-gradient(circle at right top, rgba(247, 226, 168, 0.2), transparent 45%),
        linear-gradient(160deg, rgba(224, 195, 107, 0.12), rgba(255, 255, 255, 0.02));
      display: grid;
      gap: 1rem;
      text-align: center;
    }

    .cta p {
      margin: 0;
      color: var(--text-muted);
      max-width: 60ch;
      justify-self: center;
    }

    .cta .hero-actions { justify-content: center; margin-bottom: 0; }

    .cta-title { margin: 0; }

    footer {
      padding: 2rem 0 2.8rem;
      border-top: 1px solid var(--line);
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .whatsapp-float {
      position: fixed;
      right: 1.1rem;
      bottom: 1.1rem;
      z-index: 80;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      color: #ffffff;
      background: #25d366;
      border: 1px solid #1eb85b;
      border-radius: 999px;
      padding: 0.5rem 0.78rem 0.5rem 0.5rem;
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .whatsapp-float:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.4);
    }

    .wa-icon {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: #ffffff;
      color: #25d366;
      display: grid;
      place-items: center;
      font-size: 1.1rem;
      font-weight: 700;
      line-height: 1;
    }

    .wa-text {
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.01em;
    }

    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 420ms ease, transform 420ms ease;
    }

    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1020px) {
      .hero-grid,
      .split { grid-template-columns: 1fr; }

      .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }

      .trusted { grid-template-columns: repeat(3, minmax(0, 1fr)); }

      .hero-points { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 760px) {
      .container { width: min(var(--max), calc(100% - 1.35rem)); }

      .menu-btn { display: block; }

      nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        border-bottom: 1px solid var(--line);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 200ms ease;
      }

      nav.open { transform: scaleY(1); }

      nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.4rem 1rem 1rem;
      }

      nav li { width: 100%; }

      nav a {
        display: block;
        padding: 0.72rem 0;
      }

      .nav-cta { display: none; }

      .whatsapp-float {
        right: 0.8rem;
        bottom: 0.8rem;
        padding-right: 0.5rem;
      }

      .wa-text { display: none; }

      .hero { padding-top: 3.2rem; }

      .hero-points,
      .trusted,
      .cards { grid-template-columns: 1fr; }

      section { padding: 3.25rem 0; }
    }
