/* ─── Reset & Base ─────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:       #0a0f1e;
      --navy-light: #0f1628;
      --navy-card:  #111827;
      --gold:       #FFD700;
      --gold-dim:   #CA8A04;
      --gold-light: #FFF3A3;
      --green:      #22c55e;
      --green-dark: #16a34a;
      --text:       #e2e8f0;
      --muted:      #94a3b8;
      --border:     rgba(255,215,0,.15);
      --glass:      rgba(255,255,255,.04);
      --glass-border: rgba(255,215,0,.12);
      --radius:     12px;
      --radius-lg:  20px;
      --shadow:     0 8px 32px rgba(0,0,0,.6);
      --shadow-gold: 0 0 24px rgba(255,215,0,.18);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--navy);
      color: var(--text);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant', serif;
      line-height: 1.2;
    }

    a { color: inherit; text-decoration: none; }

    img { max-width: 100%; display: block; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ─── Animations ────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 12px rgba(255,215,0,.3); }
      50%       { box-shadow: 0 0 28px rgba(255,215,0,.6); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }
    }

    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease-out, transform .6s ease-out;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ─── Navbar ─────────────────────────────────────────────── */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 50;
      background: rgba(10,15,30,.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: background .3s;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    .nav-logo {
      font-family: 'Cormorant', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .5px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-logo span { color: var(--text); }
    .nav-logo-img {
      height: 36px;
      width: auto;
      object-fit: contain;
    }
    .nav-logo-text span { color: var(--text); }
    .nav-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .nav-links a {
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: var(--muted);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: var(--gold);
      color: var(--navy);
      border: none;
      padding: 8px 20px;
      border-radius: 6px;
      font-family: 'Montserrat', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .5px;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }
    .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transition: .3s;
    }

    /* ─── Hero ───────────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 64px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,215,0,.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255,215,0,.05) 0%, transparent 60%),
        linear-gradient(180deg, #0a0f1e 0%, #060b17 100%);
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,215,0,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,215,0,.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 80px 0 60px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,215,0,.1);
      border: 1px solid rgba(255,215,0,.3);
      border-radius: 100px;
      padding: 6px 18px;
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      animation: fadeUp .6s ease-out forwards;
    }
    .hero-badge svg { width: 14px; height: 14px; fill: var(--gold); }

    .hero-h1 {
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 20px;
      animation: fadeUp .6s .1s ease-out both;
    }
    .hero-h1 .gold { color: var(--gold); }

    .hero-sub {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--muted);
      max-width: 680px;
      margin: 0 auto 36px;
      line-height: 1.7;
      animation: fadeUp .6s .2s ease-out both;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 44px;
      animation: fadeUp .6s .3s ease-out both;
    }
    .hero-stat {
      text-align: center;
    }
    .hero-stat-num {
      font-family: 'Cormorant', serif;
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }
    .hero-stat-label {
      font-size: .75rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-top: 4px;
    }

    .hero-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp .6s .4s ease-out both;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      border: none;
      padding: 14px 32px;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: .9rem;
      font-weight: 700;
      letter-spacing: .5px;
      cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: var(--shadow-gold);
    }
    .btn-outline {
      background: transparent;
      color: var(--gold);
      border: 1.5px solid var(--gold);
      padding: 14px 32px;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: .9rem;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s, transform .15s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline:hover {
      background: rgba(255,215,0,.08);
      transform: translateY(-2px);
    }

    .scroll-indicator {
      margin-top: 60px;
      animation: float 2.5s ease-in-out infinite;
    }
    .scroll-indicator svg { width: 28px; height: 28px; stroke: var(--gold); opacity: .6; }

    /* ─── Section shared ─────────────────────────────────────── */
    section {
      padding: 80px 0;
    }
    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-tag {
      display: inline-block;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
    }
    .section-desc {
      font-size: .95rem;
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ─── Divider ────────────────────────────────────────────── */
    .divider {
      width: 60px;
      height: 3px;
      background: var(--gold);
      margin: 16px auto 0;
      border-radius: 2px;
    }

    /* ─── Casino Cards ───────────────────────────────────────── */
    #casinos { background: var(--navy-light); }

    .casino-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .casino-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-lg);
      padding: 20px 24px;
      display: grid;
      grid-template-columns: 120px 1fr auto auto;
      align-items: center;
      gap: 20px;
      transition: border-color .25s, transform .25s, box-shadow .25s;
      cursor: pointer;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      position: relative;
      overflow: hidden;
    }
    .casino-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,215,0,.03) 0%, transparent 60%);
      pointer-events: none;
    }
    .casino-card:hover {
      border-color: rgba(255,215,0,.4);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 20px rgba(255,215,0,.08);
    }

    /* Featured / top picks */
    .casino-card.featured {
      border-color: rgba(255,215,0,.35);
      background: rgba(255,215,0,.04);
    }
    .casino-card.featured::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .rank-badge { display: none; }

    .casino-logo {
      width: 120px;
      height: 60px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
      letter-spacing: 1px;
      position: relative;
      overflow: hidden;
    }
    .casino-logo img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 6px;
      border-radius: inherit;
    }

    .casino-info { min-width: 0; }
    .casino-name {
      font-family: 'Cormorant', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .badge-exclusivo {
      background: linear-gradient(135deg, #7c3aed, #a855f7);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: .6rem;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 2px 8px;
      border-radius: 4px;
      text-transform: uppercase;
      flex-shrink: 0;
    }

    .casino-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 6px;
    }
    .casino-stars svg { width: 14px; height: 14px; }
    .star-filled { fill: var(--gold); }
    .star-empty { fill: #334155; }

    .casino-meta {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .meta-tag {
      font-size: .68rem;
      font-weight: 600;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 4px;
      padding: 2px 8px;
      color: var(--muted);
      white-space: nowrap;
    }
    .meta-tag.deposit {
      color: var(--green);
      border-color: rgba(34,197,94,.25);
      background: rgba(34,197,94,.07);
    }

    .casino-bonus {
      text-align: center;
      flex-shrink: 0;
    }
    .bonus-amount {
      font-family: 'Cormorant', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
      white-space: nowrap;
      line-height: 1;
    }
    .bonus-label {
      font-size: .65rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .8px;
      margin-top: 2px;
    }

    .casino-cta { flex-shrink: 0; }
    .btn-visit {
      background: var(--green);
      color: #fff;
      border: none;
      padding: 11px 22px;
      border-radius: 8px;
      font-family: 'Montserrat', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .3px;
      cursor: pointer;
      white-space: nowrap;
      transition: background .2s, transform .15s, box-shadow .2s;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .btn-visit:hover {
      background: var(--green-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(34,197,94,.3);
    }
    .btn-visit svg { width: 14px; height: 14px; stroke: #fff; }

    .casino-disclaimer {
      font-size: .65rem;
      color: var(--muted);
      text-align: center;
      margin-top: 20px;
      opacity: .7;
    }

    /* ─── Why Section ────────────────────────────────────────── */
    #why { background: var(--navy); }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    .why-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: border-color .25s, transform .25s;
    }
    .why-card:hover {
      border-color: rgba(255,215,0,.35);
      transform: translateY(-4px);
    }
    .why-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: rgba(255,215,0,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .why-icon svg { width: 24px; height: 24px; stroke: var(--gold); }
    .why-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .why-card p {
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ─── How to Deposit ─────────────────────────────────────── */
    #como { background: var(--navy-light); }

    .steps-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 32px;
      position: relative;
    }
    .steps-container::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 12%;
      right: 12%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
    }

    .step {
      text-align: center;
      padding: 28px 20px;
    }
    .step-num {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(255,215,0,.08);
      border: 2px solid rgba(255,215,0,.3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-family: 'Cormorant', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
      position: relative;
      z-index: 1;
    }
    .step-num.active {
      background: var(--gold);
      color: var(--navy);
      border-color: var(--gold);
      animation: pulse-glow 2.5s infinite;
    }
    .step h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .step p {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.65;
    }
    .step-icon {
      font-size: 1.4rem;
      margin-bottom: 12px;
    }

    /* ─── Payment Methods ────────────────────────────────────── */
    #pagos { background: var(--navy); }

    .payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 16px;
    }
    .payment-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 24px 16px;
      text-align: center;
      transition: border-color .25s, transform .2s;
      cursor: default;
    }
    .payment-card:hover {
      border-color: rgba(255,215,0,.35);
      transform: translateY(-3px);
    }
    .payment-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
    }
    .payment-icon svg { width: 28px; height: 28px; }
    .payment-name {
      font-size: .8rem;
      font-weight: 600;
      color: var(--text);
    }
    .payment-time {
      font-size: .68rem;
      color: var(--muted);
      margin-top: 4px;
    }

    /* ─── FAQ ────────────────────────────────────────────────── */
    #faq { background: var(--navy-light); }

    .faq-list {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: border-color .25s;
    }
    .faq-item.open {
      border-color: rgba(255,215,0,.3);
    }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
    }
    .faq-question span {
      font-family: 'Montserrat', sans-serif;
      font-size: .95rem;
      font-weight: 600;
      color: #fff;
      line-height: 1.4;
    }
    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255,215,0,.1);
      border: 1px solid rgba(255,215,0,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background .2s, transform .3s;
    }
    .faq-icon svg { width: 14px; height: 14px; stroke: var(--gold); transition: transform .3s; }
    .faq-item.open .faq-icon { background: var(--gold); }
    .faq-item.open .faq-icon svg { stroke: var(--navy); transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease-out, padding .3s;
    }
    .faq-answer-inner {
      padding: 0 24px 20px;
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.75;
    }
    .faq-item.open .faq-answer { max-height: 400px; }

    /* ─── Footer ─────────────────────────────────────────────── */
    footer {
      background: #050810;
      border-top: 1px solid var(--border);
      padding: 56px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand p {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.7;
      margin-top: 14px;
      max-width: 360px;
    }
    .footer-col h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: .85rem;
      color: var(--muted);
      transition: color .2s;
    }
    .footer-col ul li a:hover { color: var(--gold); }

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 28px;
    }
    .disclaimer {
      background: rgba(255,215,0,.04);
      border: 1px solid rgba(255,215,0,.1);
      border-radius: var(--radius);
      padding: 20px 24px;
      margin-bottom: 24px;
    }
    .disclaimer p {
      font-size: .75rem;
      color: var(--muted);
      line-height: 1.7;
    }
    .disclaimer strong { color: var(--text); }
    .responsible-logos {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 12px;
    }
    .responsible-badge {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 6px;
      padding: 6px 12px;
      font-size: .7rem;
      font-weight: 700;
      color: var(--muted);
      letter-spacing: .5px;
    }
    .footer-copy {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy p { font-size: .75rem; color: #475569; }
    .footer-copy a { color: var(--gold); }

    /* ─── Age Gate Banner ────────────────────────────────────── */
    .age-banner {
      background: rgba(202,138,4,.1);
      border-bottom: 1px solid rgba(202,138,4,.2);
      text-align: center;
      padding: 8px 20px;
      font-size: .75rem;
      color: var(--muted);
    }
    .age-banner strong { color: var(--gold); }

    /* ─── Responsive ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .casino-card {
        grid-template-columns: 90px 1fr auto;
        gap: 14px;
      }
      .casino-bonus { display: none; }
    }

    @media (max-width: 768px) {
      section { padding: 56px 0; }
      .nav-links, .nav-cta { display: none; }
      .hamburger { display: flex; }
      .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        background: rgba(10,15,30,.98);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        gap: 16px;
      }
      .nav-links.mobile-open a { font-size: .9rem; color: var(--text); }

      .casino-card {
        grid-template-columns: 80px 1fr auto;
        gap: 12px;
        padding: 16px;
      }
      .casino-logo { width: 80px; height: 48px; border-radius: 10px; font-size: .9rem; }
      .casino-name { font-size: 1.05rem; }
      .btn-visit { padding: 9px 14px; font-size: .75rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .steps-container::before { display: none; }
    }

    @media (max-width: 480px) {
      .hero-stats { gap: 24px; }
      .casino-card { grid-template-columns: 70px 1fr; gap: 10px; }
      .casino-cta { display: none; }
      .casino-card::after {
        content: 'Ver →';
        position: absolute;
        bottom: 12px; right: 16px;
        font-size: .75rem;
        color: var(--green);
        font-weight: 700;
      }
    }

    /* ─── Scroll to top ──────────────────────────────────────── */
    #scrollTop {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 40;
      width: 44px;
      height: 44px;
      background: var(--gold);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .3s, transform .3s;
    }
    #scrollTop.visible { opacity: 1; transform: translateY(0); }
    #scrollTop svg { width: 20px; height: 20px; stroke: var(--navy); }

    /* ─── Rich Intro ─────────────────────────────────────────── */
    .rich-intro {
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.8;
      max-width: 860px;
      margin: 0 auto 40px;
      text-align: center;
      padding: 0 20px;
    }
    .rich-intro strong { color: var(--text); }

    /* ─── Criteria Grid ──────────────────────────────────────── */
    .criteria-wrap {
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
    }
    .subsection-title {
      font-family: 'Cormorant', serif;
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      font-weight: 700;
      color: #fff;
      text-align: center;
      margin-bottom: 32px;
    }
    .criteria-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .criteria-item {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius);
      padding: 24px 20px;
      transition: border-color .25s, transform .2s;
    }
    .criteria-item:hover {
      border-color: rgba(255,215,0,.35);
      transform: translateY(-3px);
    }
    .criteria-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(255,215,0,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      color: var(--gold);
    }
    .criteria-icon svg { width: 20px; height: 20px; }
    .criteria-item h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }
    .criteria-item p {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ─── Bonus Types Section ────────────────────────────────── */
    #bonos { background: var(--navy-light); }

    .bonus-types {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-bottom: 32px;
    }
    .bonus-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      transition: border-color .25s, transform .25s;
    }
    .bonus-card:hover {
      border-color: rgba(255,215,0,.35);
      transform: translateY(-4px);
    }
    .bonus-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: var(--gold);
    }
    .bonus-card-icon svg { width: 24px; height: 24px; }
    .bonus-card h3 {
      font-family: 'Cormorant', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .bonus-card-desc {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }
    .bonus-card-tag {
      display: inline-block;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      background: rgba(255,215,0,.12);
      color: var(--gold);
      border: 1px solid rgba(255,215,0,.25);
      border-radius: 4px;
      padding: 3px 10px;
    }

    /* Warning Box */
    .warning-box {
      background: rgba(202,138,4,.08);
      border: 1px solid rgba(202,138,4,.25);
      border-radius: var(--radius);
      padding: 18px 24px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 28px;
    }
    .warning-box strong { color: #FCD34D; }

    /* CTA Box */
    .cta-box {
      background: rgba(255,215,0,.05);
      border: 1px solid rgba(255,215,0,.2);
      border-radius: var(--radius-lg);
      padding: 32px 36px;
    }
    .cta-box h3 {
      font-family: 'Cormorant', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 22px;
      text-align: center;
    }
    .bonus-steps {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .bonus-step {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: .875rem;
      color: var(--text);
    }
    .bstep-num {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--navy);
      font-weight: 700;
      font-size: .8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* ─── Payment Table ───────────────────────────────────────── */
    .payment-table-wrap {
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
    }
    .payment-table-container {
      overflow-x: auto;
      border-radius: var(--radius);
      border: 1px solid var(--glass-border);
    }
    .payment-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .875rem;
    }
    .payment-table thead {
      background: rgba(255,215,0,.08);
    }
    .payment-table th {
      padding: 14px 18px;
      text-align: left;
      font-family: 'Montserrat', sans-serif;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: var(--gold);
      white-space: nowrap;
    }
    .payment-table td {
      padding: 13px 18px;
      border-top: 1px solid var(--border);
      color: var(--muted);
      vertical-align: middle;
    }
    .payment-table td strong { color: var(--text); }
    .payment-table tr:hover td { background: rgba(255,255,255,.02); }
    .fast-badge {
      display: inline-block;
      background: rgba(34,197,94,.12);
      color: var(--green);
      border: 1px solid rgba(34,197,94,.25);
      border-radius: 4px;
      font-size: .68rem;
      font-weight: 700;
      padding: 2px 8px;
      white-space: nowrap;
    }
