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

    :root {
      --pink: #FF4FD8;
      --purple: #A855F7;
      --indigo: #7B61FF;
      --yellow: #FFD166;
      --bg: #F9F7FF;
      --card: #FFFFFF;
      --border: #E9E4FF;
      --heading: #111111;
      --para: #555555;
      --muted: #777777;
      --grad: linear-gradient(135deg, #FF4FD8, #A855F7, #7B61FF, #FFD166);
      --grad-btn: linear-gradient(135deg, #FF4FD8 0%, #A855F7 50%, #7B61FF 100%);
      --radius: 22px;
      --shadow: 0 8px 40px rgba(168,85,247,0.10);
      --shadow-hover: 0 16px 56px rgba(168,85,247,0.22);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--para);
      overflow-x: hidden;
      line-height: 1.7;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Poppins', sans-serif;
      color: var(--heading);
      line-height: 1.25;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--indigo); border-radius: 99px; }

    /* ===== BLOBS ===== */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.18;
      pointer-events: none;
      z-index: 0;
    }
    .blob-1 { width: 420px; height: 420px; background: var(--pink); top: -120px; right: -80px; }
    .blob-2 { width: 320px; height: 320px; background: var(--indigo); bottom: 60px; left: -100px; }
    .blob-3 { width: 260px; height: 260px; background: var(--yellow); top: 40%; right: 5%; }

    /* ===== HEADER ===== */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 999;
      padding: 0 5%;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
    }
    header.scrolled {
      background: rgba(249,247,255,0.85);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 4px 28px rgba(123,97,255,0.10);
    }
    .header-logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .header-logo img { height: 38px; width: auto; border-radius: 8px; }
    .header-logo span {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      white-space: nowrap;
    }
    nav { display: flex; align-items: center; gap: 2px; }
    nav a {
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-size: 0.88rem;
      color: var(--heading);
      padding: 8px 14px;
      border-radius: 10px;
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }
    nav a:hover, nav a.active { background: rgba(168,85,247,0.08); color: var(--purple); }
    .header-right { display: flex; align-items: center; gap: 14px; }
    .btn-join {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--grad-btn);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.88rem;
      padding: 10px 22px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 18px rgba(168,85,247,0.35);
      transition: transform 0.2s, box-shadow 0.2s;
      white-space: nowrap;
    }
    .btn-join:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(168,85,247,0.45); }

    /* Mobile menu */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      border-radius: 8px;
      transition: background 0.2s;
    }
    .hamburger:hover { background: rgba(168,85,247,0.08); }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2.5px;
      background: var(--heading);
      border-radius: 99px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
    .mobile-nav {
      display: none;
      position: fixed;
      top: 72px; left: 0; right: 0;
      background: rgba(249,247,255,0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 20px 5%;
      flex-direction: column;
      gap: 4px;
      box-shadow: 0 12px 40px rgba(123,97,255,0.12);
      z-index: 998;
      transform: translateY(-10px);
      opacity: 0;
      transition: transform 0.3s, opacity 0.3s;
    }
    .mobile-nav.open { display: flex; transform: translateY(0); opacity: 1; }
    .mobile-nav a {
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-size: 1rem;
      color: var(--heading);
      padding: 12px 16px;
      border-radius: 12px;
      transition: background 0.2s;
    }
    .mobile-nav a:hover { background: rgba(168,85,247,0.08); color: var(--purple); }
    .mobile-nav .btn-join { margin-top: 8px; width: 100%; justify-content: center; }

    /* ===== BUTTONS ===== */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--grad-btn);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      padding: 14px 32px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 24px rgba(168,85,247,0.38);
      transition: transform 0.22s, box-shadow 0.22s;
      position: relative;
      overflow: hidden;
    }
    .btn-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
      pointer-events: none;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(168,85,247,0.5); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: transparent;
      color: var(--purple);
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      padding: 13px 32px;
      border-radius: 50px;
      border: 2px solid var(--purple);
      cursor: pointer;
      transition: background 0.22s, color 0.22s, transform 0.22s;
    }
    .btn-outline:hover { background: var(--purple); color: #fff; transform: translateY(-3px); }

    .btn-wa {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.92rem;
      padding: 11px 26px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(37,211,102,0.3);
      transition: transform 0.22s, box-shadow 0.22s;
    }
    .btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.45); }

    /* ===== SECTION GENERIC ===== */
    section { position: relative; padding: 90px 5%; overflow: hidden; }
    .container { max-width: 1160px; margin: 0 auto; }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, rgba(255,79,216,0.1), rgba(168,85,247,0.1));
      border: 1px solid rgba(168,85,247,0.22);
      color: var(--purple);
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.78rem;
      padding: 6px 16px;
      border-radius: 50px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .section-title {
      font-size: clamp(1.75rem, 3.5vw, 2.6rem);
      font-weight: 800;
      margin-bottom: 16px;
    }
    .section-title .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-sub {
      font-size: 1.05rem;
      color: var(--para);
      max-width: 600px;
      margin-bottom: 48px;
    }
    .text-center { text-align: center; }
    .text-center .section-sub { margin: 0 auto 48px; }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      padding: 120px 5% 80px;
      display: flex;
      align-items: center;
      background: var(--bg);
      overflow: hidden;
    }
    .hero-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-content { display: flex; flex-direction: column; gap: 24px; }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, rgba(255,79,216,0.12), rgba(168,85,247,0.12));
      border: 1.5px solid rgba(168,85,247,0.25);
      color: var(--purple);
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      padding: 7px 18px;
      border-radius: 50px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      width: fit-content;
    }
    .hero-title {
      font-size: clamp(2.1rem, 4.5vw, 3.5rem);
      font-weight: 900;
      line-height: 1.15;
    }
    .hero-title .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 1.08rem;
      color: var(--para);
      line-height: 1.75;
      max-width: 520px;
    }
    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 6px;
    }
    .trust-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,0.8);
      border: 1.5px solid var(--border);
      border-radius: 50px;
      padding: 7px 16px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--heading);
      box-shadow: 0 2px 12px rgba(123,97,255,0.07);
    }
    .trust-chip svg { color: var(--purple); flex-shrink: 0; }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-glow {
      position: absolute;
      width: 110%;
      height: 110%;
      border-radius: 50%;
      background: radial-gradient(ellipse, rgba(168,85,247,0.22) 0%, rgba(255,79,216,0.12) 40%, transparent 70%);
      filter: blur(30px);
      z-index: 0;
    }
    .hero-img-wrap {
      position: relative;
      z-index: 1;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(123,97,255,0.28);
      border: 2.5px solid rgba(168,85,247,0.18);
    }
    .hero-img-wrap img { width: 100%; border-radius: var(--radius); }

    /* ===== FEATURE CARDS ===== */
    .cards-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 36px 28px;
      box-shadow: var(--shadow);
      border: 1.5px solid var(--border);
      transition: transform 0.28s, box-shadow 0.28s;
      position: relative;
      overflow: hidden;
    }
    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: var(--grad);
      opacity: 0;
      transition: opacity 0.28s;
    }
    .card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
    .card:hover::before { opacity: 1; }

    .card-icon {
      width: 56px; height: 56px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(255,79,216,0.12), rgba(168,85,247,0.18));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      font-size: 1.5rem;
    }
    .card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .card p { font-size: 0.93rem; color: var(--para); line-height: 1.7; }

    /* ===== WHY CHOOSE ===== */
    .cards-grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .why-card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 32px 24px;
      box-shadow: var(--shadow);
      border: 1.5px solid var(--border);
      text-align: center;
      transition: transform 0.28s, box-shadow 0.28s;
    }
    .why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
    .why-icon {
      width: 64px; height: 64px;
      border-radius: 18px;
      background: var(--grad);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      font-size: 1.6rem;
      box-shadow: 0 6px 22px rgba(168,85,247,0.3);
    }
    .why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .why-card p { font-size: 0.88rem; color: var(--para); }

    /* ===== POLICY SECTION ===== */
    .policy-section { background: var(--bg); }
    .policy-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-top: 48px;
    }
    .policy-card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 36px 32px;
      box-shadow: var(--shadow);
      border: 1.5px solid var(--border);
    }
    .policy-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .policy-card h3 .pill {
      font-size: 0.72rem;
      background: linear-gradient(135deg, rgba(255,79,216,0.15), rgba(168,85,247,0.15));
      border: 1px solid rgba(168,85,247,0.2);
      color: var(--purple);
      padding: 3px 12px;
      border-radius: 50px;
      font-weight: 600;
      letter-spacing: 0.04em;
    }
    .policy-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .policy-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.92rem;
      color: var(--para);
    }
    .policy-list li::before {
      content: '✦';
      color: var(--purple);
      font-size: 0.75rem;
      margin-top: 4px;
      flex-shrink: 0;
    }

    /* Commission table */
    .commission-grid {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 14px;
    }
    .commission-chip {
      background: var(--grad);
      color: #fff;
      border-radius: 12px;
      padding: 10px 20px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      box-shadow: 0 4px 14px rgba(168,85,247,0.3);
      text-align: center;
    }
    .commission-chip span { display: block; font-size: 0.72rem; font-weight: 500; opacity: 0.85; }

    /* ===== SPLIT CTA ===== */
    .split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .split-card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 44px 36px;
      box-shadow: var(--shadow);
      border: 1.5px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: transform 0.28s, box-shadow 0.28s;
    }
    .split-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .split-card .bg-accent {
      position: absolute;
      top: -40px; right: -40px;
      width: 160px; height: 160px;
      background: var(--grad);
      opacity: 0.08;
      border-radius: 50%;
      filter: blur(30px);
    }
    .split-card h3 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .split-card p { font-size: 0.95rem; color: var(--para); margin-bottom: 20px; }
    .split-benefits { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
    .split-benefits li {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 0.9rem;
      color: var(--para);
    }
    .check {
      width: 20px; height: 20px;
      background: linear-gradient(135deg, var(--purple), var(--indigo));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .check svg { color: #fff; }

    /* ===== WHATSAPP SECTION ===== */
    .wa-section {
      background: linear-gradient(135deg, rgba(37,211,102,0.06) 0%, rgba(168,85,247,0.06) 100%);
      border: 1.5px solid rgba(37,211,102,0.15);
      border-radius: 28px;
      padding: 56px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      margin: 0 auto;
      max-width: 720px;
    }
    .wa-section h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 14px; }
    .wa-section p { font-size: 1rem; color: var(--para); max-width: 520px; margin: 0 auto 28px; }
    .wa-icon {
      width: 72px; height: 72px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      font-size: 2rem;
      box-shadow: 0 8px 28px rgba(37,211,102,0.35);
    }

    /* ===== FAQ ===== */
    .faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 840px; margin: 0 auto; }
    .faq-item {
      background: var(--card);
      border-radius: 16px;
      border: 1.5px solid var(--border);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 26px;
      cursor: pointer;
      user-select: none;
      gap: 16px;
      transition: background 0.2s;
    }
    .faq-q:hover { background: rgba(168,85,247,0.03); }
    .faq-q h3 { font-size: 1rem; font-weight: 600; color: var(--heading); margin: 0; }
    .faq-icon {
      width: 30px; height: 30px;
      background: linear-gradient(135deg, rgba(255,79,216,0.12), rgba(168,85,247,0.18));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.3s;
      color: var(--purple);
      font-size: 1rem;
      font-weight: 700;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .faq-a-inner {
      padding: 0 26px 20px;
      font-size: 0.93rem;
      color: var(--para);
      line-height: 1.75;
    }

    /* ===== FINAL CTA ===== */
    .final-cta {
      background: var(--grad);
      border-radius: 32px;
      padding: 80px 40px;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      box-shadow: 0 24px 80px rgba(168,85,247,0.3);
    }
    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
      pointer-events: none;
    }
    .final-cta h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 900;
      color: #fff;
      margin-bottom: 16px;
      position: relative;
    }
    .final-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.88); max-width: 560px; margin: 0 auto 36px; position: relative; }
    .final-cta-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }
    .btn-white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #fff;
      color: var(--purple);
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 14px 32px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 22px rgba(0,0,0,0.12);
      transition: transform 0.22s, box-shadow 0.22s;
    }
    .btn-white:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.18); }
    .btn-white-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: transparent;
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 13px 32px;
      border-radius: 50px;
      border: 2px solid rgba(255,255,255,0.6);
      cursor: pointer;
      transition: background 0.22s, transform 0.22s;
    }
    .btn-white-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

    /* ===== FOOTER ===== */
    footer {
      background: #111111;
      color: rgba(255,255,255,0.75);
      padding: 70px 5% 36px;
    }
    .footer-grid {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand {}
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
    }
    .footer-logo img { height: 36px; border-radius: 8px; }
    .footer-logo span {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.1rem;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .footer-brand p { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.6); max-width: 280px; }
    .footer-col h4 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      color: #fff;
      margin-bottom: 18px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--pink); }
    .footer-contact p {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.6);
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }
    .footer-contact p strong { color: #fff; }
    .footer-wa-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37,211,102,0.15);
      border: 1px solid rgba(37,211,102,0.3);
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 0.82rem;
      color: #25D366;
      font-weight: 600;
      margin-top: 10px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .footer-wa-chip:hover { background: rgba(37,211,102,0.25); }
    .footer-bottom {
      max-width: 1160px;
      margin: 28px auto 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
    }
    .footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
    .footer-grad-bar {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .fgb-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
    }

    /* ===== FLOATING WA BUTTON ===== */
    .float-wa {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 888;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25D366, #128C7E);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 6px 28px rgba(37,211,102,0.5);
      cursor: pointer;
      transition: transform 0.22s, box-shadow 0.22s;
      text-decoration: none;
      color: #fff;
    }
    .float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.65); }
    .float-wa-tooltip {
      position: absolute;
      right: 66px;
      background: #111;
      color: #fff;
      font-size: 0.78rem;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 8px;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.2s;
      pointer-events: none;
    }
    .float-wa:hover .float-wa-tooltip { opacity: 1; }

    /* ===== PROMO STRIP ===== */
    .promo-strip {
      background: linear-gradient(135deg, #25D366 0%, var(--purple) 100%);
      padding: 18px 5%;
      text-align: center;
    }
    .promo-strip p {
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 0.92rem;
    }
    .promo-strip a {
      color: var(--yellow);
      text-decoration: underline;
    }

    /* ===== SCROLL ANIMATION ===== */
    .fade-up {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    .fade-up-d1 { transition-delay: 0.1s; }
    .fade-up-d2 { transition-delay: 0.2s; }
    .fade-up-d3 { transition-delay: 0.3s; }
    .fade-up-d4 { transition-delay: 0.4s; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
      .policy-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      nav, .header-right .btn-join { display: none; }
      .hamburger { display: flex; }
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { order: -1; }
      .hero-title { font-size: 2rem; }
      .cards-grid-3 { grid-template-columns: 1fr; }
      .cards-grid-4 { grid-template-columns: 1fr 1fr; }
      .split-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .final-cta { padding: 56px 28px; }
      .wa-section { padding: 44px 24px; }
      section { padding: 70px 5%; }
    }

    @media (max-width: 480px) {
      .cards-grid-4 { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; align-items: flex-start; }
      .footer-bottom { justify-content: center; text-align: center; }
      .commission-grid { justify-content: center; }
    }
  