/* ============================================================
   Angkasa Link — Shared Stylesheet
   Dipakai oleh semua halaman (index, paket, why-angkasa,
   coverage, daftar, faq, about).
   ============================================================ */

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

  :root {
    --bg:       #0f1a1f;
    --bg2:      #152028;
    --bg3:      #1c2d36;
    --cyan:     #2a7a8a;
    --cyan-light: #3da0b5;
    --cyan-dim: #1e5a68;
    --orange:   #e8703a;
    --orange-light: #f4884e;
    --orange-dim: #b54e1e;
    --text:     #d4e8ed;
    --text-muted: #7fa8b4;
    --text-dim: #4a7080;
    --border:   rgba(42,122,138,0.2);
    --border-strong: rgba(42,122,138,0.45);
    --font-head: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --logo-url: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20148%20256%22%20fill=%22none%22%20aria-label=%22Angkasa%20Link%20Logo%22%3E%3Cg%20stroke=%22#ffffff%22%20fill=%22none%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%3E%3Cline%20x1=%2274%22%20y1=%228%22%20x2=%2274%22%20y2=%2262%22%20stroke-width=%2213%22/%3E%3Cpath%20d=%22M%2081%2014%20C%20110%2018,%20137%2042,%20137%2079%20C%20137%20116,%20110%20140,%2074%20140%20C%2056%20140,%2044%20132,%2040%20120%22%20stroke-width=%2213%22/%3E%3Ccircle%20cx=%2274%22%20cy=%2279%22%20r=%2218%22%20stroke-width=%226%22/%3E%3Ccircle%20cx=%2274%22%20cy=%2279%22%20r=%229%22%20fill=%22#e8703a%22%20stroke=%22none%22/%3E%3Cline%20x1=%2274%22%20y1=%22248%22%20x2=%2274%22%20y2=%22194%22%20stroke-width=%2213%22/%3E%3Cpath%20d=%22M%2067%20242%20C%2038%20238,%2011%20214,%2011%20177%20C%2011%20140,%2038%20116,%2074%20116%20C%2092%20116,%20104%20124,%20108%20136%22%20stroke-width=%2213%22/%3E%3Ccircle%20cx=%2274%22%20cy=%22177%22%20r=%2218%22%20stroke-width=%226%22/%3E%3Ccircle%20cx=%2274%22%20cy=%22177%22%20r=%229%22%20fill=%22#e8703a%22%20stroke=%22none%22/%3E%3C/g%3E%3C/svg%3E");
    --logo-mask-url: url("data:image/svg+xml,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20viewBox=%220%200%20148%20256%22%20fill=%22none%22%3E%3Cg%20stroke=%22#ffffff%22%20fill=%22none%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%3E%3Cline%20x1=%2274%22%20y1=%228%22%20x2=%2274%22%20y2=%2262%22%20stroke-width=%2213%22/%3E%3Cpath%20d=%22M%2081%2014%20C%20110%2018,%20137%2042,%20137%2079%20C%20137%20116,%20110%20140,%2074%20140%20C%2056%20140,%2044%20132,%2040%20120%22%20stroke-width=%2213%22/%3E%3Ccircle%20cx=%2274%22%20cy=%2279%22%20r=%2218%22%20stroke-width=%226%22/%3E%3Ccircle%20cx=%2274%22%20cy=%2279%22%20r=%229%22%20fill=%22#ffffff%22%20stroke=%22none%22/%3E%3Cline%20x1=%2274%22%20y1=%22248%22%20x2=%2274%22%20y2=%22194%22%20stroke-width=%2213%22/%3E%3Cpath%20d=%22M%2067%20242%20C%2038%20238,%2011%20214,%2011%20177%20C%2011%20140,%2038%20116,%2074%20116%20C%2092%20116,%20104%20124,%20108%20136%22%20stroke-width=%2213%22/%3E%3Ccircle%20cx=%2274%22%20cy=%22177%22%20r=%2218%22%20stroke-width=%226%22/%3E%3Ccircle%20cx=%2274%22%20cy=%22177%22%20r=%229%22%20fill=%22#ffffff%22%20stroke=%22none%22/%3E%3C/g%3E%3C/svg%3E");
  }

  html { scroll-behavior: smooth; }

  /* ── LAUNCH BANNER ── */
  body { --banner-height: 48px; }
  body.banner-hidden { --banner-height: 0px; }

  .launch-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--banner-height);
    background:
      linear-gradient(90deg,
        rgba(42,122,138,0.95) 0%,
        rgba(30,90,104,0.95) 50%,
        rgba(232,112,58,0.95) 100%
      );
    color: #fff;
    z-index: 101;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: transform .4s ease, height .4s ease;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  body.banner-hidden .launch-banner {
    transform: translateY(-100%);
    pointer-events: none;
  }

  /* Animated grid pattern overlay */
  .launch-banner::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 30px 100%;
    animation: bannerSlide 20s linear infinite;
    pointer-events: none;
  }
  @keyframes bannerSlide {
    from { background-position: 0 0; }
    to { background-position: 30px 0; }
  }

  .banner-content {
    display: flex; align-items: center; gap: 1.25rem;
    padding: 0 4vw;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
    flex-wrap: nowrap;
  }

  .banner-icon {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    animation: rocketPulse 2.5s ease-in-out infinite;
  }
  @keyframes rocketPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); box-shadow: 0 0 12px rgba(255,255,255,0.4); }
  }

  .banner-text {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
  }
  .banner-text strong {
    background: rgba(255,255,255,0.18);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 2px;
    font-weight: 700;
  }

  .banner-countdown {
    display: flex; gap: .4rem;
    flex-shrink: 0;
    font-family: var(--font-head);
  }
  .countdown-unit {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 3px 8px;
    min-width: 42px;
    text-align: center;
    backdrop-filter: blur(4px);
  }
  .countdown-num {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    font-variant-numeric: tabular-nums;
  }
  .countdown-label {
    display: block;
    font-size: 0.55rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  .banner-cta {
    flex-shrink: 0;
    background: #fff;
    color: var(--bg);
    padding: 6px 14px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }
  .banner-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }

  .banner-close {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; line-height: 1;
    padding: 0;
    transition: background .2s;
    font-family: var(--font-body);
  }
  .banner-close:hover { background: rgba(0,0,0,0.4); }

  /* When banner is shown — push nav down */
  nav { top: var(--banner-height); transition: top .4s ease; }
  /* Hero padding adjusts too */
  .hero { padding-top: calc(120px + var(--banner-height) - 48px); transition: padding-top .4s ease; }

  @media (max-width: 768px) {
    body { --banner-height: 56px; }
    .banner-content { gap: .6rem; padding: 0 12px; }
    .banner-text { font-size: 0.72rem; }
    .banner-icon { width: 22px; height: 22px; font-size: 12px; }
    .countdown-unit { min-width: 32px; padding: 2px 4px; }
    .countdown-num { font-size: 0.75rem; }
    .countdown-label { font-size: 0.48rem; }
    .banner-cta { display: none; }
    .banner-close { width: 22px; height: 22px; font-size: 12px; }
  }
  @media (max-width: 480px) {
    .banner-text { display: none; }
    .banner-content { justify-content: space-between; }
  }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: .4;
  }

  /* ── GRID BG ── */
  .grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 100%);
    pointer-events: none;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw;
    height: 80px;
    background: rgba(15,26,31,0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-head);
    font-weight: 800; font-size: 1.25rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
  }
  .nav-logo .logo-icon {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform .3s ease;
    position: relative;
  }
  .nav-logo .logo-icon .logo-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity .35s ease;
  }
  .nav-logo .logo-icon .logo-img-default { opacity: 1; }
  .nav-logo .logo-icon .logo-img-hover { opacity: 0; }
  .nav-logo:hover .logo-icon { transform: scale(1.06); }
  .nav-logo:hover .logo-icon .logo-img-default { opacity: 0; }
  .nav-logo:hover .logo-icon .logo-img-hover { opacity: 1; }

  /* Footer logo slightly bigger for prominence */
  .footer-brand .nav-logo .logo-icon { width: 56px; height: 56px; }
  .nav-logo span { color: var(--orange); }

  /* Pulse dots overlay - positioned exactly on logo's dot cores
     Logo aspect ratio: 148x256 (W:H ≈ 0.578:1)
     Top dot: 49.7% horizontal, 30.7% vertical from logo top
     Bottom dot: 49.7% horizontal, 68.9% vertical from logo top
     Dot diameter: ~6.6% of logo height */
  .logo-pulse {
    position: absolute;
    width: 9%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--orange);
    pointer-events: none;
    left: 49.7%;
    top: 30.7%;
    transform: translate(-50%, -50%);
    animation: logoPulseBlink 1.6s ease-in-out infinite;
    z-index: 2;
  }
  .logo-pulse-bottom {
    top: 68.9%;
    animation-delay: 0.8s;
  }

  /* Expanding glow ring */
  .logo-pulse::before {
    content: '';
    position: absolute;
    inset: -50%;
    border-radius: 50%;
    border: 1px solid var(--orange);
    animation: logoPulseRing 1.6s ease-out infinite;
    pointer-events: none;
  }
  .logo-pulse-bottom::before {
    animation-delay: 0.8s;
  }

  @keyframes logoPulseBlink {
    0%, 100% {
      box-shadow:
        0 0 3px var(--orange),
        0 0 6px rgba(232,112,58,0.5);
      filter: brightness(1);
    }
    50% {
      box-shadow:
        0 0 8px var(--orange),
        0 0 14px rgba(232,112,58,0.85),
        0 0 22px rgba(232,112,58,0.4);
      filter: brightness(1.4);
    }
  }

  @keyframes logoPulseRing {
    0% {
      transform: scale(0.6);
      opacity: 0.9;
      border-width: 1.5px;
    }
    100% {
      transform: scale(2.4);
      opacity: 0;
      border-width: 0.5px;
    }
  }

  /* Pause animation when user prefers reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .logo-pulse,
    .logo-pulse::before {
      animation: none;
    }
  }
  .nav-logo span { color: var(--orange); }

  .nav-links {
    display: flex; align-items: center;
    gap: clamp(0.85rem, 1.6vw, 1.75rem);
    list-style: none;
    margin: 0; padding: 0;
  }
  .nav-links a {
    position: relative;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 8px 4px;
    transition: color .25s ease;
    white-space: nowrap;
  }
  /* Underline indikator (hover & active) */
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 4px; right: 4px; bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--orange), var(--cyan-light));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .3s ease;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links a.active {
    color: #fff;
  }
  .nav-links a.active::after {
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(232,112,58,0.45);
  }

  /* ── HAMBURGER BUTTON (mobile/tablet) ── */
  .nav-toggle {
    display: none; /* default sembunyi di desktop */
    position: relative;
    width: 42px; height: 42px;
    background: rgba(42,122,138,0.10);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
  }
  .nav-toggle:hover { background: rgba(42,122,138,0.20); border-color: var(--cyan); }
  .nav-toggle .bar {
    position: absolute;
    left: 50%;
    width: 20px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transform-origin: center;
    transition: transform .3s ease, top .3s ease, opacity .25s ease;
  }
  .nav-toggle .bar:nth-child(1) { top: 13px; transform: translateX(-50%); }
  .nav-toggle .bar:nth-child(2) { top: 20px; transform: translateX(-50%); }
  .nav-toggle .bar:nth-child(3) { top: 27px; transform: translateX(-50%); }
  /* State open → jadi tanda silang */
  .nav-toggle.open .bar:nth-child(1) { top: 20px; transform: translateX(-50%) rotate(45deg); background: var(--orange); }
  .nav-toggle.open .bar:nth-child(2) { opacity: 0; }
  .nav-toggle.open .bar:nth-child(3) { top: 20px; transform: translateX(-50%) rotate(-45deg); background: var(--orange); }

  /* ── MOBILE / TABLET LAYOUT (≤900px) ── */
  @media (max-width: 900px) {
    .nav-toggle { display: flex; }

    /* Menu jadi panel dropdown muncul dari atas */
    .nav-links {
      position: fixed;
      top: calc(80px + var(--banner-height));
      left: 0; right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 12px 5vw 24px;
      background: rgba(15,26,31,0.97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 12px 40px rgba(0,0,0,0.4);
      transform: translateY(-12px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .25s ease, transform .3s ease, visibility .3s;
      max-height: calc(100vh - 80px - var(--banner-height));
      overflow-y: auto;
    }
    .nav-links.open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .nav-links li {
      border-bottom: 1px solid var(--border);
    }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a {
      display: block;
      padding: 14px 6px;
      font-size: 1rem;
      color: var(--text);
    }
    .nav-links a::after {
      left: 6px; right: auto; bottom: 8px;
      width: 0; height: 2px;
      transition: width .25s ease;
      transform: none;
    }
    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 24px;
      transform: none;
    }
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 5vw 80px;
    overflow: hidden;
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
  }
  .hero-orb-1 { width: 500px; height: 500px; background: rgba(42,122,138,0.25); top: -100px; right: -50px; }
  .hero-orb-2 { width: 350px; height: 350px; background: rgba(232,112,58,0.18); bottom: 0; left: 30%; }
  .hero-orb-3 { width: 250px; height: 250px; background: rgba(42,122,138,0.15); bottom: 50px; left: -80px; }

  .hero-content { position: relative; z-index: 1; max-width: 700px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(42,122,138,0.12);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.8rem;
    color: var(--cyan-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeUp .6s ease both;
  }
  .hero-badge .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 10px var(--orange);
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.85)} }
  @keyframes fadeUp {
    from { opacity:0; transform: translateY(24px); }
    to   { opacity:1; transform: translateY(0); }
  }

  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.5rem;
    animation: fadeUp .7s .1s ease both;
  }
  .hero h1 .accent { color: var(--orange); }
  .hero h1 .accent-cyan { color: var(--cyan-light); }

  .hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 520px;
    margin-bottom: 2.5rem;
    animation: fadeUp .7s .2s ease both;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp .7s .3s ease both;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dim));
    color: #fff; padding: 14px 28px;
    border-radius: 8px; font-weight: 500;
    font-size: 1rem; text-decoration: none;
    border: none; cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(232,112,58,0.35);
    font-family: var(--font-body);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,112,58,0.5); }

  .btn-ghost {
    color: var(--cyan-light);
    padding: 14px 28px;
    border-radius: 8px; font-weight: 400;
    font-size: 1rem; text-decoration: none;
    border: 1px solid var(--border-strong);
    transition: background .2s, border-color .2s;
    font-family: var(--font-body);
  }
  .btn-ghost:hover { background: rgba(42,122,138,0.1); border-color: var(--cyan); }

  /* Hero Stats */
  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3.5rem;
    animation: fadeUp .7s .4s ease both;
  }
  .stat-item { display: flex; flex-direction: column; }
  .stat-num {
    font-family: var(--font-head);
    font-size: 2rem; font-weight: 800;
    color: #fff; line-height: 1;
  }
  .stat-num span { color: var(--orange); }
  .stat-label { font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }

  /* ── SPEED VISUAL ── */
  .hero-visual {
    position: absolute; right: 5vw; top: 50%; transform: translateY(-50%);
    width: 340px; height: 340px;
    animation: fadeUp .8s .4s ease both;
  }
  .speed-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid var(--border-strong);
    animation: spin linear infinite;
  }
  .speed-ring:nth-child(1) { inset: 0; animation-duration: 20s; }
  .speed-ring:nth-child(2) { inset: 30px; animation-duration: 15s; animation-direction: reverse; border-color: rgba(232,112,58,.2); }
  .speed-ring:nth-child(3) { inset: 60px; animation-duration: 25s; }

  @keyframes spin { to { transform: rotate(360deg); } }

  .speed-ring::before {
    content: '';
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cyan-light);
    box-shadow: 0 0 12px var(--cyan-light);
  }
  .speed-ring:nth-child(2)::before { background: var(--orange); box-shadow: 0 0 12px var(--orange); top: auto; bottom: 0; }

  .speed-center {
    position: absolute; inset: 90px;
    background: var(--bg2);
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
  }
  .speed-num {
    font-family: var(--font-head);
    font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1;
  }
  .speed-unit { font-size: 0.75rem; color: var(--cyan-light); text-transform: uppercase; letter-spacing: .08em; }

  /* ── HERO WATERMARK LOGO with RUNNING LIGHT (centered, low opacity, crisp) ── */
  .hero-watermark {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /* Aspect ratio of source logo is roughly 148:256 (W:H) */
    width: clamp(320px, 36vw, 560px);
    aspect-ratio: 148 / 256;
    pointer-events: none;
    user-select: none;
    z-index: 0;            /* di belakang hero-content tetapi di atas grid-bg */
    opacity: 1;            /* Final opacity diatur oleh layer dalamnya */
    overflow: visible;
    will-change: transform;
    isolation: isolate;
  }

  /* Layer 1: Logo dasar (subtle watermark) — opacity diturunkan supaya tidak ganggu konten */
  .hero-watermark-logo {
    position: absolute;
    inset: 0;
    background-image: var(--logo-url);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.08;          /* SVG vector tidak pecah, bisa naik sedikit */
    /* Image rendering hints untuk kualitas terbaik di high-DPI */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: drop-shadow(0 0 28px rgba(42,122,138,0.18));
  }

  /* Layer 2: Glow soft di belakang logo (membuat watermark "hidup") */
  .hero-watermark-glow {
    position: absolute;
    inset: 8%;
    background:
      radial-gradient(60% 50% at 50% 35%, rgba(232,112,58,0.18), transparent 70%),
      radial-gradient(50% 45% at 50% 70%, rgba(42,122,138,0.20), transparent 75%);
    filter: blur(18px);
    animation: watermarkGlowPulse 4.5s ease-in-out infinite;
  }
  @keyframes watermarkGlowPulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%      { opacity: 0.95; transform: scale(1.04); }
  }

  /* Layer 3: RUNNING LIGHT — strip cahaya bergerak yang di-mask oleh siluet logo */
  .hero-watermark-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      115deg,
      transparent 0%,
      transparent 38%,
      rgba(61,160,181,0.55)  46%,
      rgba(255,255,255,0.95) 50%,
      rgba(232,112,58,0.55)  54%,
      transparent 62%,
      transparent 100%
    );
    background-size: 250% 250%;
    background-repeat: no-repeat;
    background-position: 200% 50%;
    -webkit-mask-image: var(--logo-mask-url);
            mask-image: var(--logo-mask-url);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
    mix-blend-mode: screen;
    animation: watermarkShine 5s linear infinite;
    opacity: 0.45;  /* dari 0.85 - lebih halus */
  }
  @keyframes watermarkShine {
    0%   { background-position: 200% 50%; }
    60%  { background-position: -100% 50%; }
    100% { background-position: -100% 50%; } /* hold + ada jeda sebelum mengulang */
  }

  /* Layer 4: Edge highlight tipis — memberi kontur biar logo tetap jelas walau opacity rendah */
  .hero-watermark-edge {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(232,112,58,0.35), rgba(42,122,138,0.35));
    -webkit-mask-image: var(--logo-mask-url);
            mask-image: var(--logo-mask-url);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-size: contain;
            mask-size: contain;
    opacity: 0.04;
    mix-blend-mode: screen;
  }

  /* Disable animasi untuk preferensi reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    .hero-watermark-shine,
    .hero-watermark-glow {
      animation: none;
    }
  }

  /* Tablet — kecilkan watermark */
  @media (max-width: 1024px) {
    .hero-watermark {
      width: clamp(220px, 38vw, 360px);
      right: -6vw;
      opacity: 0.85;
    }
  }
  /* Mobile — tetap tampil di tengah, tapi lebih kecil dan opacity diturunkan */
  @media (max-width: 768px) {
    .hero-watermark {
      width: clamp(240px, 65vw, 320px);
      opacity: 0.7;
    }
  }

  /* Pastikan konten hero ada di atas watermark */
  .hero-content { position: relative; z-index: 2; }
  .hero-visual  { z-index: 1; }

  /* ── SECTION ── */
  section { padding: 100px 5vw; }

  .section-label {
    display: inline-block;
    font-size: 0.75rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--orange);
    margin-bottom: .75rem;
  }

  h2 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800; color: #fff;
    line-height: 1.1; letter-spacing: -0.02em;
    margin-bottom: 1rem;
  }
  h2 .hl { color: var(--cyan-light); }

  /* ── FEATURES ── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px;
    margin-top: 4rem;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }

  .feature-card {
    background: var(--bg2);
    padding: 2.5rem 2rem;
    transition: background .25s;
    position: relative; overflow: hidden;
  }
  .feature-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(42,122,138,0.05), transparent);
    opacity: 0; transition: opacity .3s;
  }
  .feature-card:hover { background: var(--bg3); }
  .feature-card:hover::before { opacity: 1; }

  .feature-icon {
    width: 48px; height: 48px;
    background: rgba(42,122,138,0.15);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 1.25rem;
  }
  .feature-card:nth-child(even) .feature-icon { background: rgba(232,112,58,.12); border-color: rgba(232,112,58,.3); }

  .feature-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem; font-weight: 700; color: #fff;
    margin-bottom: .5rem;
  }
  .feature-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

  /* ── PACKAGES ── */
  .packages { background: var(--bg2); position: relative; }
  .packages .grid-bg { mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black, transparent); }

  .pkg-intro { max-width: 520px; }
  .pkg-intro p { color: var(--text-muted); margin-top: .75rem; }

  .pkg-highlights {
    display: flex; flex-wrap: wrap; gap: .6rem;
    margin-top: 1.5rem;
  }
  .pkg-highlight {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(42,122,138,.12);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: .8rem;
    color: var(--cyan-light);
    font-weight: 500;
  }
  .pkg-highlight .check {
    color: var(--orange);
    font-weight: 700;
  }

  .pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .pkg-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    background: var(--bg);
    position: relative;
    transition: transform .25s, box-shadow .25s, border-color .25s;
  }
  .pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    border-color: var(--border-strong);
  }
  .pkg-card.popular {
    border-color: var(--orange);
    background: linear-gradient(160deg, rgba(232,112,58,.06), var(--bg));
    box-shadow: 0 0 40px rgba(232,112,58,.12);
  }

  .pkg-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--orange);
    color: #fff; font-size: .7rem; font-weight: 700;
    padding: 4px 12px; border-radius: 100px;
    text-transform: uppercase; letter-spacing: .06em;
  }

  .pkg-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text-muted); letter-spacing: .04em; margin-bottom: .5rem; }
  .pkg-speed { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: #fff; line-height: 1; }
  .pkg-speed span { font-size: 1rem; color: var(--text-dim); font-weight: 400; }
  .pkg-price {
    font-size: 1.5rem; font-weight: 700; color: var(--orange);
    font-family: var(--font-head);
    margin: 1.25rem 0;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
  }
  .pkg-price sub { font-size: .875rem; color: var(--text-muted); font-weight: 400; }

  .pkg-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
  .pkg-features li {
    font-size: .875rem; color: var(--text-muted);
    display: flex; align-items: center; gap: 8px;
  }
  .pkg-features li::before {
    content: '✓';
    color: var(--cyan-light); font-size: .75rem; font-weight: 700;
    background: rgba(42,122,138,.15);
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .pkg-btn {
    display: block; text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500; font-size: .9rem;
    text-decoration: none;
    transition: all .2s;
    font-family: var(--font-body);
  }
  .pkg-btn-ghost { border: 1px solid var(--border-strong); color: var(--cyan-light); }
  .pkg-btn-ghost:hover { background: rgba(42,122,138,.12); }
  .pkg-btn-solid { background: var(--orange); color: #fff; box-shadow: 0 4px 20px rgba(232,112,58,.35); }
  .pkg-btn-solid:hover { background: var(--orange-light); transform: translateY(-1px); }

  /* ── WHY ── */
  .why-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    align-items: center; margin-top: 1rem;
  }

  .why-visual {
    position: relative; height: 400px;
  }
  .map-card {
    position: absolute;
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 12px; padding: 1rem 1.25rem;
    transition: transform .3s;
  }
  .map-card:hover { transform: scale(1.03); }
  .map-card:nth-child(1) { top: 0; left: 0; right: 0; }
  .map-card:nth-child(2) { bottom: 100px; left: 0; width: 45%; }
  .map-card:nth-child(3) { bottom: 0; right: 0; width: 52%; }

  .map-label { font-size: .7rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; }
  .map-value { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: #fff; }
  .map-bar { height: 4px; background: var(--bg3); border-radius: 2px; margin-top: .75rem; overflow: hidden; }
  .map-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--cyan), var(--orange)); }

  .why-points { display: flex; flex-direction: column; gap: 1.75rem; }
  .why-point { display: flex; gap: 1rem; }
  .why-point-num {
    font-family: var(--font-head); font-size: .85rem; font-weight: 800;
    color: var(--orange); flex-shrink: 0;
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(232,112,58,.35);
    display: flex; align-items: center; justify-content: center;
    margin-top: 3px;
  }
  .why-point-text h4 {
    font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
    color: #fff; margin-bottom: .3rem;
  }
  .why-point-text p { font-size: .9rem; color: var(--text-muted); }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--bg2); }

  .testi-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem; margin-top: 3rem;
  }

  .testi-card {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 14px; padding: 1.75rem;
    transition: border-color .25s;
  }
  .testi-card:hover { border-color: var(--border-strong); }

  .testi-stars { color: var(--orange); font-size: .875rem; margin-bottom: .75rem; }
  .testi-text { font-size: .9rem; color: var(--text-muted); font-style: italic; line-height: 1.7; margin-bottom: 1.25rem; }
  .testi-author { display: flex; align-items: center; gap: .75rem; }
  .testi-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .8rem; color: #fff;
  }
  .testi-name { font-weight: 500; font-size: .875rem; color: var(--text); }
  .testi-loc { font-size: .775rem; color: var(--text-dim); }

  /* ── CTA SECTION ── */
  .cta-section {
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(42,122,138,.15), transparent);
    pointer-events: none;
  }
  .cta-section h2 { max-width: 600px; margin: 0 auto 1rem; }
  .cta-section p { color: var(--text-muted); margin-bottom: 2.5rem; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ── WAITLIST FORM ── */
  .waitlist-section {
    position: relative;
    overflow: hidden;
    padding: 100px 5vw;
  }
  .waitlist-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 60% at 20% 30%, rgba(232,112,58,.10), transparent 60%),
      radial-gradient(ellipse 60% 70% at 85% 80%, rgba(42,122,138,.12), transparent 60%);
    pointer-events: none;
  }

  .waitlist-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
    position: relative;
  }

  /* Left side — info */
  .waitlist-info h2 { margin-bottom: 1.25rem; }
  .waitlist-info > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
  }

  .waitlist-counter {
    background: var(--bg2);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
  }
  .waitlist-counter::before {
    content: '';
    position: absolute; top: -50%; right: -20%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(232,112,58,.15), transparent 70%);
    pointer-events: none;
  }
  .waitlist-counter-num {
    font-family: var(--font-head);
    font-size: 2.8rem; font-weight: 800;
    color: #fff;
    line-height: 1;
    background: linear-gradient(135deg, #fff, var(--cyan-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .waitlist-counter-num .plus { color: var(--orange); -webkit-text-fill-color: var(--orange); }
  .waitlist-counter-label {
    font-size: .85rem; color: var(--text-muted);
    margin-top: .35rem;
  }
  .waitlist-counter-bar {
    height: 6px;
    background: var(--bg3);
    border-radius: 3px;
    margin-top: 1rem;
    overflow: hidden;
  }
  .waitlist-counter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--orange));
    border-radius: 3px;
    width: 42%;
    transition: width 1.5s ease;
  }
  .waitlist-counter-target {
    font-size: .75rem; color: var(--text-dim);
    margin-top: .5rem;
    display: flex; justify-content: space-between;
  }

  .waitlist-benefits {
    display: flex; flex-direction: column;
    gap: 1rem;
  }
  .waitlist-benefit {
    display: flex; gap: .9rem; align-items: start;
  }
  .waitlist-benefit-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(232,112,58,.12);
    border: 1px solid rgba(232,112,58,.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-weight: 700;
    font-size: .85rem;
  }
  .waitlist-benefit-text {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-top: 4px;
  }
  .waitlist-benefit-text strong { color: var(--text); font-weight: 600; }

  /* Right side — form */
  .waitlist-form-wrapper {
    background: var(--bg2);
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
  }
  .waitlist-form-wrapper::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--orange));
  }

  .waitlist-form-title {
    font-family: var(--font-head);
    font-size: 1.35rem; font-weight: 700;
    color: #fff;
    margin-bottom: .35rem;
  }
  .waitlist-form-subtitle {
    color: var(--text-muted);
    font-size: .875rem;
    margin-bottom: 1.75rem;
  }

  .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .85rem;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-label {
    display: block;
    font-size: .8rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: .4rem;
    letter-spacing: .01em;
  }
  .form-label .req { color: var(--orange); margin-left: 2px; }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: .9rem;
    outline: none;
    transition: border-color .2s, background .2s;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--cyan);
    background: var(--bg3);
  }
  .form-input.error, .form-select.error {
    border-color: var(--orange);
  }
  .form-input::placeholder, .form-textarea::placeholder {
    color: var(--text-dim);
  }
  .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237fa8b4' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
  }
  .form-select option {
    background: var(--bg);
    color: var(--text);
  }
  .form-textarea {
    resize: vertical;
    min-height: 80px;
    font-family: var(--font-body);
  }

  .form-radio-group {
    display: flex; gap: .6rem;
    margin-top: .25rem;
  }
  .form-radio-label {
    flex: 1;
    cursor: pointer;
    position: relative;
  }
  .form-radio-label input[type="radio"] {
    position: absolute; opacity: 0; pointer-events: none;
  }
  .form-radio-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 11px 14px;
    background: var(--bg);
    text-align: center;
    transition: all .2s;
    font-size: .875rem;
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center; gap: .5rem;
  }
  .form-radio-label:hover .form-radio-card {
    border-color: var(--border-strong);
    color: var(--text);
  }
  .form-radio-label input:checked + .form-radio-card {
    border-color: var(--cyan);
    background: rgba(42,122,138,.1);
    color: var(--cyan-light);
    font-weight: 500;
  }

  .form-error-msg {
    font-size: .75rem;
    color: var(--orange-light);
    margin-top: .3rem;
    display: none;
  }
  .form-error-msg.show { display: block; }

  .form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dim));
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    margin-top: .5rem;
    box-shadow: 0 4px 20px rgba(232,112,58,.3);
    transition: transform .2s, box-shadow .2s;
    font-family: var(--font-body);
    display: flex; align-items: center; justify-content: center; gap: .5rem;
  }
  .form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232,112,58,.45);
  }
  .form-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
  }
  .form-submit .spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
  }
  .form-submit.loading .spinner { display: inline-block; }
  .form-submit.loading .submit-text { opacity: .7; }

  .form-privacy {
    font-size: .75rem;
    color: var(--text-dim);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
  }
  .form-privacy a {
    color: var(--cyan-light);
    text-decoration: none;
  }

  /* Success state */
  .waitlist-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
  }
  .waitlist-success.show { display: block; animation: fadeUp .5s ease both; }
  .waitlist-success-icon {
    width: 72px; height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 0 8px rgba(42,122,138,.15);
  }
  .waitlist-success h3 {
    font-family: var(--font-head);
    font-size: 1.4rem; font-weight: 700;
    color: #fff;
    margin-bottom: .75rem;
  }
  .waitlist-success p {
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .waitlist-success .queue-num {
    display: inline-block;
    background: rgba(232,112,58,.12);
    border: 1px solid rgba(232,112,58,.3);
    border-radius: 100px;
    padding: 6px 16px;
    color: var(--orange-light);
    font-weight: 600;
    font-size: .9rem;
    margin: .25rem 0 1.25rem;
  }
  .waitlist-success .reset-btn {
    background: none;
    border: 1px solid var(--border-strong);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: .825rem;
    font-family: var(--font-body);
    transition: color .2s, border-color .2s;
  }
  .waitlist-success .reset-btn:hover {
    color: var(--text);
    border-color: var(--cyan);
  }

  @media (max-width: 900px) {
    .waitlist-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .waitlist-form-wrapper { padding: 1.75rem 1.5rem; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .form-radio-group { flex-direction: column; }
  }

  /* ── SCROLL POPUP BANNER (waitlist trigger) ── */
  .scroll-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 340px;
    max-width: calc(100vw - 32px);
    background: linear-gradient(160deg, var(--bg2) 0%, var(--bg3) 100%);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    box-shadow:
      0 20px 60px rgba(0,0,0,0.5),
      0 0 0 1px rgba(232,112,58,0.15),
      0 0 30px rgba(232,112,58,0.1);
    transform: translateY(140%) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform .5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .4s ease;
    overflow: hidden;
  }
  .scroll-popup.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  /* Decorative gradient accent */
  .scroll-popup::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--orange));
  }
  .scroll-popup::after {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(232,112,58,0.12), transparent 70%);
    pointer-events: none;
  }

  .popup-close {
    position: absolute;
    top: 10px; right: 10px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; line-height: 1;
    padding: 0;
    transition: background .2s, color .2s, transform .2s;
    font-family: var(--font-body);
    z-index: 2;
  }
  .popup-close:hover {
    background: rgba(232,112,58,0.15);
    color: var(--orange-light);
    transform: rotate(90deg);
  }

  .popup-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
  }
  .popup-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(232,112,58,0.2), rgba(232,112,58,0.05));
    border: 1px solid rgba(232,112,58,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    animation: popupIconBounce 2.5s ease-in-out infinite;
  }
  @keyframes popupIconBounce {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-3px) rotate(-8deg); }
  }
  .popup-badge {
    display: inline-block;
    background: rgba(232,112,58,0.15);
    color: var(--orange-light);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 8px;
    border-radius: 100px;
    border: 1px solid rgba(232,112,58,0.25);
  }

  .popup-title {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    padding-right: 24px;
  }
  .popup-title .hl-orange { color: var(--orange-light); }

  .popup-text {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }

  .popup-countdown {
    display: flex; gap: 6px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }
  .popup-cd-unit {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 4px;
    text-align: center;
  }
  .popup-cd-num {
    display: block;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
  }
  .popup-cd-label {
    display: block;
    font-size: 0.55rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
  }

  .popup-cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-dim));
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 16px rgba(232,112,58,0.3);
    transition: transform .2s, box-shadow .2s;
    font-family: var(--font-body);
    position: relative;
    z-index: 1;
  }
  .popup-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(232,112,58,0.45);
  }

  .popup-meta {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 0.6rem;
    position: relative;
    z-index: 1;
  }
  .popup-meta strong { color: var(--cyan-light); font-weight: 600; }

  @media (max-width: 480px) {
    .scroll-popup {
      bottom: 12px;
      right: 12px;
      left: 12px;
      width: auto;
      padding: 1rem;
    }
    .popup-title { font-size: 0.95rem; }
    .popup-text { font-size: 0.78rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    .scroll-popup { transition: opacity .3s ease; }
    .popup-icon { animation: none; }
  }

  /* ── COVERAGE AREA ── */
  .coverage { background: var(--bg2); position: relative; }
  .coverage .grid-bg { mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black, transparent); }

  .coverage-header {
    display: flex; justify-content: space-between; align-items: end;
    flex-wrap: wrap; gap: 2rem;
    margin-bottom: 3rem;
  }
  .coverage-header .header-text { max-width: 560px; }
  .coverage-header p { color: var(--text-muted); margin-top: .75rem; }

  .coverage-search {
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    padding: 1.25rem;
    min-width: 320px;
    flex: 1; max-width: 420px;
  }
  .coverage-search-label {
    font-size: .75rem; color: var(--orange);
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: .75rem; font-weight: 500;
  }
  .coverage-search-form { display: flex; gap: .5rem; }
  .coverage-search input {
    flex: 1;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
  }
  .coverage-search input:focus { border-color: var(--cyan); }
  .coverage-search input::placeholder { color: var(--text-dim); }
  .coverage-search button {
    background: var(--orange);
    color: #fff; border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500; font-size: .875rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .2s, transform .15s;
    white-space: nowrap;
  }
  .coverage-search button:hover { background: var(--orange-light); transform: translateY(-1px); }
  .coverage-result {
    margin-top: .75rem;
    font-size: .85rem;
    padding: .6rem .8rem;
    border-radius: 6px;
    display: none;
  }
  .coverage-result.show { display: block; }
  .coverage-result.success { background: rgba(42,122,138,.15); color: var(--cyan-light); border: 1px solid var(--border-strong); }
  .coverage-result.warn { background: rgba(232,112,58,.1); color: var(--orange-light); border: 1px solid rgba(232,112,58,.3); }

  .coverage-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
  .area-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: border-color .25s, transform .25s;
    position: relative;
  }
  .area-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
  .area-card .area-name {
    font-family: var(--font-head);
    font-size: 1.05rem; font-weight: 700; color: #fff;
    margin-bottom: .35rem;
    display: flex; align-items: center; gap: .5rem;
  }
  .area-card .area-status {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--cyan-light);
    box-shadow: 0 0 10px var(--cyan-light);
  }
  .area-card .area-status.expanding { background: var(--orange); box-shadow: 0 0 10px var(--orange); }
  .area-card .area-status.planned { background: var(--text-dim); box-shadow: 0 0 8px rgba(127,168,180,0.4); }
  .area-card .area-desc { font-size: .8rem; color: var(--text-muted); }
  .area-card .area-tag {
    position: absolute; top: 1rem; right: 1rem;
    font-size: .65rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .05em;
    padding: 3px 8px; border-radius: 100px;
  }
  .area-tag.live { background: rgba(42,122,138,.18); color: var(--cyan-light); }
  .area-tag.soon { background: rgba(232,112,58,.15); color: var(--orange-light); }
  .area-tag.plan { background: rgba(127,168,180,.12); color: var(--text-muted); border: 1px solid rgba(127,168,180,.2); }

  /* ── FAQ ── */
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 3rem;
  }
  .faq-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .25s;
  }
  .faq-item:hover { border-color: var(--border-strong); }
  .faq-item.open { border-color: var(--cyan); }
  .faq-question {
    width: 100%;
    background: none; border: none;
    padding: 1.25rem 1.5rem;
    color: var(--text);
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    transition: color .2s;
  }
  .faq-question:hover { color: var(--cyan-light); }
  .faq-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--cyan-light);
    transition: transform .3s, background .2s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--cyan); color: #fff; border-color: var(--cyan); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── OFFICE / CONTACT INFO ── */
  .office-section { background: var(--bg2); position: relative; overflow: hidden; }
  .office-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(42,122,138,.08), transparent);
    pointer-events: none;
  }
  .office-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
    position: relative;
  }
  .office-info-list {
    display: flex; flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
  }
  .office-info-item {
    display: flex; gap: 1rem;
    padding: 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color .25s, transform .25s;
  }
  .office-info-item:hover { border-color: var(--border-strong); transform: translateX(4px); }
  .office-info-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(42,122,138,.15);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .office-info-item:nth-child(2) .office-info-icon { background: rgba(232,112,58,.12); border-color: rgba(232,112,58,.3); }
  .office-info-content h4 {
    font-family: var(--font-head);
    font-size: .95rem; font-weight: 700;
    color: #fff; margin-bottom: .25rem;
  }
  .office-info-content p, .office-info-content a {
    font-size: .875rem;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.6;
    transition: color .2s;
  }
  .office-info-content a:hover { color: var(--cyan-light); }

  /* Map mockup */
  .office-map {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex; flex-direction: column;
  }
  .office-map::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: .5;
  }
  .map-header {
    position: relative; z-index: 1;
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1rem;
  }
  .map-title {
    font-size: .8rem; color: var(--text-dim);
    text-transform: uppercase; letter-spacing: .08em;
  }
  .map-pin-label {
    font-size: .75rem; color: var(--orange);
    background: rgba(232,112,58,.1);
    padding: 3px 10px; border-radius: 100px;
    border: 1px solid rgba(232,112,58,.3);
  }
  .map-area {
    flex: 1; position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
  }
  .map-pin {
    position: relative;
    width: 24px; height: 24px;
  }
  .map-pin::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(232,112,58,.25), 0 0 20px var(--orange);
    animation: pulse 2s ease-in-out infinite;
  }
  .map-pin::after {
    content: '';
    position: absolute; inset: -20px;
    border: 1px solid rgba(232,112,58,.3);
    border-radius: 50%;
    animation: ringPulse 2.5s ease-out infinite;
  }
  @keyframes ringPulse {
    0% { transform: scale(.4); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
  }
  .map-coords {
    position: absolute; bottom: 1rem; left: 1.5rem;
    font-family: var(--font-head);
    font-size: .7rem; color: var(--text-dim);
    z-index: 1;
  }

  @media (max-width: 900px) {
    .faq-grid { grid-template-columns: 1fr; }
    .office-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .coverage-header { flex-direction: column; align-items: stretch; }
    .coverage-search { max-width: 100%; }
  }

  /* ── FOOTER ── */
  footer {
    background: #0a1318;
    border-top: 1px solid var(--border);
    padding: 60px 5vw 30px;
  }

  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
  }

  .footer-brand .nav-logo { margin-bottom: 1rem; }
  .footer-brand p { font-size: .875rem; color: var(--text-dim); max-width: 280px; line-height: 1.75; }
  .footer-brand .socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 8px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; text-decoration: none; color: var(--text-muted);
    transition: border-color .2s, color .2s;
  }
  .social-btn:hover { border-color: var(--cyan); color: var(--cyan-light); }

  .footer-col h5 {
    font-family: var(--font-head); font-weight: 700;
    font-size: .85rem; color: var(--text);
    margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .06em;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
  .footer-col ul a { font-size: .875rem; color: var(--text-dim); text-decoration: none; transition: color .2s; }
  .footer-col ul a:hover { color: var(--text); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .8rem; color: var(--text-dim);
  }
  .footer-bottom span { color: var(--orange); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-visual { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .why-visual { height: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    /* .nav-links handled by hamburger drawer di breakpoint ≤900px */
  }
  @media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.5rem; }
    .pkg-grid { grid-template-columns: 1fr; }
  }


  /* ╔══════════════════════════════════════════════════════════
     ║ ROCKET LAUNCHER POPUP — visible khusus di page daftar tunggu
     ╚══════════════════════════════════════════════════════════ */
  .rocket-popup {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 360px;
    max-width: calc(100vw - 32px);
    background: linear-gradient(180deg, #0a1419 0%, #0f1a1f 50%, #152028 100%);
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    padding: 1.5rem 1.4rem 1.4rem;
    box-shadow:
      0 24px 60px rgba(0,0,0,0.55),
      0 0 0 1px rgba(232,112,58,0.08),
      0 0 80px rgba(232,112,58,0.12);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px) scale(.96);
    transition: opacity .4s ease, transform .5s cubic-bezier(.34, 1.56, .64, 1), visibility .5s;
    overflow: hidden;
  }
  .rocket-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  /* Background glow effect */
  .rocket-popup::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(ellipse 40% 30% at 50% 0%, rgba(232,112,58,0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  .rocket-popup > * { position: relative; z-index: 1; }

  .rocket-popup .popup-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 30px; height: 30px;
    border: none;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background .2s, color .2s, transform .2s;
    z-index: 5;
  }
  .rocket-popup .popup-close:hover {
    background: rgba(232,112,58,0.2);
    color: var(--orange-light);
    transform: rotate(90deg);
  }

  /* ─── Rocket scene ─── */
  .rocket-scene {
    position: relative;
    height: 110px;
    margin: -0.4rem auto 0.9rem;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(180deg, #0a0f14 0%, #0f1a1f 100%);
  }

  /* Stars di background */
  .rocket-stars span {
    position: absolute;
    width: 2px; height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: starTwinkle 2s ease-in-out infinite;
  }
  .rocket-stars span:nth-child(1)  { top: 10%; left: 15%; animation-delay: 0s; }
  .rocket-stars span:nth-child(2)  { top: 20%; left: 75%; animation-delay: 0.3s; }
  .rocket-stars span:nth-child(3)  { top: 35%; left: 25%; animation-delay: 0.6s; width: 1.5px; height: 1.5px; }
  .rocket-stars span:nth-child(4)  { top: 50%; left: 88%; animation-delay: 0.9s; }
  .rocket-stars span:nth-child(5)  { top: 15%; left: 50%; animation-delay: 1.2s; width: 3px; height: 3px; }
  .rocket-stars span:nth-child(6)  { top: 60%; left: 10%; animation-delay: 0.4s; }
  .rocket-stars span:nth-child(7)  { top: 70%; left: 65%; animation-delay: 1.5s; }
  .rocket-stars span:nth-child(8)  { top: 25%; left: 90%; animation-delay: 0.7s; width: 1.5px; height: 1.5px; }
  .rocket-stars span:nth-child(9)  { top: 80%; left: 30%; animation-delay: 1.1s; }
  .rocket-stars span:nth-child(10) { top: 5%; left: 35%; animation-delay: 1.8s; width: 1.5px; height: 1.5px; }
  @keyframes starTwinkle {
    0%, 100% { opacity: 0.2; }
    50%      { opacity: 1; }
  }

  /* Rocket body */
  .rocket-body {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: 36px;
    height: 78px;
    animation: rocketShake 0.12s ease-in-out infinite, rocketHover 3s ease-in-out infinite;
  }
  @keyframes rocketShake {
    0%, 100% { transform: translateX(-50%); }
    50%      { transform: translate(calc(-50% + 0.7px), 0); }
  }
  @keyframes rocketHover {
    0%, 100% { bottom: 14px; }
    50%      { bottom: 22px; }
  }

  /* Rocket tip (kerucut atas) */
  .rocket-tip {
    width: 0; height: 0;
    margin: 0 auto;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 18px solid var(--orange);
    filter: drop-shadow(0 0 6px rgba(232,112,58,0.5));
  }

  /* Fuselage (badan rocket) */
  .rocket-fuselage {
    width: 24px;
    height: 42px;
    margin: -1px auto 0;
    background: linear-gradient(180deg, #e8eef0 0%, #c4cdd2 50%, #a0adb3 100%);
    border-radius: 2px 2px 6px 6px;
    position: relative;
    box-shadow: inset -3px 0 0 rgba(0,0,0,0.15), inset 3px 0 0 rgba(255,255,255,0.2);
  }

  /* Window/jendela rocket */
  .rocket-window {
    position: absolute;
    top: 10px; left: 50%;
    transform: translateX(-50%);
    width: 10px; height: 10px;
    background: radial-gradient(circle at 30% 30%, var(--cyan-light), var(--cyan), var(--cyan-dim));
    border: 1.5px solid #5a6a72;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(61,160,181,0.6);
  }

  /* Fins (sirip) */
  .rocket-fins {
    position: relative;
    width: 100%;
    height: 0;
  }
  .rocket-fins span {
    position: absolute;
    top: -16px;
    width: 0; height: 0;
  }
  .rocket-fins .fin-left {
    left: 4px;
    border-top: 6px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 8px solid var(--orange);
  }
  .rocket-fins .fin-right {
    right: 4px;
    border-top: 6px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 8px solid var(--orange);
  }

  /* Flame (api) */
  .rocket-flame {
    position: relative;
    width: 100%;
    margin-top: 0;
  }
  .rocket-flame span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  }
  .flame-outer {
    top: 0;
    width: 22px; height: 30px;
    background: linear-gradient(180deg, #f4884e 0%, #e8703a 50%, rgba(232,112,58,0) 100%);
    animation: flameFlicker 0.15s ease-in-out infinite alternate;
    filter: blur(0.5px);
  }
  .flame-inner {
    top: 2px;
    width: 14px; height: 24px;
    background: linear-gradient(180deg, #ffcc33 0%, #f4884e 60%, rgba(244,136,78,0) 100%);
    animation: flameFlicker 0.12s ease-in-out infinite alternate-reverse;
  }
  .flame-core {
    top: 4px;
    width: 6px; height: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #ffe066 100%);
    animation: flameFlicker 0.18s ease-in-out infinite alternate;
  }
  @keyframes flameFlicker {
    0%   { transform: translateX(-50%) scaleY(0.92); opacity: 0.95; }
    100% { transform: translateX(-50%) scaleY(1.08); opacity: 1; }
  }

  /* Smoke (asap) */
  .rocket-smoke {
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px; height: 30px;
    z-index: -1;
  }
  .rocket-smoke span {
    position: absolute;
    bottom: 0;
    width: 14px; height: 14px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(180,180,180,0.2) 50%, transparent 100%);
    border-radius: 50%;
    animation: smokeRise 1.8s ease-out infinite;
  }
  .rocket-smoke span:nth-child(1) { left: 10px; animation-delay: 0s; }
  .rocket-smoke span:nth-child(2) { left: 30px; animation-delay: 0.4s; }
  .rocket-smoke span:nth-child(3) { left: 20px; animation-delay: 0.8s; }
  .rocket-smoke span:nth-child(4) { left: 38px; animation-delay: 1.2s; }
  @keyframes smokeRise {
    0%   { transform: translateY(0) scale(0.6); opacity: 0.7; }
    100% { transform: translateY(22px) scale(1.6); opacity: 0; }
  }

  /* Popup content styling (override default popup) */
  .rocket-popup .popup-header {
    display: flex;
    justify-content: center;
    margin-bottom: 0.7rem;
  }
  .rocket-popup .popup-badge {
    background: linear-gradient(90deg, rgba(232,112,58,0.18), rgba(244,136,78,0.18));
    color: var(--orange-light);
    border: 1px solid rgba(232,112,58,0.4);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
  }
  .rocket-popup .popup-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.6rem;
    text-align: center;
    font-family: var(--font-head);
  }
  .rocket-popup .popup-title .hl-orange {
    color: var(--orange);
  }
  .rocket-popup .popup-text {
    color: var(--text-muted);
    font-size: 0.83rem;
    line-height: 1.55;
    text-align: center;
    margin: 0 0 1rem;
  }
  .rocket-popup .popup-text strong {
    color: #fff;
  }
  .rocket-popup .popup-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 1rem;
  }
  .rocket-popup .popup-cd-unit {
    display: flex; flex-direction: column; align-items: center;
    background: rgba(42,122,138,0.08);
    border: 1px solid rgba(42,122,138,0.2);
    border-radius: 8px;
    padding: 8px 4px;
  }
  .rocket-popup .popup-cd-num {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan-light);
    line-height: 1;
  }
  .rocket-popup .popup-cd-label {
    font-size: 0.62rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 3px;
  }
  .rocket-popup .popup-cta {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.92rem;
    box-shadow: 0 4px 20px rgba(232,112,58,0.35);
    transition: transform .2s, box-shadow .2s;
    margin-bottom: 0.8rem;
  }
  .rocket-popup .popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(232,112,58,0.5);
  }
  .rocket-popup .popup-meta {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
  }
  .rocket-popup .popup-meta strong {
    color: var(--cyan-light);
  }

  /* Mobile adjustments */
  @media (max-width: 480px) {
    .rocket-popup {
      bottom: 12px;
      right: 12px;
      left: 12px;
      width: auto;
      padding: 1.25rem 1.1rem 1.1rem;
    }
    .rocket-scene { height: 90px; }
    .rocket-body { width: 30px; height: 65px; }
    .rocket-fuselage { width: 20px; height: 36px; }
    .rocket-tip {
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-bottom: 15px solid var(--orange);
    }
  }

  /* Reduced motion: matikan animasi rocket */
  @media (prefers-reduced-motion: reduce) {
    .rocket-body,
    .flame-outer, .flame-inner, .flame-core,
    .rocket-smoke span,
    .rocket-stars span {
      animation: none !important;
    }
  }

  /* ╔══════════════════════════════════════════════════════════
     ║ OFFICE MAP — Google Maps embed
     ╚══════════════════════════════════════════════════════════ */
  /* Map dengan iframe embed — FORCE full size, override base .office-map flex layout */
  .office-map.has-embed {
    /* Override semua property base .office-map yang bikin flex */
    padding: 0 !important;
    display: block !important;       /* Reset flex */
    aspect-ratio: 4 / 3 !important;
    overflow: hidden !important;
    position: relative !important;
    /* Pastikan tidak ada konten internal yang mengkompres iframe */
    min-height: 320px;               /* Fallback kalau aspect-ratio gagal */
  }
  .office-map.has-embed::before { display: none !important; }
  .office-map.has-embed iframe.map-embed {
    position: absolute !important;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    border-radius: 12px;
    display: block;
    /* Filter dark theme untuk match dengan tema situs */
    filter: invert(0.9) hue-rotate(180deg) saturate(0.85) brightness(0.95);
    transition: filter .3s ease;
  }
  .office-map.has-embed:hover iframe.map-embed {
    filter: invert(0.85) hue-rotate(180deg) saturate(0.95) brightness(1);
  }
  .office-map.has-embed .map-badge {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 2;
    background: rgba(15,26,31,0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    padding: 6px 14px;
    color: var(--orange);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .office-map.has-embed .map-badge::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(232,112,58,0.3);
    animation: pulse 2s ease-in-out infinite;
  }
  .office-map.has-embed .map-coords-overlay {
    position: absolute;
    bottom: 14px; left: 14px;
    z-index: 2;
    background: rgba(15,26,31,0.92);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    padding: 8px 12px;
    font-family: var(--font-head);
    font-size: .7rem;
    color: var(--text-muted);
  }


  /* ╔══════════════════════════════════════════════════════════
     ║ SERVICES SECTION — page Layanan
     ╚══════════════════════════════════════════════════════════ */
  .services-section { padding: 6rem 5vw; position: relative; }
  .services-section h2 { text-align: center; margin-bottom: 1rem; }
  .services-section .section-label { text-align: center; }
  .services-section .section-intro {
    max-width: 720px;
    margin: 0 auto 4rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-card {
    position: relative;
    background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1),
                border-color .35s ease,
                box-shadow .35s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
  }
  .service-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35),
                0 0 60px rgba(42,122,138,0.15);
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }
  .service-card:hover .service-icon-glow { opacity: 1; }

  .service-card-featured {
    background: linear-gradient(180deg, rgba(232,112,58,0.06) 0%, var(--bg) 100%);
    border-color: rgba(232,112,58,0.3);
  }
  .service-card-featured::before {
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(1);
  }

  .service-card-custom {
    background: linear-gradient(180deg, rgba(42,122,138,0.05) 0%, var(--bg) 100%);
    border-style: dashed;
  }

  .service-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(232,112,58,0.4);
  }

  .service-icon-wrap {
    position: relative;
    width: 64px; height: 64px;
    margin-bottom: 1.25rem;
  }
  .service-icon {
    position: relative;
    z-index: 2;
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(42,122,138,0.15) 0%, rgba(232,112,58,0.1) 100%);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  }
  .service-icon-glow {
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(42,122,138,0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity .35s ease;
    filter: blur(12px);
    z-index: 1;
  }

  .service-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    color: var(--cyan-light);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .5rem;
  }

  .service-card h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: .85rem;
    font-family: var(--font-head);
    font-weight: 700;
  }

  .service-card > p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }

  .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: .5rem;
  }
  .service-features li {
    font-size: .85rem;
    color: var(--text);
    padding-left: 4px;
  }

  .service-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--orange-light);
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .25s ease, gap .25s ease;
    align-self: flex-start;
  }
  .service-cta:hover {
    color: var(--orange);
    border-color: var(--orange);
    gap: 10px;
  }

  /* CTA block bawah */
  .services-cta-block {
    max-width: 720px;
    margin: 4rem auto 0;
    padding: 2.5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(42,122,138,0.08) 0%, rgba(232,112,58,0.06) 100%);
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    position: relative;
    overflow: hidden;
  }
  .services-cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(232,112,58,0.1), transparent 70%);
    pointer-events: none;
  }
  .services-cta-block > * { position: relative; z-index: 1; }
  .services-cta-block h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 .75rem;
    font-family: var(--font-head);
  }
  .services-cta-block p {
    color: var(--text-muted);
    margin: 0 0 1.5rem;
  }
  .services-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .25s ease, background .2s;
    font-size: .95rem;
  }
  .btn-primary {
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(232,112,58,0.35);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232,112,58,0.5);
  }
  .btn-secondary {
    background: rgba(42,122,138,0.12);
    border: 1px solid var(--border-strong);
    color: var(--text);
  }
  .btn-secondary:hover {
    background: rgba(42,122,138,0.22);
    transform: translateY(-2px);
  }

  /* Mobile */
  @media (max-width: 768px) {
    .services-section { padding: 4rem 5vw; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 1.5rem 1.25rem; }
    .services-cta-block { padding: 2rem 1.5rem; }
  }


  /* ╔══════════════════════════════════════════════════════════
     ║ PAGE HERO — banner header untuk halaman dalam (Layanan, dll)
     ╚══════════════════════════════════════════════════════════ */
  .page-hero {
    position: relative;
    padding: 7rem 5vw 4rem;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
    border-bottom: 1px solid var(--border);
  }
  .page-hero-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }
  .page-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
  }
  .page-hero-orb-1 {
    top: -80px; left: -120px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(232,112,58,0.5), transparent 70%);
  }
  .page-hero-orb-2 {
    bottom: -120px; right: -100px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(42,122,138,0.6), transparent 70%);
  }
  .page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
  }
  .page-hero-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin: 1rem 0;
  }
  .page-hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 2.5rem;
  }
  .page-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }
  .page-hero-stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
  }
  .page-hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: .4rem;
  }

  /* ╔══════════════════════════════════════════════════════════
     ║ SERVICE CARD POLISH — SVG icons, badges, price
     ╚══════════════════════════════════════════════════════════ */

  /* Section override: lebih compact karena ada hero di atas */
  .services-section { padding: 4rem 5vw 6rem; }

  /* Icon SVG container — lebih besar dengan glow */
  .service-icon-wrap {
    width: 72px; height: 72px;
    margin-bottom: 1.5rem;
    position: relative;
  }
  .service-icon-svg {
    width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(42,122,138,0.18) 0%, rgba(232,112,58,0.12) 100%);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    color: var(--cyan-light);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1),
                border-color .3s ease,
                box-shadow .3s ease;
    position: relative;
    overflow: hidden;
  }
  .service-icon-svg svg {
    width: 56%; height: 56%;
    display: block;
  }
  .service-icon-svg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(232,112,58,0.2), transparent 60%);
    opacity: 0;
    transition: opacity .35s ease;
  }
  .service-card:hover .service-icon-svg {
    transform: scale(1.06) rotate(-2deg);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(42,122,138,0.3);
    color: #fff;
  }
  .service-card:hover .service-icon-svg::before { opacity: 1; }

  /* Badge variants */
  .service-badge {
    position: absolute;
    top: 16px; right: 16px;
    font-size: .65rem;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 100px;
    letter-spacing: .05em;
    text-transform: uppercase;
    z-index: 2;
  }
  .service-badge-popular {
    background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
    color: #fff;
    box-shadow: 0 4px 12px rgba(42,122,138,0.4);
  }
  .service-badge-enterprise {
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    color: #fff;
    box-shadow: 0 4px 12px rgba(232,112,58,0.4);
  }

  /* Service features list — pakai bullet seragam, tanpa emoji checkmark */
  .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: .6rem;
  }
  .service-features li {
    font-size: .87rem;
    color: var(--text);
    padding-left: 1.4rem;
    position: relative;
    line-height: 1.5;
  }
  .service-features li::before {
    content: '';
    position: absolute;
    left: 0; top: .55em;
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    transform: rotate(45deg);
    box-shadow: 0 0 8px rgba(42,122,138,0.5);
  }

  /* Price display */
  .service-price {
    background: rgba(42,122,138,0.08);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 1.25rem;
    font-size: .82rem;
    color: var(--text-muted);
  }
  .service-price strong {
    color: var(--orange-light);
    font-weight: 700;
    font-family: var(--font-head);
    font-size: 1rem;
  }

  /* Service CTA — full width button */
  .service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-size: .92rem;
    padding: 12px 16px;
    background: rgba(232,112,58,0.08);
    border: 1px solid rgba(232,112,58,0.3);
    border-radius: 12px;
    transition: background .25s ease, border-color .25s ease, color .25s ease;
    align-self: stretch;
  }
  .service-cta span {
    transition: transform .25s ease;
    display: inline-block;
  }
  .service-cta:hover {
    background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
    border-color: var(--orange);
    color: #fff;
  }
  .service-cta:hover span {
    transform: translateX(4px);
  }

  /* Featured card highlight */
  .service-card-featured {
    background: linear-gradient(180deg, rgba(232,112,58,0.08) 0%, var(--bg) 100%);
    border-color: rgba(232,112,58,0.4);
    box-shadow: 0 0 40px rgba(232,112,58,0.08);
  }
  .service-card-featured::before {
    background: linear-gradient(90deg, var(--orange), var(--orange-light)) !important;
    transform: scaleX(1) !important;
  }
  .service-card-featured .service-icon-svg {
    background: linear-gradient(135deg, rgba(232,112,58,0.25) 0%, rgba(232,112,58,0.12) 100%);
    border-color: rgba(232,112,58,0.4);
    color: var(--orange-light);
  }

  /* CTA block bawah polish */
  .services-cta-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1.25rem;
  }
  .services-cta-icon svg { width: 100%; height: 100%; }

  .btn-primary span, .btn-secondary span {
    display: inline-block;
    margin-right: 4px;
  }

  /* Responsive grid */
  @media (min-width: 1100px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (min-width: 700px) and (max-width: 1099px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 699px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-section { padding: 3rem 5vw; }
    .page-hero { padding: 5rem 5vw 3rem; }
    .page-hero-stats { gap: 1.5rem; }
    .page-hero-stat-num { font-size: 1.6rem; }
  }

