
    :root {
      --bg: #050816;
      --bg-2: #0b1022;
      --panel: rgba(255, 255, 255, 0.06);
      --panel-2: rgba(255, 255, 255, 0.1);
      --line: rgba(255, 255, 255, 0.12);
      --text: #f5f7fb;
      --muted: #9aa6bc;
      --gold: #d8b36a;
      --gold-2: #f3d28f;
      --cyan: #73dfff;
      --purple: #8a7dff;
      --green: #25d366;
      --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
      --radius: 24px;
      --radius-lg: 32px;
      --container: 1220px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Inter', Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 10%, rgba(115,223,255,0.16), transparent 24%),
        radial-gradient(circle at 90% 12%, rgba(216,179,106,0.14), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(138,125,255,0.18), transparent 28%),
        linear-gradient(180deg, #040713 0%, #070b17 34%, #0a1120 100%);
      overflow-x: hidden;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      inset: auto;
      pointer-events: none;
      z-index: 0;
      filter: blur(70px);
      opacity: 0.45;
    }

    body::before {
      width: 240px;
      height: 240px;
      left: -60px;
      top: 110px;
      background: rgba(115,223,255,0.18);
      animation: floatGlow 9s ease-in-out infinite;
    }

    body::after {
      width: 300px;
      height: 300px;
      right: -80px;
      top: 220px;
      background: rgba(216,179,106,0.14);
      animation: floatGlow 11s ease-in-out infinite reverse;
    }

    @keyframes floatGlow {
      0%, 100% { transform: translateY(0) translateX(0) scale(1); }
      50% { transform: translateY(-18px) translateX(12px) scale(1.06); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(26px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes shimmer {
      0% { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }

    @keyframes pulseBorder {
      0%, 100% { box-shadow: 0 0 0 rgba(216,179,106,0); }
      50% { box-shadow: 0 0 30px rgba(216,179,106,0.12); }
    }

    a { color: inherit; text-decoration: none; }
    .container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; position: relative; z-index: 1; }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(5, 8, 22, 0.62);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .brand strong {
      font-family: 'Manrope', sans-serif;
      font-size: 1.12rem;
      font-weight: 800;
      letter-spacing: 0.5px;
    }

    .brand span {
      color: var(--muted);
      font-size: 0.88rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .nav-links a {
      color: var(--muted);
      font-weight: 500;
      padding: 10px 12px;
      border-radius: 999px;
      transition: 0.3s ease;
    }

    .nav-links a:hover {
      color: var(--text);
      background: rgba(255,255,255,0.05);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 15px 24px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform .28s ease, box-shadow .28s ease, background .28s ease, border-color .28s ease;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .btn:hover { transform: translateY(-3px); }

    .btn-luxury {
      color: #09101d;
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
      box-shadow: 0 18px 40px rgba(216,179,106,0.24);
    }

    .btn-ghost {
      color: var(--text);
      border-color: rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.04);
    }

    .btn-ghost:hover {
      border-color: rgba(255,255,255,0.26);
      background: rgba(255,255,255,0.08);
    }

    .btn-whatsapp {
      color: #fff;
      background: linear-gradient(135deg, #1bb454, #25d366);
      box-shadow: 0 18px 40px rgba(37,211,102,0.26);
    }

    .hero {
      padding: 96px 0 56px;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.06fr 0.94fr;
      gap: 28px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(216,179,106,0.18);
      background: rgba(255,255,255,0.04);
      color: #f3dfb1;
      font-size: 0.86rem;
      letter-spacing: 0.7px;
      text-transform: uppercase;
      animation: fadeUp .8s ease both;
    }

    .hero h1 {
      margin: 18px 0 18px;
      font-family: 'Manrope', sans-serif;
      font-size: clamp(2.8rem, 6vw, 5.6rem);
      line-height: 0.96;
      letter-spacing: -2px;
      animation: fadeUp .95s ease both;
    }

    .hero h1 .lux {
      background: linear-gradient(135deg, #ffffff 0%, #f0d59e 32%, #89e0ff 70%, #b4a5ff 100%);
      background-size: 200% 200%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: shimmer 6s linear infinite;
    }

    .hero p {
      margin: 0 0 28px;
      max-width: 670px;
      color: var(--muted);
      font-size: 1.06rem;
      animation: fadeUp 1.05s ease both;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
      animation: fadeUp 1.15s ease both;
    }

    .hero-highlights {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      animation: fadeUp 1.25s ease both;
    }

    .highlight {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      color: #dce6f6;
      backdrop-filter: blur(10px);
    }

    .hero-visual {
      position: relative;
      min-height: 620px;
      display: grid;
      align-items: center;
    }

    .frame {
      position: relative;
      border-radius: 34px;
      background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.12);
      padding: 24px;
      box-shadow: var(--shadow);
      overflow: hidden;
      animation: pulseBorder 5s ease-in-out infinite;
    }

    .frame::before {
      content: "";
      position: absolute;
      inset: -2px;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(216,179,106,0.45), rgba(115,223,255,0.25), rgba(138,125,255,0.25));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .floating-card {
      position: absolute;
      border-radius: 22px;
      background: rgba(9, 15, 30, 0.88);
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 20px 50px rgba(0,0,0,0.35);
      padding: 18px;
      backdrop-filter: blur(16px);
    }

    .floating-card.small {
      width: 210px;
      animation: floatGlow 8s ease-in-out infinite;
    }

    .floating-card.top {
      top: 18px;
      right: -10px;
    }

    .floating-card.bottom {
      bottom: 20px;
      left: -14px;
      animation-delay: -3s;
    }

    .screen {
      position: relative;
      border-radius: 26px;
      min-height: 540px;
      background:
        radial-gradient(circle at top left, rgba(115,223,255,0.14), transparent 32%),
        linear-gradient(180deg, #0b1324 0%, #0d162a 100%);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 28px;
      overflow: hidden;
    }

    .screen::after {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      right: -90px;
      top: -80px;
      background: radial-gradient(circle, rgba(216,179,106,0.14), transparent 68%);
      pointer-events: none;
    }

    .screen-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
    }

    .dots {
      display: flex;
      gap: 8px;
    }

    .dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.16);
    }

    .screen-badge {
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(216,179,106,0.12);
      border: 1px solid rgba(216,179,106,0.16);
      color: #f0d59e;
      font-size: 0.82rem;
      font-weight: 700;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 16px;
    }

    .dash-panel {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .bars {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .bar span {
      display: block;
      width: 100%;
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      overflow: hidden;
      position: relative;
    }

    .bar span::after {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--gold), var(--cyan));
      animation: shimmer 4s linear infinite;
      background-size: 200% 100%;
    }

    .bar:nth-child(1) span::after { width: 82%; }
    .bar:nth-child(2) span::after { width: 68%; }
    .bar:nth-child(3) span::after { width: 91%; }

    section { padding: 34px 0 76px; position: relative; z-index: 1; }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 18px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .section-head h2 {
      margin: 0;
      font-family: 'Manrope', sans-serif;
      font-size: clamp(2rem, 3vw, 3rem);
      letter-spacing: -1px;
    }

    .section-head p {
      margin: 10px 0 0;
      color: var(--muted);
      max-width: 740px;
    }

    .services-grid,
    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .service-card,
    .why-card,
    .package-card,
    .cta-box {
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .service-card,
    .why-card {
      padding: 24px;
      transition: transform .3s ease, border-color .3s ease, background .3s ease;
    }

    .service-card:hover,
    .why-card:hover,
    .package-card:hover {
      transform: translateY(-6px);
      border-color: rgba(216,179,106,0.24);
      background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.06));
    }

    .icon {
      width: 62px;
      height: 62px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-size: 1.42rem;
      background: linear-gradient(135deg, rgba(216,179,106,0.18), rgba(115,223,255,0.12));
      border: 1px solid rgba(255,255,255,0.12);
      margin-bottom: 18px;
    }

    .service-card h3,
    .why-card h3,
    .package-card h3,
    .cta-box h3 {
      margin: 0 0 12px;
      font-size: 1.2rem;
    }

    .service-card p,
    .why-card p,
    .package-card p,
    .cta-box p {
      margin: 0;
      color: var(--muted);
    }

    .package-switcher {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 26px;
    }

    .switch-btn {
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      color: var(--text);
      background: rgba(255,255,255,0.04);
      font-weight: 800;
      cursor: pointer;
      transition: .28s ease;
    }

    .switch-btn.active,
    .switch-btn:hover {
      background: linear-gradient(135deg, rgba(216,179,106,0.25), rgba(115,223,255,0.16));
      border-color: rgba(216,179,106,0.28);
      color: #fff;
    }

    .packages-panel {
      display: none;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .packages-panel.active { display: grid; }

    .package-card {
      position: relative;
      padding: 0;
    }

    .package-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(216,179,106,0.08), transparent 38%);
      pointer-events: none;
    }

    .package-top {
      padding: 26px 24px 18px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .package-body {
      padding: 22px 24px 26px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 0.78rem;
      text-transform: uppercase;
      font-weight: 800;
      color: #f1d699;
      background: rgba(216,179,106,0.12);
      border: 1px solid rgba(216,179,106,0.16);
      letter-spacing: 0.5px;
      margin-bottom: 16px;
    }

    .price {
      display: flex;
      align-items: end;
      gap: 8px;
      margin: 16px 0 10px;
    }

    .price strong {
      font-size: 2.1rem;
      line-height: 1;
      font-family: 'Manrope', sans-serif;
    }

    .price span {
      color: var(--muted);
      font-size: 0.95rem;
      margin-bottom: 4px;
    }

    .feature-list {
      list-style: none;
      margin: 18px 0 24px;
      padding: 0;
      display: grid;
      gap: 12px;
    }

    .feature-list li {
      display: flex;
      gap: 10px;
      align-items: start;
      color: #e8eef8;
    }

    .feature-list li::before {
      content: "✦";
      color: var(--gold-2);
      margin-top: 1px;
    }

    .why-card {
      position: relative;
    }

    .why-card::after {
      content: "";
      position: absolute;
      inset: auto -40px -40px auto;
      width: 120px;
      height: 120px;
      background: radial-gradient(circle, rgba(115,223,255,0.12), transparent 70%);
      pointer-events: none;
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 22px;
      padding: 32px;
      background:
        radial-gradient(circle at right top, rgba(216,179,106,0.14), transparent 28%),
        radial-gradient(circle at left bottom, rgba(115,223,255,0.12), transparent 24%),
        linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
    }

    .cta-points {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .cta-point,
    .contact-row {
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      color: #e3ebf8;
    }

    .contact-panel {
      display: grid;
      gap: 12px;
      align-content: start;
    }

    .muted { color: var(--muted); }

    footer {
      padding: 18px 0 40px;
      color: var(--muted);
    }

    .whatsapp-widget {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 120;
      display: flex;
      align-items: end;
      gap: 12px;
    }

    .whatsapp-widget-card {
      max-width: 280px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(9, 15, 30, 0.92);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 20px 50px rgba(0,0,0,0.32);
      backdrop-filter: blur(16px);
      color: var(--text);
      transform: translateY(10px);
      opacity: 0;
      pointer-events: none;
      transition: .3s ease;
    }

    .whatsapp-widget.show .whatsapp-widget-card {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .whatsapp-widget-card strong {
      display: block;
      margin-bottom: 6px;
      font-size: 0.98rem;
    }

    .whatsapp-widget-card p {
      margin: 0;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.45;
    }

    .whatsapp-widget-actions {
      display: flex;
      gap: 8px;
      margin-top: 12px;
    }

    .whatsapp-widget-actions button,
    .whatsapp-widget-actions a {
      border: 0;
      border-radius: 999px;
      padding: 9px 12px;
      font-weight: 700;
      cursor: pointer;
      font-size: 0.84rem;
    }

    .whatsapp-widget-actions .open-chat {
      background: linear-gradient(135deg, #1bb454, #25d366);
      color: #fff;
    }

    .whatsapp-widget-actions .dismiss-chat {
      background: rgba(255,255,255,0.06);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .whatsapp-fab {
      width: 66px;
      height: 66px;
      border-radius: 50%;
      border: 0;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #1bb454, #25d366);
      box-shadow: 0 18px 40px rgba(37,211,102,0.32);
      cursor: pointer;
      transition: transform .28s ease, box-shadow .28s ease;
      position: relative;
    }

    .whatsapp-fab:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 22px 48px rgba(37,211,102,0.4);
    }

    .whatsapp-fab::before {
      content: "";
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 1px solid rgba(37,211,102,0.3);
      animation: whatsappPulse 2.2s infinite;
    }

    .whatsapp-fab svg {
      width: 30px;
      height: 30px;
      fill: #fff;
    }

    @keyframes whatsappPulse {
      0% { transform: scale(0.95); opacity: 0.9; }
      70% { transform: scale(1.18); opacity: 0; }
      100% { transform: scale(1.18); opacity: 0; }
    }

    @media (max-width: 760px) {
      .whatsapp-widget {
        right: 16px;
        bottom: 16px;
      }

      .whatsapp-widget-card {
        max-width: 230px;
      }

      .whatsapp-fab {
        width: 60px;
        height: 60px;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .cta-box,
      .packages-panel,
      .services-grid,
      .why-grid,
      .hero-highlights,
      .dashboard-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-visual { min-height: auto; }
      .floating-card.top { right: 0; }
      .floating-card.bottom { left: 0; }
    }

    @media (max-width: 760px) {
      .nav { padding: 14px 0; align-items: flex-start; }
      .nav-links { gap: 8px; }
      .hero { padding-top: 54px; }
      .hero-grid,
      .services-grid,
      .why-grid,
      .packages-panel,
      .cta-box,
      .hero-highlights,
      .dashboard-grid,
      .cta-points {
        grid-template-columns: 1fr;
      }

      .hero-actions { flex-direction: column; }
      .btn { width: 100%; }
      .floating-card { position: relative; inset: auto; width: 100% !important; margin-top: 14px; }
      .screen { min-height: auto; }
    }
