    :root {
      --white: #ffffff;
      --bg: #f4f7ff;
      --bg2: #eef2ff;
      --blue: #60a5fa;
      --blue-dark: #3b82f6;
      --blue-soft: #dbeafe;
      --purple: #a78bfa;
      --purple-dark: #7c3aed;
      --purple-soft: #ede9fe;
      --pink: #f9a8d4;
      --pink-dark: #ec4899;
      --pink-soft: #fce7f3;
      --text: #1e1b4b;
      --text-soft: #6b7280;
      --border: #e5e7eb;
      --shadow: 0 4px 24px rgba(99,102,241,0.10);
      --shadow-lg: 0 8px 40px rgba(99,102,241,0.18);
      --radius: 20px;
      --radius-sm: 12px;
    }
 
    * { margin: 0; padding: 0; box-sizing: border-box; }
 
    html { scroll-behavior: smooth; }
 
    body {
      font-family: 'Quicksand', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }
 
    /* ─── Scrollbar ─── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg2); }
    ::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 99px; }
 
    /* ─── Navbar ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      height: 68px;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(167,139,250,0.15);
      box-shadow: 0 2px 20px rgba(99,102,241,0.07);
    }
 
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Nunito', sans-serif;
      font-size: 1.4rem; font-weight: 900;
      background: linear-gradient(135deg, var(--blue-dark), var(--purple));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      text-decoration: none;
    }
 
    .nav-logo .logo-icon {
      width: 38px; height: 38px;
      background: linear-gradient(135deg, var(--blue), var(--purple));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 14px rgba(99,102,241,0.3);
    }
 
    .nav-links {
      display: flex; align-items: center; gap: 32px;
      list-style: none;
    }
 
    .nav-links a {
      text-decoration: none;
      color: var(--text-soft);
      font-weight: 600; font-size: 0.95rem;
      transition: color 0.2s;
      position: relative;
    }
 
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--purple));
      border-radius: 99px;
      transform: scaleX(0);
      transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    }
 
    .nav-links a:hover { color: var(--purple-dark); }
    .nav-links a:hover::after { transform: scaleX(1); }
 
    .nav-cta {
      padding: 10px 22px;
      background: linear-gradient(135deg, var(--blue-dark), var(--purple));
      color: white !important;
      border-radius: 99px;
      font-weight: 700 !important;
      box-shadow: 0 4px 14px rgba(99,102,241,0.3);
      transition: transform 0.2s, box-shadow 0.2s !important;
    }
 
    .nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(99,102,241,0.4) !important;
      color: white !important;
    }
 
    .nav-cta::after { display: none !important; }

    /* ─── Login Dropdown ─── */
    .nav-dropdown { position: relative; }

    .nav-dropdown-toggle {
      display: flex; align-items: center; gap: 6px;
      background: var(--purple-soft);
      color: var(--purple-dark);
      border: none; border-radius: 99px;
      padding: 8px 16px;
      font-family: 'Quicksand', sans-serif; font-size: 0.95rem; font-weight: 700;
      cursor: pointer;
      transition: background 0.2s;
    }
    .nav-dropdown-toggle:hover { background: #ddd6fe; }

    .nav-chevron {
      font-size: 0.65rem;
      transition: transform 0.25s;
    }
    .nav-dropdown.open .nav-chevron { transform: rotate(180deg); }

    .nav-dropdown-menu {
      position: absolute; top: calc(100% + 10px); right: 0;
      background: white;
      border: 1px solid rgba(167,139,250,0.2);
      border-radius: 16px;
      box-shadow: 0 8px 32px rgba(99,102,241,0.15);
      min-width: 170px; padding: 8px;
      opacity: 0; visibility: hidden;
      transform: translateY(-8px);
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      z-index: 200;
    }
    .nav-dropdown.open .nav-dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1; visibility: visible; transform: translateY(0);
    }
    .nav-dropdown-menu a {
      display: flex; align-items: center; gap: 9px;
      padding: 10px 14px; border-radius: 10px;
      color: var(--text); font-size: 0.9rem; font-weight: 700;
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
    }
    .nav-dropdown-menu a::after { display: none !important; }
    .nav-dropdown-menu a:hover { background: var(--purple-soft); color: var(--purple-dark); }
    .nav-dropdown-menu a i { width: 16px; text-align: center; opacity: 0.7; }

    /* mobile: dropdown jadi list biasa */
    @media (max-width: 900px) {
      .nav-dropdown { width: 100%; }
      .nav-dropdown-toggle {
        width: 100%; justify-content: space-between;
        border-radius: 10px; padding: 10px 14px;
        background: var(--purple-soft);
      }
      .nav-dropdown-menu {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none;
        border: none; border-radius: 0; padding: 0;
        display: none; background: transparent;
        min-width: auto;
      }
      .nav-dropdown.open .nav-dropdown-menu { display: block; }
      .nav-dropdown-menu a {
        padding: 10px 14px 10px 28px;
        color: var(--text-soft); font-size: 0.9rem;
        border-radius: 8px;
      }
      .nav-dropdown-menu a:hover { background: var(--purple-soft); color: var(--purple-dark); }
    }

    .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(--purple); border-radius: 99px;
      transition: 0.3s;
    }
 
    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 100px 5% 60px;
      position: relative;
      overflow: hidden;
    }
 
    /* Floating background orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      opacity: 0.55;
    }
    .orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #bfdbfe, #e0e7ff); top: -200px; right: -200px; }
    .orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #ede9fe, #fce7f3); bottom: -100px; left: -100px; }
    .orb-3 { width: 250px; height: 250px; background: radial-gradient(circle, #fce7f3, #fdf4ff); top: 40%; left: 40%; }
 
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      position: relative; z-index: 1;
      width: 100%;
    }
 
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: linear-gradient(135deg, var(--blue-soft), var(--purple-soft));
      border: 1px solid rgba(167,139,250,0.3);
      border-radius: 99px;
      padding: 6px 16px;
      font-size: 0.85rem; font-weight: 700;
      color: var(--purple-dark);
      margin-bottom: 24px;
      animation: fadeInDown 0.6s ease both;
    }
 
    .hero-badge i { font-size: 0.9rem; color: var(--blue-dark); }
 
    .hero-title {
      font-family: 'Nunito', sans-serif;
      font-size: clamp(2rem, 4.5vw, 3.4rem);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 20px;
      animation: fadeInUp 0.7s ease 0.1s both;
    }
 
    .hero-title .gradient-text {
      background: linear-gradient(135deg, var(--blue-dark), var(--purple), var(--pink-dark));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
 
    .hero-sub {
      font-size: 1.1rem;
      color: var(--text-soft);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 480px;
      animation: fadeInUp 0.7s ease 0.2s both;
    }
 
    .hero-actions {
      display: flex; gap: 14px; flex-wrap: wrap;
      animation: fadeInUp 0.7s ease 0.3s both;
    }
 
    .btn-primary {
      padding: 14px 32px;
      background: linear-gradient(135deg, var(--blue-dark), var(--purple));
      color: white;
      border: none; border-radius: 99px;
      font-family: 'Nunito', sans-serif;
      font-size: 1rem; font-weight: 800;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(99,102,241,0.35);
      transition: transform 0.25s, box-shadow 0.25s;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
    }
 
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(99,102,241,0.45);
    }
 
    .btn-secondary {
      padding: 14px 28px;
      background: white;
      color: var(--purple-dark);
      border: 2px solid var(--purple);
      border-radius: 99px;
      font-family: 'Nunito', sans-serif;
      font-size: 1rem; font-weight: 700;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
    }
 
    .btn-secondary:hover {
      background: var(--purple-soft);
      transform: translateY(-3px);
    }
 
    .hero-stats {
      display: flex; gap: 28px; margin-top: 40px;
      animation: fadeInUp 0.7s ease 0.4s both;
    }
 
    .stat {
      text-align: center;
    }
 
    .stat-num {
      font-family: 'Nunito', sans-serif;
      font-size: 1.6rem; font-weight: 900;
      background: linear-gradient(135deg, var(--blue-dark), var(--purple));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
 
    .stat-label {
      font-size: 0.8rem; color: var(--text-soft); font-weight: 600;
    }
 
    /* Mascot area */
    .hero-visual {
      display: flex; justify-content: center; align-items: center;
      animation: fadeInRight 0.9s ease 0.2s both;
      position: relative;
    }
 
    .mascot-card {
      position: relative;
      width: min(420px, 100%);
    }
 
    .mascot-card .glow-ring {
      position: absolute;
      width: 110%; height: 110%;
      top: -5%; left: -5%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(167,139,250,0.2), transparent 70%);
      animation: pulse-ring 3s ease-in-out infinite;
    }
 
    @keyframes pulse-ring {
      0%, 100% { transform: scale(1); opacity: 0.6; }
      50% { transform: scale(1.08); opacity: 0.9; }
    }
 
    /* Floating decorative elements */
    .float-chip {
      position: absolute;
      background: white;
      border-radius: var(--radius-sm);
      padding: 10px 16px;
      box-shadow: var(--shadow);
      display: flex; align-items: center; gap: 8px;
      font-size: 0.82rem; font-weight: 700;
      animation: float 4s ease-in-out infinite;
      border: 1px solid var(--border);
    }
 
    .float-chip i { font-size: 1rem; }
    .float-chip-1 { top: 12%; right: -20px; animation-delay: 0s; color: var(--blue-dark); }
    .float-chip-1 i { color: var(--blue-dark); }
    .float-chip-2 { bottom: 20%; left: -20px; animation-delay: 1.5s; color: var(--purple-dark); }
    .float-chip-2 i { color: var(--pink-dark); }
    .float-chip-3 { top: 60%; right: -10px; animation-delay: 0.8s; color: #059669; }
    .float-chip-3 i { color: #059669; }
 
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }
 
    /* ─── SECTION COMMON ─── */
    section { padding: 90px 5%; }
 
    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
 
    .section-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: linear-gradient(135deg, var(--blue-soft), var(--purple-soft));
      border: 1px solid rgba(167,139,250,0.3);
      border-radius: 99px;
      padding: 5px 14px;
      font-size: 0.8rem; font-weight: 700;
      color: var(--purple-dark);
      margin-bottom: 14px;
    }
 
    .section-title {
      font-family: 'Nunito', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 900;
      line-height: 1.3;
      margin-bottom: 12px;
    }
 
    .section-desc {
      color: var(--text-soft);
      font-size: 1rem;
      max-width: 540px;
      margin: 0 auto;
      line-height: 1.7;
    }
 
    /* ─── KEUNGGULAN ─── */
    #keunggulan { background: white; }
 
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }
 
    .feature-card {
      background: var(--bg);
      border-radius: var(--radius);
      padding: 36px 28px;
      text-align: center;
      border: 1.5px solid var(--border);
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      position: relative; overflow: hidden;
    }
 
    .feature-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--grad);
      border-radius: 99px 99px 0 0;
      opacity: 0;
      transition: opacity 0.3s;
    }
 
    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }
 
    .feature-card:hover::before { opacity: 1; }
 
    .feature-icon {
      width: 64px; height: 64px;
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.6rem;
    }
 
    .fi-blue { background: var(--blue-soft); color: var(--blue-dark); --grad: linear-gradient(90deg, var(--blue), var(--blue-dark)); }
    .fi-purple { background: var(--purple-soft); color: var(--purple-dark); --grad: linear-gradient(90deg, var(--purple), var(--purple-dark)); }
    .fi-pink { background: var(--pink-soft); color: var(--pink-dark); --grad: linear-gradient(90deg, var(--pink), var(--pink-dark)); }
    .fi-green { background: #d1fae5; color: #059669; --grad: linear-gradient(90deg, #6ee7b7, #059669); }
 
    .feature-card h3 {
      font-family: 'Nunito', sans-serif;
      font-size: 1.1rem; font-weight: 800;
      margin-bottom: 10px;
    }
 
    .feature-card p {
      font-size: 0.9rem; color: var(--text-soft); line-height: 1.6;
    }
 
    /* ─── PAKET BULANAN ─── */
    #paket { background: var(--bg); }
 
    .paket-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      max-width: 780px;
      margin: 0 auto;
    }
 
    .paket-card {
      background: white;
      border-radius: var(--radius);
      padding: 36px 32px;
      border: 2px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
 
    .paket-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 5px;
      background: var(--card-grad);
    }
 
    .paket-card.featured {
      border-color: var(--purple);
      box-shadow: 0 0 0 4px rgba(167,139,250,0.15), var(--shadow-lg);
    }
 
    .paket-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }
 
    .paket-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: linear-gradient(135deg, var(--purple), var(--pink-dark));
      color: white;
      border-radius: 99px;
      padding: 4px 14px;
      font-size: 0.78rem; font-weight: 700;
      position: absolute; top: 18px; right: 18px;
    }
 
    .paket-name {
      font-family: 'Nunito', sans-serif;
      font-size: 0.9rem; font-weight: 700;
      color: var(--text-soft);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }
 
    .paket-speed {
      font-family: 'Nunito', sans-serif;
      font-size: 2.8rem; font-weight: 900;
      background: var(--card-grad);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      line-height: 1;
      margin-bottom: 4px;
    }
 
    .paket-unit { font-size: 1rem; font-weight: 700; color: var(--text-soft); margin-bottom: 20px; }
 
    .paket-divider {
      border: none;
      border-top: 1.5px dashed var(--border);
      margin: 20px 0;
    }
 
    .paket-price {
      font-family: 'Nunito', sans-serif;
      font-size: 1.7rem; font-weight: 900;
      color: var(--text);
      margin-bottom: 4px;
    }
 
    .paket-period { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 24px; }
 
    .paket-features { list-style: none; margin-bottom: 28px; }
 
    .paket-features li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.9rem; color: var(--text-soft);
      padding: 6px 0;
    }
 
    .paket-features li i { font-size: 0.85rem; color: #10b981; }
 
    .btn-paket {
      width: 100%;
      padding: 14px;
      background: var(--card-grad);
      color: white;
      border: none; border-radius: 99px;
      font-family: 'Nunito', sans-serif;
      font-size: 1rem; font-weight: 800;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(99,102,241,0.25);
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
 
    .btn-paket:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(99,102,241,0.4);
    }
 
    /* ─── VOUCHER ─── */
    #voucher { background: white; }
 
    .voucher-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
      max-width: 780px;
      margin: 0 auto;
    }
 
    /* Voucher cards mirror paket-card exactly — reuse same variables */
    .voucher-card {
      background: white;
      border-radius: var(--radius);
      padding: 36px 32px;
      border: 2px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
 
    .voucher-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 5px;
      background: var(--card-grad);
    }
 
    .voucher-card.featured {
      border-color: var(--pink-dark);
      box-shadow: 0 0 0 4px rgba(249,168,212,0.2), var(--shadow-lg);
    }
 
    .voucher-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
    }
 
    .voucher-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: linear-gradient(135deg, var(--blue-dark), var(--purple));
      color: white;
      border-radius: 99px;
      padding: 4px 14px;
      font-size: 0.78rem; font-weight: 700;
      position: absolute; top: 18px; right: 18px;
    }
 
    .btn-voucher {
      width: 100%;
      padding: 14px;
      background: var(--card-grad);
      color: white;
      border: none; border-radius: 99px;
      font-family: 'Nunito', sans-serif;
      font-size: 1rem; font-weight: 800;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(99,102,241,0.25);
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
 
    .btn-voucher:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(99,102,241,0.4);
    }
 
    /* ─── MODAL ─── */
    .modal-overlay {
      position: fixed; inset: 0;
      background: rgba(30,27,75,0.5);
      backdrop-filter: blur(6px);
      z-index: 999;
      display: flex; align-items: center; justify-content: center;
      padding: 20px;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s;
    }
 
    .modal-overlay.active { opacity: 1; pointer-events: all; }
 
    .modal-box {
      background: white;
      border-radius: 28px;
      padding: 40px 36px;
      width: 100%;
      max-width: 420px;
      box-shadow: 0 24px 80px rgba(30,27,75,0.25);
      transform: translateY(30px) scale(0.97);
      transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
      position: relative;
    }
 
    .modal-overlay.active .modal-box {
      transform: translateY(0) scale(1);
    }
 
    .modal-close {
      position: absolute; top: 16px; right: 16px;
      width: 36px; height: 36px;
      background: var(--bg);
      border: none; border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-soft);
      font-size: 1rem;
      transition: background 0.2s, color 0.2s;
    }
 
    .modal-close:hover { background: var(--purple-soft); color: var(--purple-dark); }
 
    .modal-header {
      text-align: center;
      margin-bottom: 28px;
    }
 
    .modal-icon {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, var(--blue-soft), var(--purple-soft));
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      margin: 0 auto 14px;
    }
 
    .modal-title {
      font-family: 'Nunito', sans-serif;
      font-size: 1.4rem; font-weight: 900;
      margin-bottom: 4px;
    }
 
    .modal-subtitle { font-size: 0.9rem; color: var(--text-soft); }
 
    .modal-info {
      background: var(--bg);
      border-radius: var(--radius-sm);
      padding: 16px 20px;
      margin-bottom: 20px;
      display: flex; justify-content: space-between; align-items: center;
    }
 
    .modal-info-label { font-size: 0.85rem; color: var(--text-soft); }
    .modal-info-value {
      font-family: 'Nunito', sans-serif;
      font-size: 1.1rem; font-weight: 900;
      background: linear-gradient(135deg, var(--blue-dark), var(--purple));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
 
    .qris-box {
      background: white;
      border: 2px dashed var(--purple);
      border-radius: var(--radius-sm);
      padding: 20px;
      text-align: center;
      margin-bottom: 24px;
    }
 
    .qris-label {
      font-size: 0.75rem; font-weight: 700;
      color: var(--purple-dark);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 14px;
      display: flex; align-items: center; justify-content: center; gap: 6px;
    }
 
    /* QR Placeholder */
    .qr-placeholder {
      width: 160px; height: 160px;
      margin: 0 auto;
      background: white;
      border: 3px solid var(--text);
      border-radius: 8px;
      padding: 8px;
      position: relative;
    }
 
    .qr-inner {
      width: 100%; height: 100%;
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      grid-template-rows: repeat(10, 1fr);
      gap: 2px;
    }
 
    .qr-cell {
      background: var(--text);
      border-radius: 1px;
    }
 
    .qr-corner {
      width: 36px; height: 36px;
      border: 4px solid var(--text);
      border-radius: 4px;
      position: absolute;
      display: flex; align-items: center; justify-content: center;
    }
 
    .qr-corner-dot { width: 18px; height: 18px; background: var(--text); border-radius: 2px; }
 
    .qris-note {
      font-size: 0.78rem; color: var(--text-soft); margin-top: 10px;
    }
 
    .modal-actions { display: flex; flex-direction: column; gap: 12px; }
 
    .btn-wa {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #25d366, #128c7e);
      color: white;
      border: none; border-radius: 99px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem; font-weight: 800;
      cursor: pointer;
      box-shadow: 0 6px 20px rgba(37,211,102,0.3);
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex; align-items: center; justify-content: center; gap: 10px;
      text-decoration: none;
    }
 
    .btn-wa:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(37,211,102,0.4);
    }
 
    .btn-store {
      width: 100%;
      padding: 13px;
      background: white;
      color: var(--purple-dark);
      border: 2px solid var(--purple);
      border-radius: 99px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem; font-weight: 700;
      cursor: pointer;
      transition: all 0.25s;
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
 
    .btn-store:hover {
      background: var(--purple-soft);
      transform: translateY(-2px);
    }
 
    /* ─── MAP SECTION ─── */
    .map-wrapper {
      max-width: 860px;
      margin: 0 auto;
    }
 
    .map-card {
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      border: 2px solid var(--border);
      box-shadow: var(--shadow-lg);
    }
 
    .map-info-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 28px;
      gap: 16px;
      border-bottom: 1.5px solid var(--border);
      flex-wrap: wrap;
    }
 
    .map-info-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }
 
    .map-info-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--blue-dark), var(--purple));
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; color: white;
      box-shadow: 0 4px 14px rgba(99,102,241,0.28);
    }
 
    .map-store-name {
      font-family: 'Nunito', sans-serif;
      font-size: 1rem; font-weight: 800;
      color: var(--text);
      margin-bottom: 4px;
    }
 
    .map-store-addr {
      font-size: 0.85rem;
      color: var(--text-soft);
      display: flex; align-items: center; gap: 6px;
    }
 
    .map-store-addr i { color: var(--purple); font-size: 0.8rem; }
 
    .map-open-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 10px 20px;
      background: linear-gradient(135deg, var(--blue-dark), var(--purple));
      color: white;
      border-radius: 99px;
      text-decoration: none;
      font-family: 'Nunito', sans-serif;
      font-size: 0.88rem; font-weight: 700;
      box-shadow: 0 4px 14px rgba(99,102,241,0.28);
      transition: transform 0.25s, box-shadow 0.25s;
      white-space: nowrap;
    }
 
    .map-open-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(99,102,241,0.38);
    }
 
    .map-frame-wrap {
      position: relative;
      overflow: hidden;
    }
 
    .map-frame-wrap iframe {
      display: block;
      width: 100%;
      filter: saturate(0.85) hue-rotate(5deg);
      transition: filter 0.3s;
    }
 
    .map-frame-wrap:hover iframe { filter: saturate(1) hue-rotate(0deg); }
 
    .map-chips {
      display: flex;
      gap: 12px;
      padding: 16px 28px;
      border-top: 1.5px solid var(--border);
      flex-wrap: wrap;
    }
 
    .map-chip {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 99px;
      padding: 6px 14px;
      font-size: 0.82rem; font-weight: 600;
      color: var(--text-soft);
    }
 
    .map-chip i { color: var(--purple); }
 
    /* ─── FOOTER ─── */
    footer {
      background: var(--text);
      color: rgba(255,255,255,0.7);
      padding: 56px 5% 32px;
    }
 
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }
 
    .footer-brand .nav-logo {
      -webkit-text-fill-color: white;
      background: none;
      color: white;
      margin-bottom: 12px;
      display: flex;
    }
 
    .footer-brand p {
      font-size: 0.9rem; line-height: 1.7;
      max-width: 260px;
    }
 
    .footer-social {
      display: flex; gap: 12px; margin-top: 20px;
    }
 
    .social-btn {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: white;
      text-decoration: none;
      font-size: 0.9rem;
      transition: background 0.2s, transform 0.2s;
    }
 
    .social-btn:hover { background: var(--purple); transform: translateY(-3px); }
 
    .footer-col h4 {
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem; font-weight: 800;
      color: white;
      margin-bottom: 18px;
    }
 
    .footer-col ul { list-style: none; }
 
    .footer-col ul li {
      margin-bottom: 10px;
    }
 
    .footer-col ul li a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
      display: flex; align-items: center; gap: 8px;
    }
 
    .footer-col ul li a:hover { color: var(--purple); }
    .footer-col ul li a i { font-size: 0.8rem; }
 
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.85rem;
      flex-wrap: wrap; gap: 12px;
    }
 
    .footer-bottom a { color: var(--purple); text-decoration: none; }
 
    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
 
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
 
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
 
    /* ─── ANIMATIONS ─── */
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
 
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
 
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }
 
    @keyframes float-mascot {
      0%, 100% { transform: translateY(0) rotate(-2deg); }
      50% { transform: translateY(-14px) rotate(2deg); }
    }
 
    @keyframes spin-slow {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
 
    @keyframes blink {
      0%, 90%, 100% { transform: scaleY(1); }
      95% { transform: scaleY(0.05); }
    }
 
    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; text-align: center; }
      .hero-sub { margin: 0 auto 36px; }
      .hero-actions { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-visual { margin-top: 40px; }
      .float-chip { display: none; }
      .footer-grid { grid-template-columns: 1fr; }
    }
 
    @media (max-width: 600px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .voucher-grid { grid-template-columns: 1fr; }
      .modal-box { padding: 28px 20px; }
      .hero-stats { flex-direction: column; gap: 16px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 68px; left: 0; right: 0;
        background: white;
        padding: 24px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        gap: 20px; z-index: 99;
      }
    }
 
    /* Mascot SVG */
    .mascot-svg {
      animation: float-mascot 5s ease-in-out infinite;
      filter: drop-shadow(0 24px 40px rgba(99,102,241,0.25));
    }
 
    /* Stars sparkle */
    .sparkle {
      position: absolute;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--purple);
      animation: sparkle-anim 2.5s ease-in-out infinite;
    }
 
    @keyframes sparkle-anim {
      0%, 100% { opacity: 0; transform: scale(0); }
      50% { opacity: 1; transform: scale(1); }
    }