﻿:root {
      --bg: #050507;
      --bg-soft: #0f1020;
      --purple: #231043;
      --blue: #122b63;
      --gold: #f5c65e;
      --neon: #58b7ff;
      --text: #f5f7ff;
      --muted: #b8bfd6;
      --card: rgba(20, 18, 44, 0.78);
      --line: rgba(255, 255, 255, 0.12);
      --radius: 18px;
      --pointer-x: 50%;
      --pointer-y: 36%;
      --tilt-x: 0;
      --tilt-y: 0;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Poppins", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 20% 20%, rgba(88, 183, 255, 0.18), transparent 40%),
        radial-gradient(circle at 80% 10%, rgba(245, 198, 94, 0.12), transparent 35%),
        linear-gradient(160deg, #030306, #090917 45%, #090b1f 100%);
      line-height: 1.6;
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
      isolation: isolate;
    }

    .interactive-bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      overflow: hidden;
      background:
        radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(88, 183, 255, 0.18), transparent 16rem),
        radial-gradient(circle at calc(100% - var(--pointer-x)) calc(100% - var(--pointer-y)), rgba(245, 198, 94, 0.12), transparent 18rem);
    }

    .interactive-bg::before,
    .interactive-bg::after {
      content: "";
      position: absolute;
      inset: -12%;
      opacity: .34;
      transform: translate3d(calc(var(--tilt-x) * -12px), calc(var(--tilt-y) * -10px), 0);
      transition: transform .28s ease-out;
      will-change: transform;
    }

    .interactive-bg::before {
      background-image:
        linear-gradient(rgba(88, 183, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 198, 94, 0.065) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(circle at var(--pointer-x) var(--pointer-y), black 0, transparent 68%);
    }

    .interactive-bg::after {
      background:
        conic-gradient(from 180deg at var(--pointer-x) var(--pointer-y), transparent 0 18%, rgba(88, 183, 255, 0.16) 24%, transparent 34% 62%, rgba(245, 198, 94, 0.14) 72%, transparent 82% 100%);
      filter: blur(18px);
      mix-blend-mode: screen;
      opacity: .22;
    }

    .cursor-glow {
      position: absolute;
      left: var(--pointer-x);
      top: var(--pointer-y);
      width: clamp(16rem, 28vw, 30rem);
      aspect-ratio: 1;
      border-radius: 50%;
      background:
        radial-gradient(circle, rgba(255, 228, 159, 0.26), rgba(88, 183, 255, 0.16) 34%, transparent 70%);
      filter: blur(10px);
      transform: translate(-50%, -50%) scale(1);
      transition: left .16s ease-out, top .16s ease-out, transform .22s ease-out;
      will-change: left, top, transform;
    }

    body.is-pointer-active .cursor-glow {
      transform: translate(-50%, -50%) scale(1.18);
    }

    .sound-grid {
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(74rem, 116vw);
      height: min(74rem, 116vw);
      border-radius: 50%;
      background:
        repeating-radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px),
        radial-gradient(circle at center, rgba(245, 198, 94, 0.06), transparent 60%);
      transform: translate(-50%, -50%) rotate(calc(var(--tilt-x) * 4deg));
      opacity: .42;
      animation: stageRotate 34s linear infinite;
    }

    .particle {
      position: absolute;
      width: .55rem;
      height: .55rem;
      border-radius: 50%;
      background: rgba(255, 228, 159, 0.85);
      box-shadow: 0 0 28px rgba(245, 198, 94, 0.55);
      transform: translate3d(calc(var(--tilt-x) * 18px), calc(var(--tilt-y) * 18px), 0);
      animation: particleDrift 9s ease-in-out infinite;
    }

    .particle-1 { left: 12%; top: 22%; animation-delay: -1.2s; }
    .particle-2 { left: 76%; top: 16%; width: .42rem; height: .42rem; animation-delay: -3.8s; }
    .particle-3 { left: 86%; top: 64%; background: rgba(88, 183, 255, 0.78); animation-delay: -5.1s; }
    .particle-4 { left: 18%; top: 76%; width: .38rem; height: .38rem; animation-delay: -6.4s; }
    .particle-5 { left: 48%; top: 12%; background: rgba(139, 202, 255, 0.74); animation-delay: -2.5s; }
    .particle-6 { left: 58%; top: 82%; width: .46rem; height: .46rem; animation-delay: -7.3s; }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: auto;
      width: 32rem;
      height: 32rem;
      border-radius: 50%;
      filter: blur(24px);
      pointer-events: none;
      opacity: 0.22;
      z-index: -1;
      animation: ambientFloat 16s ease-in-out infinite;
    }

    body::before {
      top: -10rem;
      left: -8rem;
      background: radial-gradient(circle, rgba(88, 183, 255, 0.32), transparent 68%);
    }

    body::after {
      right: -10rem;
      bottom: 8rem;
      background: radial-gradient(circle, rgba(245, 198, 94, 0.22), transparent 68%);
      animation-delay: -8s;
    }

    .container {
      width: min(1120px, 92%);
      margin: 0 auto;
    }

    .hero {
      min-height: 100vh;
      position: relative;
      background:
        radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(88, 183, 255, 0.28), transparent 18rem),
        radial-gradient(circle at calc(100% - var(--pointer-x)) calc(100% - var(--pointer-y)), rgba(245, 198, 94, 0.16), transparent 20rem),
        linear-gradient(120deg, rgba(3, 4, 11, 0.78), rgba(8, 8, 20, 0.84)),
        url('https://images.unsplash.com/photo-1571266028243-8f4f2fc9f5f3?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
      display: flex;
      flex-direction: column;
      isolation: isolate;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(5, 6, 15, 0.12), rgba(4, 4, 8, 0.66));
      z-index: -1;
    }

    .topbar {
      padding: 1.2rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(5, 5, 12, 0.38);
      backdrop-filter: blur(8px);
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .topbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo {
      font-weight: 800;
      letter-spacing: 1px;
      color: var(--gold);
      text-decoration: none;
      font-size: clamp(1rem, 2.4vw, 1.2rem);
      text-shadow: 0 0 16px rgba(245, 198, 94, 0.45);
      transition: transform .3s ease, text-shadow .3s ease, color .3s ease;
    }

    .logo:hover {
      transform: translateY(-2px);
      color: #ffe49f;
      text-shadow: 0 0 22px rgba(245, 198, 94, 0.6);
    }

    .menu {
      display: flex;
      gap: 1.15rem;
      list-style: none;
      flex-wrap: wrap;
      justify-content: end;
    }

    .menu a {
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: color .25s ease;
      position: relative;
      padding-bottom: .25rem;
    }

    .menu a:hover {
      color: var(--neon);
    }

    .menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--gold), var(--neon));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .28s ease;
    }

    .menu a:hover::after {
      transform: scaleX(1);
    }

    .reveal {
      opacity: 1;
      transform: none;
    }

    .reveal-left,
    .reveal-right,
    .reveal-up {
      --reveal-from: translateY(20px);
    }

    body.js-animations .reveal {
      opacity: 0;
      transform: translateY(72px) scale(.98);
      filter: blur(8px);
      transition:
        opacity .95s cubic-bezier(.16, 1, .3, 1),
        transform .95s cubic-bezier(.16, 1, .3, 1),
        filter .95s ease;
    }

    body.js-animations .reveal-left {
      transform: translateX(-92px) scale(.98);
    }

    body.js-animations .reveal-right {
      transform: translateX(92px) scale(.98);
    }

    body.js-animations .reveal-up {
      transform: translateY(86px) scale(.96);
    }

    body.js-animations .reveal.is-visible {
      opacity: 1;
      transform: translate(0, 0);
      filter: blur(0);
    }

    .hero-content {
      flex: 1;
      display: grid;
      align-items: center;
      padding: 4rem 0 5rem;
    }

    .hero-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
      gap: clamp(1.5rem, 4vw, 3.5rem);
      align-items: center;
    }

    .hero-copy {
      max-width: 760px;
      animation: heroPanelDriftIn 1.9s ease-out both;
    }

    .hero-box,
    .hero-copy {
      max-width: 760px;
      background: rgba(7, 8, 20, 0.55);
      border: 1px solid var(--line);
      border-radius: calc(var(--radius) + 4px);
      padding: clamp(1.4rem, 2.8vw, 2.2rem);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
      position: relative;
      overflow: hidden;
      isolation: isolate;
      animation: heroEntrance .7s ease-out both;
    }

    .hero-box::before,
    .hero-copy::before {
      content: "";
      position: absolute;
      inset: -40% auto auto -10%;
      width: 38%;
      height: 180%;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 45%);
      transform: rotate(18deg);
      animation: sheenSweep 7s ease-in-out infinite;
      pointer-events: none;
    }

    .hero-box::after,
    .hero-copy::after {
      content: "";
      position: absolute;
      right: -12%;
      bottom: -35%;
      width: 18rem;
      height: 18rem;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(88, 183, 255, 0.2), transparent 68%);
      filter: blur(12px);
      opacity: .8;
      z-index: 0;
      pointer-events: none;
      animation: orbDrift 9s ease-in-out infinite;
    }

    .hero-visual {
      position: relative;
      min-height: 520px;
      display: grid;
      place-items: center;
      animation: heroVisualIn .8s ease-out both;
      z-index: 1;
      overflow: hidden;
    }

    .phone-mockup {
      width: min(320px, 82vw);
      aspect-ratio: 0.56;
      border-radius: 36px;
      padding: 14px;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08));
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
      backdrop-filter: blur(18px);
      position: relative;
      z-index: 2;
      transform: translateX(50px);
      opacity: 0;
      animation: heroDeviceIn .8s ease-out .08s forwards, heroDeviceFloat 6.5s ease-in-out 1s infinite;
    }

    .phone-mockup::before {
      content: "";
      position: absolute;
      top: 10px;
      left: 50%;
      width: 34%;
      height: 16px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: rgba(7, 8, 20, 0.9);
      z-index: 2;
    }

    .phone-screen {
      height: 100%;
      border-radius: 26px;
      overflow: hidden;
      position: relative;
      background:
        radial-gradient(circle at 20% 20%, rgba(88, 183, 255, 0.28), transparent 32%),
        radial-gradient(circle at 80% 30%, rgba(245, 198, 94, 0.24), transparent 28%),
        linear-gradient(180deg, rgba(14, 17, 44, 0.98), rgba(7, 8, 20, 0.96));
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.2rem;
      box-shadow: inset 0 0 60px rgba(88, 183, 255, 0.08);
    }

    .screen-glow {
      position: absolute;
      inset: auto auto 14% 12%;
      width: 76%;
      height: 42%;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(88, 183, 255, 0.26), transparent 70%);
      filter: blur(18px);
    }

    .screen-badge {
      position: absolute;
      top: 1.5rem;
      left: 1.2rem;
      padding: .4rem .7rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .08em;
      color: #f6deb0;
    }

    .screen-wave {
      position: absolute;
      left: 50%;
      bottom: 27%;
      width: 74%;
      height: 12px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(88, 183, 255, 0.1), rgba(88, 183, 255, 0.75), rgba(245, 198, 94, 0.4));
      transform: translateX(-50%);
      animation: wavePulse 3.4s ease-in-out infinite;
    }

    .wave-one {
      bottom: 34%;
      animation-delay: 0s;
    }

    .wave-two {
      bottom: 29%;
      width: 60%;
      animation-delay: .3s;
    }

    .wave-three {
      bottom: 24%;
      width: 48%;
      animation-delay: .6s;
    }

    .screen-event-card {
      position: relative;
      z-index: 1;
      padding: 1rem;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      display: grid;
      gap: .18rem;
      box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
    }

    .screen-event-card span,
    .screen-event-card small {
      color: #c8d4f1;
    }

    .screen-event-card strong {
      color: #fff8e8;
      font-size: 1.1rem;
    }

    .gold-light,
    .gold-spark {
      position: absolute;
      pointer-events: none;
      opacity: 0;
    }

    .gold-light {
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245, 198, 94, 0.38), rgba(245, 198, 94, 0.12) 38%, transparent 72%);
      filter: blur(10px);
      animation: goldLightIn 1.8s ease-out forwards, goldLightFloat 7s ease-in-out 1.8s infinite;
    }

    .light-one {
      top: 8%;
      right: 6%;
      width: 220px;
      height: 220px;
      animation-delay: .05s, 1.85s;
    }

    .light-two {
      right: 22%;
      bottom: 14%;
      width: 160px;
      height: 160px;
      animation-delay: .25s, 2.05s;
    }

    .light-three {
      left: 10%;
      bottom: 18%;
      width: 120px;
      height: 120px;
      animation-delay: .45s, 2.25s;
    }

    .gold-spark {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 233, 170, 0.95), rgba(245, 198, 94, 0.2) 60%, transparent 100%);
      box-shadow: 0 0 18px rgba(245, 198, 94, 0.55);
      animation: sparkIn 1.4s ease-out forwards, sparkTwinkle 3.6s ease-in-out 1.6s infinite;
    }

    .spark-one {
      top: 20%;
      right: 28%;
      animation-delay: .35s, 1.8s;
    }

    .spark-two {
      top: 58%;
      right: 10%;
      animation-delay: .6s, 2.05s;
    }

    .spark-three {
      bottom: 24%;
      left: 24%;
      animation-delay: .8s, 2.25s;
    }

    h1 {
      font-size: clamp(2rem, 5.4vw, 3.8rem);
      line-height: 1.1;
      margin-bottom: 1rem;
      text-wrap: balance;
      position: relative;
      z-index: 1;
      animation: contentReveal .95s cubic-bezier(.16,1,.3,1) .22s both;
    }

    .hero p {
      color: var(--muted);
      font-size: clamp(1rem, 2.3vw, 1.15rem);
      max-width: 62ch;
      margin-bottom: 1.7rem;
      position: relative;
      z-index: 1;
      animation: contentReveal .95s cubic-bezier(.16,1,.3,1) .34s both;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      text-transform: uppercase;
      letter-spacing: .26em;
      font-size: .78rem;
      color: #f4d9a4;
      margin-bottom: .9rem;
      position: relative;
      z-index: 1;
      animation: contentReveal .8s cubic-bezier(.16,1,.3,1) .12s both;
    }

    .hero-kicker::before,
    .hero-kicker::after {
      content: "";
      width: 3rem;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245, 198, 94, 0.9), transparent);
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: .65rem;
      margin: 0 0 1.5rem;
      position: relative;
      z-index: 1;
    }

    .hero-tags span {
      padding: .45rem .85rem;
      border-radius: 999px;
      border: 1px solid rgba(245, 198, 94, 0.24);
      background: rgba(255, 255, 255, 0.05);
      color: #f4e7c4;
      font-size: .86rem;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
      animation: contentReveal .75s cubic-bezier(.16,1,.3,1) both;
    }

    .hero-tags span:nth-child(1) {
      animation-delay: .46s;
    }

    .hero-tags span:nth-child(2) {
      animation-delay: .56s;
    }

    .hero-tags span:nth-child(3) {
      animation-delay: .66s;
    }

    .hero-cta {
      animation-delay: .3s, 1.5s;
    }

    .btn {
      display: inline-block;
      background: linear-gradient(110deg, var(--gold), #ffe49f);
      color: #1a1408;
      text-decoration: none;
      font-weight: 700;
      border-radius: 999px;
      padding: 0.86rem 1.7rem;
      border: none;
      cursor: pointer;
      transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
      box-shadow: 0 12px 30px rgba(245, 198, 94, 0.35);
      position: relative;
      overflow: hidden;
      animation: contentReveal .7s ease-out .3s both, ctaPulse 3.6s ease-in-out 1.5s infinite;
    }

    .btn:hover {
      transform: translateY(-3px);
      filter: brightness(1.05);
      box-shadow: 0 16px 34px rgba(245, 198, 94, 0.45);
    }

    .btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, transparent 25%, rgba(255, 255, 255, 0.42) 50%, transparent 75%);
      transform: translateX(-140%);
      transition: transform .65s ease;
    }

    .btn:hover::after {
      transform: translateX(140%);
    }

    section {
      padding: 4.6rem 0;
    }

    h2 {
      text-align: center;
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      margin-bottom: 2rem;
    }

    .services {
      background: linear-gradient(170deg, rgba(12, 9, 26, 0.95), rgba(7, 11, 30, 0.92));
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(5, minmax(160px, 1fr));
      gap: 1rem;
    }

    .card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 24px;
      padding: 1.15rem;
      text-align: center;
      transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 40px rgba(2, 5, 18, 0.18);
    }

    .card:hover {
      transform: translateY(-10px) scale(1.05);
      border-color: rgba(88, 183, 255, 0.45);
      box-shadow: 0 24px 42px rgba(0, 0, 0, 0.34);
      background: rgba(255, 255, 255, 0.08);
    }

    .icon-circle {
      width: 54px;
      height: 54px;
      margin: 0 auto 0.9rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 1.3rem;
      color: var(--gold);
      background: radial-gradient(circle at 30% 20%, rgba(245, 198, 94, 0.25), rgba(24, 27, 61, 0.95));
      border: 1px solid rgba(245, 198, 94, 0.42);
    }

    .card p {
      color: #e8ecff;
      font-size: .95rem;
      font-weight: 500;
    }

    .social-proof {
      background: linear-gradient(180deg, rgba(8, 11, 27, 0.8), rgba(6, 7, 17, 0.95));
      border-bottom: 1px solid var(--line);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(160px, 1fr));
      gap: 1rem;
    }

    .stat-card {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 1.2rem 1rem;
      text-align: center;
      background: rgba(255, 255, 255, 0.05);
      transition: transform .25s ease, border-color .25s ease;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(14px);
    }

    .stat-card:hover {
      transform: translateY(-8px) scale(1.03);
      border-color: rgba(88, 183, 255, 0.5);
      box-shadow: 0 14px 28px rgba(7, 12, 30, 0.35);
    }

    .stat-value {
      display: block;
      color: #f9d98a;
      font-size: 1.8rem;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: .3rem;
    }

    .stat-label {
      color: #e3e9ff;
      font-size: .92rem;
      font-weight: 500;
    }

    .experience {
      text-align: center;
    }

    .experience .highlight {
      max-width: 860px;
      margin: 0 auto;
      font-size: clamp(1.35rem, 3.9vw, 2.4rem);
      font-weight: 700;
      color: #fef3c7;
      padding: 1.6rem;
      border-radius: var(--radius);
      border: 1px solid rgba(245, 198, 94, 0.35);
      background: linear-gradient(130deg, rgba(35, 16, 67, 0.7), rgba(10, 26, 64, 0.75));
      box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.26);
      animation: pulseGlow 4.4s ease-in-out infinite;
    }

    .ideal-list {
      display: grid;
      grid-template-columns: repeat(5, minmax(130px, 1fr));
      gap: 0.9rem;
      list-style: none;
    }

    .ideal-item {
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.05);
      padding: .95rem .8rem;
      text-align: center;
      color: #e8ecff;
      font-weight: 600;
      transition: transform .25s ease, background .25s ease;
      backdrop-filter: blur(12px);
    }

    .ideal-item:hover {
      transform: translateY(-8px) scale(1.05);
      background: rgba(18, 43, 99, 0.4);
    }

    .ideal-item span {
      display: block;
      font-size: 1.25rem;
      margin-bottom: .35rem;
      color: var(--neon);
    }

    .packages {
      background: linear-gradient(180deg, rgba(6, 7, 16, 0.9), rgba(10, 10, 24, 0.94));
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .packages-intro {
      text-align: center;
      color: var(--muted);
      max-width: 70ch;
      margin: -1.1rem auto 1.8rem;
    }

    .package-overview {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: .7rem;
      margin-bottom: 1.6rem;
      align-items: stretch;
    }

    .package-overview span {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100%;
      padding: .7rem .95rem;
      border-radius: 999px;
      background: rgba(245, 198, 94, 0.08);
      color: #f7dfb0;
      border: 1px solid rgba(245, 198, 94, 0.18);
      font-size: .9rem;
      font-weight: 600;
      line-height: 1.35;
      text-align: center;
    }

    .package-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(280px, 1fr));
      gap: 1.2rem;
    }

    .package-card {
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 26px;
      padding: 1.25rem;
      background:
        linear-gradient(180deg, rgba(255, 210, 137, 0.06), rgba(255, 255, 255, 0) 22%),
        rgba(255, 255, 255, 0.05);
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
      transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(16px);
    }

    .package-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(245, 198, 94, 0.1), transparent 35%, transparent 65%, rgba(88, 183, 255, 0.08));
      pointer-events: none;
    }

    .package-card:hover {
      transform: translateY(-10px) scale(1.05);
      border-color: rgba(88, 183, 255, 0.4);
      box-shadow: 0 18px 34px rgba(4, 10, 26, 0.38);
    }

    .card::after,
    .stat-card::after,
    .package-card::after,
    .testimonial::after,
    .extra-item::after {
      content: "";
      position: absolute;
      inset: -140% auto auto -35%;
      width: 42%;
      height: 280%;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
      transform: rotate(22deg) translateX(-170%);
      opacity: 0;
      pointer-events: none;
    }

    .card:hover::after,
    .stat-card:hover::after,
    .package-card:hover::after,
    .testimonial:hover::after,
    .extra-item:hover::after {
      opacity: 1;
      animation: cardSweep .9s ease forwards;
    }

    body.js-animations .cards .card,
    body.js-animations .stats-grid .stat-card,
    body.js-animations .ideal-list .ideal-item,
    body.js-animations .package-grid .package-card,
    body.js-animations .extra-item,
    body.js-animations .testimonial,
    body.js-animations .map-point,
    body.js-animations .avatar {
      opacity: 0;
      transform: translateY(64px) scale(.96);
      filter: blur(8px);
      transition:
        opacity .9s cubic-bezier(.16, 1, .3, 1),
        transform .9s cubic-bezier(.16, 1, .3, 1),
        filter .9s ease;
    }

    body.js-animations .cards .card:nth-child(even),
    body.js-animations .stats-grid .stat-card:nth-child(even),
    body.js-animations .ideal-list .ideal-item:nth-child(even),
    body.js-animations .package-grid .package-card:nth-child(even),
    body.js-animations .extra-item:nth-child(even),
    body.js-animations .testimonial:nth-child(even),
    body.js-animations .map-point:nth-child(even),
    body.js-animations .avatar:nth-child(even) {
      transform: translateX(52px) translateY(28px) scale(.96);
    }

    body.js-animations .cards .card.is-visible,
    body.js-animations .stats-grid .stat-card.is-visible,
    body.js-animations .ideal-list .ideal-item.is-visible,
    body.js-animations .package-grid .package-card.is-visible,
    body.js-animations .extra-item.is-visible,
    body.js-animations .testimonial.is-visible,
    body.js-animations .map-point.is-visible,
    body.js-animations .avatar.is-visible {
      opacity: 1;
      transform: translate(0, 0);
      filter: blur(0);
    }

    body.js-animations .map-point {
      opacity: 0;
      transform: scale(0);
      transition: opacity .55s ease-out, transform .55s ease-out;
      animation: none;
    }

    body.js-animations .map-point.is-visible {
      opacity: 1;
      transform: scale(1);
      animation: bubbleFloat 5.6s ease-in-out .45s infinite;
    }

    body.js-animations .avatar {
      opacity: 0;
      transform: scale(.5) rotate(-10deg);
      transition: opacity .55s ease-out, transform .55s ease-out;
    }

    body.js-animations .avatar.is-visible {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }

    .section-kicker {
      color: #f4d9a4;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: .76rem;
      margin-bottom: .65rem;
    }

    .coverage-map {
      background: linear-gradient(180deg, rgba(7, 9, 21, 0.94), rgba(9, 12, 28, 0.98));
      border-bottom: 1px solid var(--line);
    }

    .map-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 2.2rem;
    }

    .map-header p:last-child {
      color: var(--muted);
    }

    .map-board {
      position: relative;
      min-height: 420px;
      border-radius: 34px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background:
        radial-gradient(circle at 50% 50%, rgba(88, 183, 255, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
      backdrop-filter: blur(16px);
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 20px 50px rgba(0, 0, 0, 0.18);
    }

    .map-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
    }

    .map-orbit {
      position: absolute;
      left: 50%;
      top: 50%;
      border-radius: 50%;
      border: 1px solid rgba(88, 183, 255, 0.12);
      transform: translate(-50%, -50%);
    }

    .orbit-a {
      width: 220px;
      height: 220px;
    }

    .orbit-b {
      width: 340px;
      height: 340px;
      border-color: rgba(245, 198, 94, 0.12);
    }

    .map-orbiter {
      position: absolute;
      width: min(220px, 42vw);
      left: 50%;
      top: 50%;
      z-index: 1;
      transform: translate(-50%, -50%);
      animation-timing-function: linear;
      animation-iteration-count: infinite;
      will-change: left, top;
    }

    .map-point {
      position: relative;
      width: 100%;
      padding: 1rem;
      border-radius: 22px;
      background:
        radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(14px);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 14px 34px rgba(0, 0, 0, 0.2),
        0 0 0 rgba(88, 183, 255, 0);
      overflow: hidden;
      animation: bubbleFloat 5.6s ease-in-out infinite;
      transform-origin: center;
    }

    .map-point::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.3), transparent 24%);
      opacity: .56;
      pointer-events: none;
    }

    .map-icon {
      width: 2.8rem;
      height: 2.8rem;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      margin-bottom: .8rem;
      background: linear-gradient(135deg, rgba(88, 183, 255, 0.26), rgba(245, 198, 94, 0.2));
      font-size: 1.15rem;
      position: relative;
      z-index: 1;
    }

    .map-point strong {
      display: block;
      margin-bottom: .2rem;
      color: #fff8eb;
      position: relative;
      z-index: 1;
    }

    .map-point small {
      color: #ced7f1;
      position: relative;
      z-index: 1;
    }

    .orbit-point-1 {
      animation-name: orbitAroundA;
      animation-duration: 18s;
    }

    .orbit-point-2 {
      animation-name: orbitAroundB;
      animation-duration: 20s;
    }

    .orbit-point-3 {
      animation-name: orbitAroundC;
      animation-duration: 22s;
    }

    .orbit-point-4 {
      animation-name: orbitAroundD;
      animation-duration: 19s;
    }

    .point-1 {
      animation-delay: -.2s;
    }

    .point-2 {
      animation-delay: -.9s;
    }

    .point-3 {
      animation-delay: -1.6s;
    }

    .point-4 {
      animation-delay: -2.4s;
    }

    .package-badge,
    .package-card h3,
    .package-subtitle,
    .package-price,
    .package-capacity,
    .package-includes,
    .package-card ul,
    .package-cta {
      position: relative;
      z-index: 1;
    }

    .package-badge {
      display: inline-flex;
      padding: .36rem .72rem;
      border-radius: 999px;
      background: rgba(245, 198, 94, 0.14);
      border: 1px solid rgba(245, 198, 94, 0.22);
      color: #f6deb0;
      font-size: .76rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: .8rem;
    }

    .package-card h3 {
      color: #f9d98a;
      font-size: 1.35rem;
      margin-bottom: .35rem;
      line-height: 1.15;
    }

    .package-subtitle {
      color: #dbdeeb;
      font-size: .94rem;
      margin-bottom: .9rem;
    }

    .package-price {
      color: #ffe49f;
      font-weight: 800;
      margin-bottom: .2rem;
      font-size: 1.7rem;
      line-height: 1;
    }

    .package-capacity {
      color: #bcd8ff;
      font-weight: 600;
      margin-bottom: .85rem;
      font-size: .95rem;
    }

    .package-card ul {
      list-style: none;
      display: grid;
      gap: .45rem;
      color: #e6ebff;
      font-size: .94rem;
      margin-bottom: .9rem;
    }

    .package-card li::before {
      content: "✔";
      color: var(--neon);
      margin-right: .45rem;
      font-weight: 700;
    }

    .package-includes {
      margin-bottom: 1rem;
      color: #efe4c7;
      font-size: .92rem;
      border-top: 1px solid rgba(245, 198, 94, 0.14);
      padding-top: .8rem;
    }

    .package-cta {
      display: inline-block;
      width: 100%;
      text-align: center;
      text-decoration: none;
      color: #eaf2ff;
      font-weight: 700;
      font-size: .9rem;
      border: 1px solid rgba(88, 183, 255, 0.45);
      border-radius: 999px;
      padding: .55rem .85rem;
      background: rgba(18, 43, 99, 0.42);
      transition: transform .2s ease, background .25s ease, border-color .25s ease;
    }

    .package-cta:hover {
      transform: translateY(-2px);
      border-color: rgba(245, 198, 94, 0.6);
      background: rgba(35, 16, 67, 0.76);
      box-shadow: 0 12px 24px rgba(8, 15, 38, 0.26);
    }

    .featured-basic {
      border-color: rgba(136, 211, 255, 0.2);
    }

    .featured-medium {
      border-color: rgba(245, 198, 94, 0.24);
    }

    .featured-pro {
      border-color: rgba(194, 144, 255, 0.24);
    }

    .featured-max {
      border-color: rgba(255, 211, 137, 0.32);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(245, 198, 94, 0.12);
    }

    .extras-board {
      margin-top: 1.8rem;
      display: grid;
      grid-template-columns: minmax(240px, 1.1fr) minmax(320px, 1.3fr);
      gap: 1rem;
      align-items: start;
    }

    .extras-copy,
    .extras-list {
      border: 1px solid rgba(245, 198, 94, 0.14);
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.05);
      padding: 1.15rem;
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
      backdrop-filter: blur(14px);
    }

    .extras-kicker {
      color: #f4d9a4;
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: .76rem;
      margin-bottom: .55rem;
    }

    .extras-copy h3 {
      font-size: clamp(1.35rem, 2.6vw, 1.9rem);
      margin-bottom: .7rem;
      line-height: 1.1;
    }

    .extras-copy p:last-child {
      color: var(--muted);
      font-size: .96rem;
    }

    .extras-list {
      display: grid;
      gap: .75rem;
    }

    .extra-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      padding: .9rem 1rem;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(90deg, rgba(245, 198, 94, 0.07), rgba(88, 183, 255, 0.04));
      position: relative;
      overflow: hidden;
      transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
      backdrop-filter: blur(12px);
    }

    .extra-item:hover {
      transform: translateY(-4px);
      border-color: rgba(245, 198, 94, 0.26);
      box-shadow: 0 14px 26px rgba(6, 10, 22, 0.28);
    }

    .extra-item span {
      color: #f2f3fb;
      font-weight: 500;
    }

    .extra-item strong {
      color: #ffe49f;
      font-size: 1.05rem;
      white-space: nowrap;
    }

    .cta {
      background: linear-gradient(180deg, rgba(7, 8, 20, 0), rgba(10, 7, 22, 0.92));
    }

    .cta h2 {
      margin-bottom: .8rem;
    }

    .cta p {
      margin-top: 1rem;
      color: var(--muted);
      font-size: 1.05rem;
    }

    .contact-note {
      max-width: 760px;
      margin: .9rem auto 0;
      font-size: .88rem;
      color: #c1c8e0;
    }

    .testimonials {
      background: linear-gradient(180deg, rgba(8, 8, 20, 0.7), rgba(11, 8, 22, 0.95));
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .testimonials-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 1.4rem;
      flex-wrap: wrap;
    }

    .avatar-cluster {
      display: flex;
      align-items: center;
    }

    .avatar {
      width: 3.2rem;
      height: 3.2rem;
      margin-left: -.5rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 800;
      color: #0a1023;
      border: 2px solid rgba(255, 255, 255, 0.65);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
      animation: avatarFloat 5.4s ease-in-out infinite;
    }

    .avatar:first-child {
      margin-left: 0;
    }

    .avatar-1 {
      background: linear-gradient(135deg, #ffe49f, #f5c65e);
      animation-delay: -.2s;
    }

    .avatar-2 {
      background: linear-gradient(135deg, #8ed0ff, #58b7ff);
      animation-delay: -1.1s;
    }

    .avatar-3 {
      background: linear-gradient(135deg, #f7b6ff, #d987ff);
      animation-delay: -2s;
    }

    .testimonial-carousel {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 1rem;
      align-items: center;
    }

    .testimonial-viewport {
      overflow: hidden;
    }

    .testimonial-track {
      display: flex;
      transition: transform .5s ease;
    }

    .testimonial {
      min-width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.06);
      padding: 1.2rem;
      transition: transform .25s ease, border-color .25s ease;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(14px);
    }

    .testimonial:hover {
      transform: translateY(-6px);
      border-color: rgba(245, 198, 94, 0.45);
    }

    .testimonial p {
      color: #e6ebff;
      font-size: .95rem;
      margin-bottom: .75rem;
    }

    .testimonial strong {
      color: #f7d68a;
      font-size: .92rem;
      letter-spacing: .2px;
    }

    .carousel-btn {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.07);
      color: #fff;
      cursor: pointer;
      backdrop-filter: blur(10px);
      transition: transform .2s ease, background .2s ease;
    }

    .carousel-btn:hover {
      transform: scale(1.05);
      background: rgba(255, 255, 255, 0.12);
    }

    .wa-float {
      position: fixed;
      right: 14px;
      bottom: 16px;
      z-index: 30;
      text-decoration: none;
      color: #062b12;
      background: linear-gradient(120deg, #25d366, #6cf598);
      border-radius: 999px;
      padding: .68rem 1rem;
      font-weight: 700;
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
      display: none;
      animation: waPulse 3.2s ease-in-out infinite;
    }

    footer {
      border-top: 1px solid var(--line);
      padding: 1.8rem 0 2.2rem;
      background: #05050a;
    }

    .footer-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-brand strong {
      color: var(--gold);
      font-size: 1.05rem;
    }

    .footer-brand p {
      color: var(--muted);
      font-size: .95rem;
    }

    .social {
      color: #d0d8f6;
      font-size: .95rem;
      border: 1px dashed rgba(208, 216, 246, 0.36);
      padding: .55rem .9rem;
      border-radius: 999px;
      background: rgba(16, 14, 28, 0.7);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes heroEntrance {
      from {
        opacity: 0;
        transform: translateY(32px) scale(.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes heroPanelDriftIn {
      from {
        opacity: 0;
        transform: translateX(-72px);
      }
      65% {
        opacity: 1;
        transform: translateX(18px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes goldLightIn {
      from {
        opacity: 0;
        transform: translateX(-46px) scale(.7);
      }
      70% {
        opacity: .9;
        transform: translateX(10px) scale(1.04);
      }
      to {
        opacity: .75;
        transform: translateX(0) scale(1);
      }
    }

    @keyframes heroVisualIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes heroDeviceIn {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes heroDeviceFloat {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-14px);
      }
    }

    @keyframes heroCardFloat {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-12px);
      }
    }

    @keyframes contentReveal {
      from {
        opacity: 0;
        transform: translateX(-22px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes wavePulse {
      0%, 100% {
        opacity: .35;
        transform: translateX(-50%) scaleX(.9);
      }
      50% {
        opacity: .95;
        transform: translateX(-50%) scaleX(1.08);
      }
    }

    @keyframes ambientFloat {
      0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
      }
      50% {
        transform: translate3d(1.5rem, 1rem, 0) scale(1.08);
      }
    }

    @keyframes stageRotate {
      from {
        rotate: 0deg;
      }
      to {
        rotate: 360deg;
      }
    }

    @keyframes particleDrift {
      0%, 100% {
        opacity: .28;
        scale: .82;
      }
      45% {
        opacity: .92;
        scale: 1.18;
      }
      70% {
        opacity: .48;
        scale: .96;
      }
    }

    @keyframes sheenSweep {
      0%, 100% {
        transform: translateX(-140%) rotate(18deg);
        opacity: 0;
      }
      18% {
        opacity: .1;
      }
      32% {
        opacity: .3;
      }
      46% {
        transform: translateX(260%) rotate(18deg);
        opacity: 0;
      }
    }

    @keyframes orbDrift {
      0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
      }
      50% {
        transform: translate3d(-1.8rem, -1.2rem, 0) scale(1.12);
      }
    }

    @keyframes goldLightFloat {
      0%, 100% {
        transform: translateY(0) scale(1);
      }
      50% {
        transform: translateY(-12px) scale(1.05);
      }
    }

    @keyframes sparkIn {
      from {
        opacity: 0;
        transform: translateX(-28px) scale(.3);
      }
      to {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }

    @keyframes sparkTwinkle {
      0%, 100% {
        opacity: .45;
        transform: scale(.85);
      }
      50% {
        opacity: 1;
        transform: scale(1.25);
      }
    }

    @keyframes pulseGlow {
      0%, 100% {
        box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.26), 0 0 0 rgba(88, 183, 255, 0);
      }
      50% {
        box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.26), 0 0 26px rgba(88, 183, 255, 0.2);
      }
    }

    @keyframes ctaPulse {
      0%, 100% {
        box-shadow: 0 12px 30px rgba(245, 198, 94, 0.35);
      }
      50% {
        box-shadow: 0 16px 36px rgba(245, 198, 94, 0.5), 0 0 0 8px rgba(245, 198, 94, 0.08);
      }
    }

    @keyframes cardSweep {
      0% {
        transform: rotate(22deg) translateX(-170%);
      }
      100% {
        transform: rotate(22deg) translateX(340%);
      }
    }

    @keyframes waPulse {
      0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
      }
      50% {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 14px 30px rgba(37, 211, 102, 0.48);
      }
    }

    @keyframes orbitAroundA {
      0%, 100% { left: 18%; top: 27%; }
      25% { left: 48%; top: 14%; }
      50% { left: 78%; top: 28%; }
      75% { left: 46%; top: 72%; }
    }

    @keyframes orbitAroundB {
      0%, 100% { left: 78%; top: 28%; }
      25% { left: 52%; top: 72%; }
      50% { left: 18%; top: 62%; }
      75% { left: 48%; top: 14%; }
    }

    @keyframes orbitAroundC {
      0%, 100% { left: 24%; top: 68%; }
      25% { left: 18%; top: 27%; }
      50% { left: 52%; top: 15%; }
      75% { left: 78%; top: 62%; }
    }

    @keyframes orbitAroundD {
      0%, 100% { left: 76%; top: 64%; }
      25% { left: 48%; top: 76%; }
      50% { left: 18%; top: 32%; }
      75% { left: 52%; top: 16%; }
    }

    @keyframes bubbleFloat {
      0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.18),
          0 14px 34px rgba(0, 0, 0, 0.2),
          0 0 0 rgba(88, 183, 255, 0);
      }
      50% {
        transform: translateY(-10px) scale(1.025);
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.22),
          0 20px 38px rgba(0, 0, 0, 0.24),
          0 0 26px rgba(88, 183, 255, 0.12);
      }
    }

    @keyframes avatarFloat {
      0%, 100% {
        transform: translateY(0) rotate(0deg);
      }
      33% {
        transform: translateY(-8px) rotate(-5deg);
      }
      66% {
        transform: translateY(-3px) rotate(4deg);
      }
    }

    @keyframes revealOnScroll {
      to {
        opacity: 1;
        transform: translate(0, 0);
      }
    }

    @keyframes revealFallback {
      to {
        opacity: 1;
        transform: translate(0, 0);
      }
    }

    @media (max-width: 980px) {
      .hero-shell {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        min-height: 420px;
      }

      .cards {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
      }

      .ideal-list {
        grid-template-columns: repeat(2, minmax(150px, 1fr));
      }

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

      .stats-grid {
        grid-template-columns: repeat(2, minmax(170px, 1fr));
      }

      .map-board {
        min-height: 580px;
      }

      .extras-board {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .topbar .container {
        flex-direction: column;
      }

      .menu {
        justify-content: center;
        gap: .8rem;
      }

      .hero-content {
        padding-top: 2rem;
      }

      .hero-visual {
        min-height: 360px;
      }

      .cards,
      .ideal-list {
        grid-template-columns: 1fr;
      }

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

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

      .wa-float {
        display: inline-flex;
        align-items: center;
        gap: .3rem;
      }

      .hero-kicker {
        letter-spacing: .18em;
      }

      .hero-tags {
        flex-direction: column;
        align-items: stretch;
      }

      .package-overview {
        grid-template-columns: 1fr;
      }

      .map-board {
        min-height: auto;
        display: grid;
        gap: 1rem;
        padding: 1rem;
      }

      .map-orbiter {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        transform: none;
        animation: none;
      }

      .map-point {
        position: relative;
        inset: auto;
        width: 100%;
      }

      .map-orbit {
        display: none;
      }

      .testimonial-carousel {
        display: block;
      }

      .carousel-btn {
        display: none;
      }

      .extra-item {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .interactive-bg {
        background:
          radial-gradient(circle at 50% 28%, rgba(88, 183, 255, 0.12), transparent 18rem),
          radial-gradient(circle at 80% 70%, rgba(245, 198, 94, 0.1), transparent 18rem);
      }

      .cursor-glow,
      .sound-grid,
      .particle {
        display: none;
      }

      .orbit-point-1 { left: 18%; top: 27%; }
      .orbit-point-2 { left: 78%; top: 28%; }
      .orbit-point-3 { left: 24%; top: 68%; }
      .orbit-point-4 { left: 76%; top: 64%; }

      .interactive-bg *,
      body::before,
      body::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
      }
    }

    @media (max-width: 640px) {
      .orbit-point-1,
      .orbit-point-2,
      .orbit-point-3,
      .orbit-point-4 {
        left: auto;
        top: auto;
      }
    }
