
    /* ╔══════════════════════════════════════════════
   PayAds COM v4.1 — Amber / Dark Gold Design (Premium)
   ══════════════════════════════════════════════╝ */
    :root {
      --bg: #0D0F12;
      --bg1: #131619;
      --bg2: #1A1D23;
      --bg3: #21252F;
      --brd: rgba(255, 255, 255, .06);
      --brd2: rgba(255, 185, 0, .12);
      --brdLight: rgba(255, 255, 255, .12);

      --amber: #FFB800;
      --amber2: #FFA200;
      --amber3: #FF8C00;
      --amberL: rgba(255, 184, 0, .12);
      --amberG: rgba(255, 184, 0, .06);

      --cyan: #00D4FF;
      --green: #00E676;
      --red: #FF4D4D;
      --purple: #9B6FFF;

      --tx: #F1F3F8;
      --tx2: #8A929F;
      --tx3: #4E5663;

      --ff: 'Unbounded', sans-serif;
      --ff2: 'Inter', sans-serif;
      --ease: cubic-bezier(.4, 0, .2, 1);
      --W: 1220px;
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--ff2);
      background: var(--bg);
      color: var(--tx);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

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

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none
    }

    ul {
      list-style: none
    }

    ::selection {
      background: rgba(255, 184, 0, .25)
    }

    ::-webkit-scrollbar {
      width: 5px
    }

    ::-webkit-scrollbar-track {
      background: var(--bg)
    }

    ::-webkit-scrollbar-thumb {
      background: var(--amber);
      border-radius: 3px
    }

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

    /* ── Canvas Particles BG ── */
    #cnv {
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none
    }

    .glow-mesh {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background: radial-gradient(ellipse 700px 500px at 10% 15%, rgba(255, 184, 0, .07), transparent), radial-gradient(ellipse 600px 600px at 90% 85%, rgba(0, 212, 255, .04), transparent);
    }

    /* ══════════ COMMON UI ══════════ */
    .sec {
      padding: 100px 0
    }

    .sec-sm {
      padding: 60px 0
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--amberL);
      border: 1px solid var(--brd2);
      padding: 5px 16px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 16px
    }

    .tag-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--amber);
      animation: gd 2s infinite
    }

    @keyframes gd {

      0%,
      100% {
        opacity: .4
      }

      50% {
        opacity: 1
      }
    }

    .h2 {
      font-family: var(--ff);
      font-size: clamp(26px, 3.5vw, 42px);
      font-weight: 700;
      letter-spacing: -1px;
      line-height: 1.1;
      margin-bottom: 14px
    }

    .h2 em {
      font-style: normal;
      color: var(--amber)
    }

    .lead {
      font-size: 16px;
      color: var(--tx2);
      max-width: 580px;
      line-height: 1.75
    }

    .center {
      text-align: center
    }

    .center .lead {
      margin-inline: auto
    }

    .mbt {
      margin-bottom: 60px
    }

    /* Reveal anim */
    .r {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .7s var(--ease), transform .7s var(--ease)
    }

    .r.v {
      opacity: 1;
      transform: none
    }

    .d1 {
      transition-delay: .1s
    }

    .d2 {
      transition-delay: .2s
    }

    .d3 {
      transition-delay: .3s
    }

    .d4 {
      transition-delay: .4s
    }

    .d5 {
      transition-delay: .5s
    }

    /* ══════════ NAV & HERO (Same as v4 core) ══════════ */
    .hdr {
      position: sticky;
      top: 0;
      z-index: 200;
      background: rgba(13, 15, 18, .85);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--brd);
      height: 64px;
      display: flex;
      align-items: center;
      padding: 0 24px
    }

    .hdr-in {
      max-width: var(--W);
      width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between
    }

    .logo {
      font-family: var(--ff);
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -.5px
    }

    .logo em {
      font-style: normal;
      color: var(--amber)
    }

    .nav {
      display: flex;
      gap: 24px
    }

    .nav a {
      font-size: 13px;
      font-weight: 500;
      color: var(--tx2);
      transition: color .2s
    }

    .nav a:hover {
      color: #fff
    }

    .nav-cta {
      background: var(--amber);
      color: #000;
      padding: 8px 20px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      transition: all .25s var(--ease)
    }

    .nav-cta:hover {
      background: var(--amber2);
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(255, 184, 0, .3)
    }

    .hero {
      padding: 80px 0 60px;
      position: relative
    }

    .hero-wrap {
      display: grid;
      grid-template-columns: 1fr 460px;
      gap: 64px;
      align-items: center
    }

    .hero h1 {
      font-family: var(--ff);
      font-size: clamp(32px, 4.5vw, 54px);
      font-weight: 700;
      line-height: 1.06;
      letter-spacing: -2px;
      margin-bottom: 22px
    }

    .hero h1 .hl {
      color: transparent;
      background: linear-gradient(90deg, var(--amber), var(--amber3), var(--cyan));
      -webkit-background-clip: text;
      background-clip: text;
      background-size: 200% auto;
      animation: shimmer 4s linear infinite
    }

    @keyframes shimmer {
      0% {
        background-position: 0% center
      }

      100% {
        background-position: 200% center
      }
    }

    .hero-p {
      font-size: 16px;
      color: var(--tx2);
      line-height: 1.75;
      margin-bottom: 32px;
      max-width: 520px
    }

    .btn-a {
      background: var(--amber);
      color: #000;
      padding: 14px 32px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all .3s var(--ease);
      position: relative;
      overflow: hidden
    }

    .btn-a:hover {
      background: var(--amber2);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(255, 184, 0, .4)
    }

    .btn-b {
      color: #fff;
      padding: 14px 24px;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 600;
      border: 1px solid var(--brd);
      transition: all .2s;
      display: inline-flex;
      align-items: center
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items: center
    }

    .terminal {
      background: var(--bg1);
      border: 1px solid var(--brd);
      border-radius: 16px;
      overflow: hidden;
      position: relative
    }

    .term-bar {
      background: var(--bg2);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid var(--brd)
    }

    .term-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%
    }

    .term-title {
      flex: 1;
      text-align: center;
      font-size: 12px;
      color: var(--tx3);
      font-family: var(--ff)
    }

    .kpi-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 14px;
      padding: 16px
    }

    .kpi {
      background: var(--bg2);
      border-radius: 10px;
      padding: 14px 16px;
      border: 1px solid var(--brd)
    }

    .kpi-l {
      font-size: 11px;
      color: var(--tx3);
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 3px
    }

    .kpi-v {
      font-family: var(--ff);
      font-size: 22px;
      font-weight: 700
    }

    .kpi-v.a {
      color: var(--amber)
    }

    /* ══════════ TRUST SECTION (REDESIGNED) ══════════ */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      perspective: 1000px
    }

    .trust-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, .02), rgba(0, 0, 0, .5));
      border: 1px solid rgba(255, 255, 255, .05);
      border-radius: 20px;
      padding: 36px 24px;
      text-align: center;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
      position: relative;
      overflow: hidden;
      transform-style: preserve-3d;
    }

    .trust-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 184, 0, .3), transparent);
      opacity: 0;
      transition: opacity .4s;
    }

    .trust-card:hover {
      transform: translateY(-10px) rotateX(4deg) rotateY(-4deg);
      border-color: rgba(255, 184, 0, .2);
      box-shadow: 0 24px 48px rgba(0, 0, 0, .4), 0 8px 24px rgba(255, 184, 0, .08);
    }

    .trust-card:hover::before {
      opacity: 1
    }

    /* SVG Line Animation */
    .trust-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      position: relative
    }

    .trust-icon svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: var(--amber);
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round
    }

    .trust-card:hover .trust-icon svg path,
    .trust-card:hover .trust-icon svg rect,
    .trust-card:hover .trust-icon svg circle {
      stroke-dasharray: 200;
      stroke-dashoffset: 200;
      animation: drawStroke 1.5s ease forwards;
    }

    @keyframes drawStroke {
      to {
        stroke-dashoffset: 0;
      }
    }

    .trust-card h4 {
      font-family: var(--ff);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      letter-spacing: -.3px;
      color: #fff
    }

    .trust-card p {
      font-size: 14px;
      color: var(--tx2);
      line-height: 1.6
    }

    /* ══════════ TIMELINE / PROCES (FIXED) ══════════ */
    .tl-wrap {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      padding-left: 48px
    }

    .tl-bar {
      position: absolute;
      top: 10px;
      bottom: 0;
      left: 15px;
      width: 2px;
      background: var(--brd2);
      border-radius: 2px;
    }

    .tl-bar-fill {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      background: linear-gradient(180deg, var(--amber), var(--cyan));
      transition: height .3s;
    }

    .tl-item {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 56px;
      position: relative
    }

    .tl-item:last-child {
      margin-bottom: 0
    }

    .tl-dot {
      position: absolute;
      left: -48px;
      top: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--bg);
      border: 2px solid var(--brd2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff);
      font-size: 12px;
      font-weight: 700;
      color: var(--tx3);
      transition: all .4s;
      z-index: 2;
    }

    .tl-item.active .tl-dot {
      border-color: var(--amber);
      color: var(--amber);
      background: rgba(255, 184, 0, .1);
      box-shadow: 0 0 0 4px rgba(255, 184, 0, .15)
    }

    .tl-item h3 {
      font-family: var(--ff);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -.5px;
      margin-bottom: 4px;
      transition: color .3s
    }

    .tl-item.active h3 {
      color: #fff
    }

    .tl-item p {
      font-size: 16px;
      color: var(--tx2);
      line-height: 1.6
    }

    .tl-box {
      margin-top: 8px;
      background: var(--bg2);
      border: 1px solid var(--brd);
      border-radius: 12px;
      padding: 16px 20px;
      font-size: 14px;
      color: var(--tx);
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .tl-box .ico {
      font-size: 20px;
      background: var(--bg3);
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    /* ══════════ COUNTRIES BOARD (REDESIGNED) ══════════ */
    .world-wrap {
      background: var(--bg1);
      border: 1px solid var(--brd);
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      padding: 40px;
    }

    .world-map-bg {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 120%;
      opacity: 0.03;
      pointer-events: none;
      z-index: 0;
    }

    .board-hdr {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
      border-bottom: 1px solid var(--brd);
      padding-bottom: 16px
    }

    .board-hdr h3 {
      font-family: var(--ff);
      font-size: 20px;
      letter-spacing: -.5px
    }

    .dest-tag {
      background: var(--amberL);
      color: var(--amber);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 6px;
      border: 1px solid rgba(255, 184, 0, .2)
    }

    .board {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px
    }

    .brd-row {
      display: grid;
      grid-template-columns: 50px 2fr 1fr 1fr minmax(100px, 1fr);
      align-items: center;
      background: var(--bg2);
      border-radius: 10px;
      padding: 12px 16px;
      font-family: var(--ff), monospace;
      font-size: 12px;
      color: var(--tx);
      border: 1px solid transparent;
      transition: .2s;
    }

    .brd-row:hover {
      background: var(--bg3);
      border-color: var(--brdLight);
      transform: translateX(4px)
    }

    .brd-flag {
      font-size: 18px
    }

    .brd-stat {
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      text-align: center
    }

    .brd-stat.ok {
      background: rgba(0, 230, 118, .1);
      color: var(--green)
    }

    .brd-arr {
      color: var(--amber);
      font-size: 16px;
      text-align: center
    }

    .brd-th {
      font-family: var(--ff2);
      color: var(--tx3);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 0 16px 8px;
      display: grid;
      grid-template-columns: 50px 2fr 1fr 1fr minmax(100px, 1fr)
    }

    .board-marquee {
      margin-top: 32px;
      display: flex;
      gap: 12px;
      overflow: hidden;
      position: relative;
      z-index: 1;
      mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent)
    }

    .bm-track {
      display: flex;
      gap: 12px;
      animation: mq 20s linear infinite;
      width: max-content
    }

    .bm-tag {
      background: rgba(255, 255, 255, .03);
      border: 1px solid var(--brd);
      border-radius: 8px;
      padding: 8px 16px;
      font-size: 13px;
      color: var(--tx2);
      display: flex;
      align-items: center;
      gap: 8px
    }

    @keyframes mq {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    /* ══════════ COMPARISON VERSUS (REDESIGNED) ══════════ */
    .vs-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: stretch;
    }

    .vs-card {
      border-radius: 24px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .vs-bad {
      background: var(--bg1);
      border: 1px solid rgba(255, 77, 77, .1)
    }

    .vs-good {
      background: linear-gradient(180deg, var(--bg2) 0%, var(--bg1) 100%);
      border: 1px solid var(--brd2);
      box-shadow: 0 16px 48px rgba(255, 184, 0, .08);
    }

    .vs-good::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--amber), var(--cyan))
    }

    .vs-title {
      font-family: var(--ff);
      font-size: 24px;
      font-weight: 700;
      letter-spacing: -1px
    }

    .vs-bad .vs-title {
      color: var(--tx3)
    }

    .vs-bad .vs-feat {
      opacity: .6
    }

    .vs-good .vs-title {
      color: var(--amber)
    }

    .vs-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      flex: 1
    }

    .vs-feat {
      display: flex;
      gap: 16px;
      align-items: flex-start
    }

    .vs-ico {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 12px;
      font-weight: 700
    }

    .vs-bad .vs-ico {
      background: rgba(255, 77, 77, .1);
      color: var(--red)
    }

    .vs-good .vs-ico {
      background: var(--amberL);
      color: var(--amber)
    }

    .vs-txt h5 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 4px
    }

    .vs-txt p {
      font-size: 13px;
      color: var(--tx2);
      line-height: 1.5
    }

    .vs-good .vs-txt h5 {
      color: #fff
    }

    /* ══════════ REVIEWS MESSENGERS (REDESIGNED REALISTIC) ══════════ */
    .rev-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px
    }

    .ms-app {
      background: #17212b;
      /* Telegram Dark Theme default */
      border-radius: 16px;
      border: 1px solid #232e3c;
      overflow: hidden;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      display: flex;
      flex-direction: column;
      height: 420px;
    }

    .ms-app.wa {
      background: #0B141A;
      /* WA Dark */
      border-color: #1e2b33;
    }

    .ms-hdr {
      background: #17212b;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid rgba(0, 0, 0, .3);
    }

    .ms-app.wa .ms-hdr {
      background: #202C33;
    }

    .ms-av {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #bb86fc;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 600;
      font-size: 16px
    }

    .ms-av img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover
    }

    .ms-nm {
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.2
    }

    .ms-st {
      color: #3ECF8E;
      font-size: 13px;
      margin-top: 2px
    }

    /* TG online color */
    .ms-app.wa .ms-st {
      color: #8A929F;
    }

    /* WA offline */
    .ms-body {
      flex: 1;
      padding: 16px 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231b2836' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      background-color: #0e1621;
    }

    .ms-app.wa .ms-body {
      background-color: #0B141A;
      background-image: none;
      /* could add WA doodle bg but keeping clean */
    }

    .msg {
      max-width: 85%;
      padding: 8px 12px 22px;
      border-radius: 12px;
      color: #fff;
      font-size: 15px;
      line-height: 1.4;
      position: relative;
    }

    .msg.in {
      background: #182533;
      align-self: flex-start;
      border-bottom-left-radius: 0;
    }

    .msg.out {
      background: #2b5278;
      align-self: flex-end;
      border-bottom-right-radius: 0;
    }

    .ms-app.wa .msg.in {
      background: #202C33;
      border-radius: 8px;
      border-top-left-radius: 0;
    }

    .ms-app.wa .msg.out {
      background: #005c4b;
      border-radius: 8px;
      border-top-right-radius: 0;
    }

    .msg-time {
      position: absolute;
      bottom: 4px;
      right: 8px;
      font-size: 11px;
      color: #7a8a9e;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .msg.out .msg-time {
      color: #7cb3e8
    }

    .ms-app.wa .msg-time {
      color: #8696a0
    }

    .ms-app.wa .msg.out .msg-time {
      color: #53bdeb
    }

    /* WA ticks */
    /* TG Tails */
    .msg.in::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: -8px;
      width: 16px;
      height: 14px;
      background: radial-gradient(circle at top left, transparent 70%, #182533 70%);
    }

    .msg.out::before {
      content: '';
      position: absolute;
      bottom: 0;
      right: -8px;
      width: 16px;
      height: 14px;
      background: radial-gradient(circle at top right, transparent 70%, #2b5278 70%);
    }

    /* WA Tails */
    .ms-app.wa .msg.in::before {
      content: '';
      position: absolute;
      top: 0;
      left: -8px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 8px 10px 0;
      border-color: transparent #202C33 transparent transparent;
      background: none
    }

    .ms-app.wa .msg.out::before {
      content: '';
      position: absolute;
      top: 0;
      right: -8px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 0 10px 8px;
      border-color: transparent transparent transparent #005c4b;
      background: none
    }

    /* ══════════ ABOUT BENTO GRID (REDESIGNED) ══════════ */
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 220px);
      gap: 20px;
    }

    .bento {
      background: var(--bg1);
      border: 1px solid var(--brd);
      border-radius: 24px;
      padding: 32px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition: border-color .3s, transform .3s;
    }

    .bento:hover {
      border-color: var(--brd2);
      transform: translateY(-2px)
    }

    .bento::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(255, 184, 0, .1) 0%, transparent 70%);
      pointer-events: none;
    }

    .b-l {
      grid-column: span 2;
      grid-row: span 2;
      background: linear-gradient(135deg, var(--bg1) 0%, #181b21 100%);
      justify-content: space-between
    }

    .b-ico {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--bg2);
      border: 1px solid var(--brd);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: auto
    }

    .b-num {
      font-family: var(--ff);
      font-size: 64px;
      font-weight: 900;
      line-height: 1;
      color: var(--amber);
      margin-bottom: 8px;
      letter-spacing: -2px
    }

    .b-ttl {
      font-family: var(--ff);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 4px
    }

    .b-txt {
      font-size: 14px;
      color: var(--tx2);
      line-height: 1.5
    }

    .b-bg-num {
      position: absolute;
      top: -20px;
      right: -20px;
      font-family: var(--ff);
      font-size: 200px;
      font-weight: 900;
      color: var(--bg2);
      line-height: 1;
      z-index: 0;
      user-select: none
    }

    .b-l * {
      position: relative;
      z-index: 1
    }

    /* ══════════ FOMO CTA (REDESIGNED) ══════════ */
    .fomo-cta {
      background: linear-gradient(180deg, #1A130A 0%, var(--bg) 100%);
      border: 1px solid var(--amberL);
      border-radius: 24px;
      padding: 64px;
      position: relative;
      overflow: hidden;
      text-align: center;
      box-shadow: inset 0 0 100px rgba(255, 184, 0, .05);
    }

    .fomo-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--red), var(--amber), var(--red));
      background-size: 200% auto;
      animation: shimmer 2s linear infinite;
    }

    .fomo-lbl {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 77, 77, .1);
      color: var(--red);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 24px;
      border: 1px solid rgba(255, 77, 77, .2);
    }

    .blink-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--red);
      animation: gd 1s infinite
    }

    .fomo-ttl {
      font-family: var(--ff);
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 900;
      letter-spacing: -1px;
      margin-bottom: 16px;
      line-height: 1.1
    }

    .fomo-txt {
      font-size: 18px;
      color: var(--tx2);
      max-width: 600px;
      margin: 0 auto 40px
    }

    .fomo-dashboard {
      display: inline-flex;
      gap: 24px;
      background: var(--bg1);
      border: 1px solid var(--brd);
      padding: 24px 40px;
      border-radius: 16px;
      margin-bottom: 40px;
      text-align: left;
    }

    .fd-box {
      display: flex;
      flex-direction: column;
      gap: 4px
    }

    .fd-lbl {
      font-size: 11px;
      color: var(--tx3);
      text-transform: uppercase;
      letter-spacing: 1px
    }

    .fd-val {
      font-family: var(--ff), monospace;
      font-size: 28px;
      font-weight: 700;
      color: var(--amber)
    }

    .timer-ms {
      font-size: 16px;
      color: var(--tx3)
    }

    .fomo-btn {
      display: inline-block;
      background: var(--amber);
      color: #000;
      padding: 20px 48px;
      border-radius: 16px;
      font-family: var(--ff);
      font-size: 18px;
      font-weight: 700;
      box-shadow: 0 12px 32px rgba(255, 184, 0, .25);
      transition: all .3s;
    }

    .fomo-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 16px 48px rgba(255, 184, 0, .4)
    }

    /* Utilities */
    .calc,
    .plat-tabs,
    .plat-pane,
    .form-wrap,
    .faq-wrap {
      margin-bottom: 24px;
    }

    @media(max-width:1100px) {
      .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }

      .b-l {
        grid-column: span 2;
      }

      .vs-wrap {
        grid-template-columns: 1fr
      }

      .rev-grid {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:768px) {
      .trust-grid {
        grid-template-columns: 1fr 1fr
      }

      .bento-grid {
        grid-template-columns: 1fr;
      }

      .b-l {
        grid-column: span 1;
      }

      .brd-th {
        display: none
      }

      .brd-row {
        grid-template-columns: 40px 1fr 1fr;
        gap: 8px
      }

      .brd-arr,
      .brd-dest {
        display: none
      }

      .fomo-cta {
        padding: 32px 20px;
      }

      .fomo-dashboard {
        flex-direction: column;
        align-items: center;
        text-align: center
      }

      .aff-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
      }

      .aff-btn {
        width: 100%;
        text-align: center;
      }
    }

    /* ══════════ NEW BLOCKS CSS ══════════ */
    .hero-quiz-sec {
      background: var(--bg1);
      border-top: 1px solid var(--brd);
      border-bottom: 1px solid var(--brd);
    }

    .hero-quiz {
      background: var(--bg2);
      border: 1px solid var(--brd);
      border-radius: 24px;
      padding: 48px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
      max-width: 800px;
      margin: 0 auto;
    }

    .quiz-step {
      display: none;
    }

    .quiz-step.active {
      display: block;
      animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    .q-title {
      font-family: var(--ff);
      font-size: 24px;
      margin-bottom: 32px;
      font-weight: 700;
      color: var(--amber);
      text-align: center;
    }

    .q-opts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 16px;
      margin-bottom: 24px;
    }

    .q-opt {
      background: var(--bg3);
      border: 1px solid var(--brd);
      border-radius: 12px;
      padding: 18px;
      text-align: center;
      cursor: pointer;
      transition: .2s;
      font-size: 15px;
      font-weight: 600;
    }

    .q-opt:hover,
    .q-opt.sel {
      background: rgba(255, 184, 0, .1);
      border-color: var(--amber);
      color: var(--amber);
      box-shadow: inset 0 0 10px rgba(255, 184, 0, .1);
    }

    .q-input {
      width: 100%;
      padding: 20px;
      background: var(--bg3);
      border: 1px solid var(--brd);
      border-radius: 12px;
      color: #fff;
      font-family: inherit;
      font-size: 18px;
      margin-bottom: 24px;
    }

    .q-input:focus {
      outline: none;
      border-color: var(--amber);
    }

    .q-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .q-btn {
      padding: 14px 32px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 16px;
      transition: .2s;
      cursor: pointer;
    }

    .q-back {
      background: transparent;
      border: 1px solid var(--brd);
      color: var(--tx2);
    }

    .q-back:hover {
      color: #fff;
      border-color: var(--brdLight);
    }

    .q-next {
      background: var(--amber);
      color: #000;
      border: none;
    }

    .q-next:hover {
      background: var(--amber2);
    }

    .q-res {
      text-align: center;
      padding: 32px;
      background: rgba(0, 230, 118, .05);
      border: 1px solid rgba(0, 230, 118, .2);
      border-radius: 16px;
      margin-bottom: 32px;
    }

    .q-res-val {
      font-family: var(--ff);
      font-size: 48px;
      color: var(--green);
      margin: 12px 0;
      font-weight: 900;
    }

    .partners-sec {
      padding: 60px 0;
      border-top: 1px solid var(--brd);
      border-bottom: 1px solid var(--brd);
      background: linear-gradient(90deg, var(--bg) 0%, rgba(255, 184, 0, .02) 50%, var(--bg) 100%);
      overflow: hidden;
      margin-top: 0;
      margin-bottom: 0px;
      position: relative;
      z-index: 10;
    }

    .p-title {
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--tx3);
      margin-bottom: 32px;
    }

    .p-track {
      display: flex;
      gap: 64px;
      width: max-content;
      animation: pMq 40s linear infinite;
    }

    @keyframes pMq {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .p-logo {
      font-family: var(--ff);
      font-size: 22px;
      font-weight: 900;
      color: rgba(255, 255, 255, .15);
      text-transform: uppercase;
      letter-spacing: -1px;
      transition: 0.3s;
      filter: grayscale(100%);
    }

    .p-logo:hover {
      color: rgba(255, 255, 255, .6);
    }

    .aff-box {
      background: linear-gradient(135deg, rgba(155, 111, 255, .1), rgba(0, 0, 0, 0));
      border: 1px solid rgba(155, 111, 255, .2);
      border-radius: 20px;
      padding: 40px;
      margin-top: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      box-shadow: 0 16px 32px rgba(0, 0, 0, .3);
    }

    .aff-ic {
      font-size: 48px;
      margin-bottom: 16px;
    }

    .aff-txt h3 {
      font-family: var(--ff);
      font-size: 26px;
      margin-bottom: 12px;
      color: #fff;
    }

    .aff-txt p {
      color: var(--tx2);
      font-size: 16px;
      max-width: 500px;
      line-height: 1.6;
    }

    .aff-btn {
      display: inline-block;
      background: var(--purple);
      color: #fff;
      padding: 16px 32px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 16px;
      transition: .2s;
      white-space: nowrap;
      border: none;
      cursor: pointer;
    }

    .aff-btn:hover {
      background: #8a5deb;
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(155, 111, 255, .3);
    }

    .exit-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .8);
      backdrop-filter: blur(8px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: 0.4s;
    }

    .exit-overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    .exit-modal {
      background: var(--bg1);
      border: 1px solid var(--amberL);
      border-radius: 24px;
      width: 100%;
      max-width: 500px;
      padding: 48px;
      text-align: center;
      position: relative;
      transform: scale(0.9);
      transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 32px 64px rgba(0, 0, 0, .6);
    }

    .exit-overlay.show .exit-modal {
      transform: scale(1);
    }

    .exit-close {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 32px;
      color: var(--tx3);
      cursor: pointer;
      transition: .2s;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
    }

    .exit-close:hover {
      color: #fff;
      background: rgba(255, 255, 255, .05);
      border-radius: 50%;
    }

    .em-ic {
      font-size: 64px;
      margin-bottom: 24px;
    }

    .em-ttl {
      font-family: var(--ff);
      font-size: 32px;
      font-weight: 900;
      margin-bottom: 16px;
      color: var(--amber);
      letter-spacing: -1px;
    }

    .em-txt {
      font-size: 16px;
      color: var(--tx2);
      margin-bottom: 32px;
      line-height: 1.6;
    }

    .em-promo {
      background: rgba(255, 184, 0, .1);
      border: 1px dashed var(--amber);
      padding: 16px;
      border-radius: 12px;
      font-family: var(--ff);
      font-weight: 900;
      font-size: 24px;
      color: #fff;
      margin-bottom: 32px;
      letter-spacing: 3px;
    }

    .live-stat {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0, 230, 118, .1);
      border: 1px solid rgba(0, 230, 118, .2);
      padding: 6px 16px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 700;
      color: var(--green);
      margin-bottom: 24px;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      animation: gd 1.5s infinite;
    }
  
/* ══════════ FAQ ACCORDION ══════════ */
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg2); border: 1px solid var(--brd); border-radius: 12px; padding: 20px; transition: border-color 0.3s; }
.faq-item:hover { border-color: var(--brdLight); }
.faq-q { font-family: var(--ff); font-size: 18px; font-weight: 700; color: #fff; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 28px; color: var(--amber); transition: 0.3s; line-height: 1; margin-left: 16px; font-weight: 400; }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: 15px; color: var(--tx2); line-height: 1.6; margin-top: 12px; border-top: 1px solid var(--brd); padding-top: 12px; }
