:root {
  --bg-0: #0b0b0b;
  --bg-1: #0f1218;
  --bg-2: #131a27;
      --surface: rgba(16, 27, 46, 0.56);
      --surface-strong: rgba(16, 27, 46, 0.72);
      --surface-soft: rgba(16, 27, 46, 0.4);
    --stroke: rgba(160, 176, 199, 0.22);
      --text: #ffffff;
    --muted: #b8c3d1;
    --primary: #1f8bff;
    --secondary: #102647;
    --highlight: #43dcff;
      --success: #27e38e;
      --success-soft: rgba(39, 227, 142, 0.12);
      --shadow: 0 22px 56px rgba(0, 0, 0, 0.48);
      --radius: 12px;
      --radius-sm: 10px;
      --header-height: 88px;
      --max-width: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--text);
      background:
        radial-gradient(72% 68% at 0% 0%, rgba(65, 105, 225, 0.12) 0%, rgba(65, 105, 225, 0.05) 34%, rgba(65, 105, 225, 0) 66%),
        radial-gradient(64% 62% at 100% 0%, rgba(65, 105, 225, 0.1) 0%, rgba(65, 105, 225, 0.04) 36%, rgba(65, 105, 225, 0) 70%),
        radial-gradient(68% 66% at 100% 100%, rgba(65, 105, 225, 0.08) 0%, rgba(65, 105, 225, 0.03) 34%, rgba(65, 105, 225, 0) 70%),
        radial-gradient(60% 58% at 0% 100%, rgba(65, 105, 225, 0.06) 0%, rgba(65, 105, 225, 0.025) 30%, rgba(65, 105, 225, 0) 66%),
        linear-gradient(180deg, #0b0b0b 0%, #0b0b0b 100%);
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(42% 34% at 12% 8%, rgba(65, 105, 225, 0.08), rgba(65, 105, 225, 0) 74%),
        radial-gradient(36% 30% at 88% 12%, rgba(65, 105, 225, 0.06), rgba(65, 105, 225, 0) 76%),
        radial-gradient(44% 34% at 90% 92%, rgba(65, 105, 225, 0.055), rgba(65, 105, 225, 0) 76%),
        radial-gradient(34% 28% at 10% 90%, rgba(65, 105, 225, 0.04), rgba(65, 105, 225, 0) 78%);
      opacity: 0.4;
      filter: blur(24px);
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background:
        radial-gradient(58% 52% at 0% 0%, rgba(65, 105, 225, 0.085), rgba(65, 105, 225, 0) 70%),
        radial-gradient(50% 44% at 100% 0%, rgba(65, 105, 225, 0.075), rgba(65, 105, 225, 0) 72%),
        radial-gradient(56% 50% at 100% 100%, rgba(65, 105, 225, 0.06), rgba(65, 105, 225, 0) 74%);
      filter: blur(34px);
      opacity: 0.36;
      animation: ambientShine 20s ease-in-out infinite alternate;
    }

    @keyframes ambientShine {
      0% {
        transform: translate3d(-2%, 0, 0) scale(1);
      }
      100% {
        transform: translate3d(3%, 2%, 0) scale(1.08);
      }
    }

    body.modal-open,
    body.nav-open {
      overflow: hidden;
    }

    main,
    footer {
      position: relative;
      z-index: 1;
    }

    ::selection {
      background: rgba(67, 220, 255, 0.26);
      color: #fff;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
      color: inherit;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    h1,
    h2,
    h3,
    h4 {
      margin: 0;
      font-family: 'Poppins', 'Inter', sans-serif;
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
    }

    ul,
    ol {
      margin: 0;
      padding: 0;
    }

    section {
      position: relative;
      scroll-margin-top: 108px;
    }

    :focus-visible {
      outline: 2px solid var(--highlight);
      outline-offset: 3px;
    }

    .skip-link {
      position: absolute;
      top: -48px;
      left: 16px;
      z-index: 2000;
      padding: 12px 16px;
      border-radius: 14px;
      background: #fff;
      color: #04111d;
      font-weight: 700;
      transition: top 0.2s ease;
    }

    .skip-link:focus {
      top: 16px;
    }

    .container {
      width: min(var(--max-width), calc(100% - 32px));
      margin: 0 auto;
    }

    .glass {
      background: linear-gradient(180deg, rgba(16, 27, 46, 0.76), rgba(12, 21, 38, 0.6));
      border: 1px solid var(--stroke);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(157, 189, 244, 0.08);
      border: 1px solid rgba(157, 189, 244, 0.16);
      color: var(--highlight);
      font-size: 0.92rem;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 6px rgba(96, 130, 198, 0.12);
      flex: 0 0 auto;
    }

    .section {
      padding: 120px 0;
    }

    .section-head {
      max-width: 780px;
      margin: 0 auto 48px;
      text-align: center;
    }

    .section-head h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      margin-bottom: 16px;
    }

    .section-head p {
      font-size: 1.04rem;
    }

    .keyword-pop {
      color: #90d8ff;
      font-weight: 800;
      text-shadow: 0 0 14px rgba(67, 220, 255, 0.22);
    }

    .keyword-shift {
      display: inline-block;
      font-weight: 800;
      background: linear-gradient(120deg, #78bfff, #43dcff, #78bfff);
      background-size: 180% 180%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: keywordShift 16s linear infinite;
    }

    @keyframes keywordShift {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 24px;
      border-radius: 12px;
      border: 1px solid transparent;
      cursor: pointer;
      font-weight: 800;
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
      white-space: nowrap;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
    }

    .btn-primary {
      color: #f7fcff;
      background: linear-gradient(135deg, #0b5bd7, #22d3ee);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      box-shadow: 0 18px 34px rgba(31, 139, 255, 0.28);
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(16, 27, 46, 0.52);
      border-color: var(--stroke);
    }

    .btn.btn-login-cta {
      color: #f7fcff;
      background: linear-gradient(135deg, #0a4ec2, #27d8ff);
      border-color: rgba(67, 220, 255, 0.62);
      box-shadow:
        0 0 0 1px rgba(67, 220, 255, 0.28),
        0 18px 34px rgba(31, 139, 255, 0.36);
      animation: loginCtaPulse 2.8s ease-in-out infinite;
    }

    .btn.btn-login-cta:hover,
    .btn.btn-login-cta:focus-visible {
      transform: translateY(-3px);
      box-shadow:
        0 0 0 1px rgba(67, 220, 255, 0.36),
        0 22px 38px rgba(31, 139, 255, 0.44);
    }

    @keyframes loginCtaPulse {
      0%,
      100% {
        box-shadow:
          0 0 0 1px rgba(67, 220, 255, 0.24),
          0 16px 30px rgba(31, 139, 255, 0.3);
      }
      50% {
        box-shadow:
          0 0 0 1px rgba(67, 220, 255, 0.38),
          0 24px 42px rgba(31, 139, 255, 0.46);
      }
    }

    .btn-card {
      width: 100%;
      margin-top: 22px;
    }

    .pill-note {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(96, 130, 198, 0.12);
      border: 1px solid rgba(157, 189, 244, 0.18);
      color: var(--highlight);
      font-size: 0.88rem;
      font-weight: 700;
    }

    .pill-note::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
    }

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

    .js-enabled .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .js-enabled .reveal.in-view {
      opacity: 1;
      transform: none;
    }

    .bg-bubbles {
      position: fixed;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }

    .bg-bubbles span {
      position: absolute;
      bottom: -140px;
      border-radius: 50%;
      background: radial-gradient(circle at 30% 30%, rgba(67, 220, 255, 0.42), rgba(31, 139, 255, 0.12) 45%, rgba(31, 139, 255, 0) 70%);
      opacity: 0;
      animation: bubbleFloat linear infinite;
      filter: blur(0.2px);
    }

    .bg-bubbles span:nth-child(1) { left: 6%; width: 18px; height: 18px; animation-duration: 18s; animation-delay: 0s; }
    .bg-bubbles span:nth-child(2) { left: 13%; width: 30px; height: 30px; animation-duration: 28s; animation-delay: 4s; }
    .bg-bubbles span:nth-child(3) { left: 22%; width: 12px; height: 12px; animation-duration: 16s; animation-delay: 9s; }
    .bg-bubbles span:nth-child(4) { left: 31%; width: 38px; height: 38px; animation-duration: 26s; animation-delay: 2s; }
    .bg-bubbles span:nth-child(5) { left: 39%; width: 22px; height: 22px; animation-duration: 20s; animation-delay: 5s; }
    .bg-bubbles span:nth-child(6) { left: 47%; width: 14px; height: 14px; animation-duration: 17s; animation-delay: 7s; }
    .bg-bubbles span:nth-child(7) { left: 54%; width: 28px; height: 28px; animation-duration: 24s; animation-delay: 11s; }
    .bg-bubbles span:nth-child(8) { left: 61%; width: 42px; height: 42px; animation-duration: 30s; animation-delay: 6s; }
    .bg-bubbles span:nth-child(9) { left: 67%; width: 16px; height: 16px; animation-duration: 18s; animation-delay: 1s; }
    .bg-bubbles span:nth-child(10) { left: 73%; width: 26px; height: 26px; animation-duration: 27s; animation-delay: 12s; }
    .bg-bubbles span:nth-child(11) { left: 79%; width: 12px; height: 12px; animation-duration: 14s; animation-delay: 8s; }
    .bg-bubbles span:nth-child(12) { left: 85%; width: 34px; height: 34px; animation-duration: 29s; animation-delay: 3s; }
    .bg-bubbles span:nth-child(13) { left: 90%; width: 18px; height: 18px; animation-duration: 19s; animation-delay: 10s; }
    .bg-bubbles span:nth-child(14) { left: 95%; width: 44px; height: 44px; animation-duration: 33s; animation-delay: 13s; }
    .bg-bubbles span:nth-child(15) { left: 26%; width: 52px; height: 52px; animation-duration: 36s; animation-delay: 15s; }
    .bg-bubbles span:nth-child(16) { left: 58%; width: 58px; height: 58px; animation-duration: 38s; animation-delay: 18s; }
    .bg-bubbles span:nth-child(17) { left: 74%; width: 48px; height: 48px; animation-duration: 35s; animation-delay: 20s; }
    .bg-bubbles span:nth-child(18) { left: 10%; width: 46px; height: 46px; animation-duration: 31s; animation-delay: 17s; }

    @keyframes bubbleFloat {
      0% {
        transform: translateY(0) scale(0.65);
        opacity: 0;
      }
      12% {
        opacity: 0.42;
      }
      100% {
        transform: translateY(-125vh) scale(1.2);
        opacity: 0;
      }
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 16px 0;
    }

    .nav-shell {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 14px 18px;
      border-radius: 999px;
      background: rgba(15, 23, 39, 0.74);
      border: 1px solid rgba(157, 189, 244, 0.12);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .brand-mark {
      display: inline-grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 15px;
      background: linear-gradient(135deg, rgba(96, 130, 198, 0.3), rgba(157, 189, 244, 0.12));
      border: 1px solid rgba(157, 189, 244, 0.18);
      color: var(--highlight);
      font-weight: 800;
      font-family: 'Poppins', sans-serif;
      letter-spacing: 0.04em;
      box-shadow: inset 0 0 24px rgba(157, 189, 244, 0.06);
    }

    .brand-text {
      display: flex;
      align-items: baseline;
      gap: 2px;
      font-family: 'Poppins', sans-serif;
      font-weight: 800;
      letter-spacing: 0.08em;
      font-size: 1.06rem;
    }

    .brand-text strong {
      color: var(--highlight);
      font-weight: 800;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 26px;
      margin-left: auto;
    }

    .desktop-nav a {
      position: relative;
      color: var(--muted);
      font-weight: 700;
      transition: color 0.2s ease;
    }

    .desktop-nav a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--primary), transparent);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.2s ease;
    }

    .desktop-nav a:hover,
    .desktop-nav a:focus-visible {
      color: var(--text);
    }

    .desktop-nav a:hover::after,
    .desktop-nav a:focus-visible::after {
      transform: scaleX(1);
    }

    .desktop-nav a.nav-login-highlight {
      padding: 8px 12px;
      border-radius: 10px;
      color: #f7fcff;
      border: 1px solid rgba(67, 220, 255, 0.5);
      background: linear-gradient(135deg, rgba(10, 78, 194, 0.38), rgba(39, 216, 255, 0.2));
      box-shadow: 0 10px 20px rgba(31, 139, 255, 0.18);
    }

    .desktop-nav a.nav-login-highlight::after {
      display: none;
    }

    .desktop-nav a.nav-login-highlight:hover,
    .desktop-nav a.nav-login-highlight:focus-visible {
      color: #ffffff;
      border-color: rgba(67, 220, 255, 0.68);
      background: linear-gradient(135deg, rgba(10, 78, 194, 0.48), rgba(39, 216, 255, 0.3));
      box-shadow: 0 14px 26px rgba(31, 139, 255, 0.26);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .currency-pill {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-width: 156px;
      padding: 4px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      overflow: hidden;
    }

    .currency-pill::before {
      content: '';
      position: absolute;
      top: 4px;
      left: 4px;
      width: calc(50% - 4px);
      height: calc(100% - 8px);
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(96, 130, 198, 0.95), rgba(157, 189, 244, 0.8));
      transform: translateX(var(--toggle-shift, 0));
      transition: transform 0.25s ease;
      box-shadow: 0 10px 20px rgba(96, 130, 198, 0.18);
    }

    .currency-pill[data-currency='USDT']::before {
      transform: translateX(100%);
    }

    .currency-pill button {
      position: relative;
      z-index: 1;
      padding: 10px 14px;
      border: 0;
      background: none;
      cursor: pointer;
      font-weight: 800;
      color: var(--muted);
      border-radius: 999px;
      transition: color 0.2s ease;
    }

    .currency-pill button.active {
      color: #03111e;
    }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.06);
      cursor: pointer;
      padding: 0;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      margin: 4px auto;
      background: var(--text);
      border-radius: 999px;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    body.nav-open .menu-toggle span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    body.nav-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    body.nav-open .menu-toggle span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .mobile-overlay {
      position: fixed;
      inset: 0;
      background: rgba(2, 7, 12, 0.64);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
      z-index: 980;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      width: min(86vw, 360px);
      height: 100vh;
      padding: 102px 24px 28px;
      background: rgba(6, 17, 29, 0.94);
      border-left: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: -20px 0 50px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 990;
    }

    body.nav-open .mobile-overlay {
      opacity: 1;
      visibility: visible;
    }

    body.nav-open .mobile-drawer {
      transform: translateX(0);
    }

    .mobile-nav {
      display: grid;
      gap: 10px;
    }

    .mobile-nav a {
      padding: 16px 18px;
      border-radius: 16px;
      color: var(--text);
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-weight: 700;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .mobile-nav a:hover,
    .mobile-nav a:focus-visible {
      transform: translateX(4px);
      border-color: rgba(157, 189, 244, 0.22);
    }

    .mobile-nav a.nav-login-highlight {
      border-color: rgba(67, 220, 255, 0.5);
      background: linear-gradient(135deg, rgba(10, 78, 194, 0.4), rgba(39, 216, 255, 0.22));
      color: #ffffff;
      box-shadow: 0 12px 24px rgba(31, 139, 255, 0.22);
    }

    .mobile-nav a.nav-login-highlight:hover,
    .mobile-nav a.nav-login-highlight:focus-visible {
      border-color: rgba(67, 220, 255, 0.68);
      background: linear-gradient(135deg, rgba(10, 78, 194, 0.5), rgba(39, 216, 255, 0.3));
    }

    .mobile-meta {
      margin-top: 22px;
      padding: 18px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-meta strong {
      display: block;
      margin-bottom: 8px;
    }

    .hero {
      min-height: 100vh;
      padding: 168px 0 138px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 16% 18%, rgba(67, 220, 255, 0.08), transparent 22%),
        radial-gradient(circle at 80% 18%, rgba(31, 139, 255, 0.12), transparent 28%),
        linear-gradient(160deg, rgba(11, 18, 31, 0.88), rgba(8, 14, 26, 0.66));
      z-index: 0;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
      gap: 32px;
      align-items: center;
    }

    .hero-copy h1 {
      font-size: clamp(2.8rem, 6vw, 5rem);
      margin-bottom: 18px;
    }

    .hero-copy p {
      max-width: 720px;
      font-size: 1.12rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 32px 0 28px;
    }

    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .trust-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 12px;
      background: rgba(16, 27, 46, 0.52);
      border: 1px solid var(--stroke);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      font-weight: 700;
    }

    .trust-badge .emoji {
      font-size: 1rem;
    }

    .hero-panel {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 12px;
    }

    .hero-panel::after {
      content: '';
      position: absolute;
      width: 240px;
      height: 240px;
      right: -40px;
      bottom: -80px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(96, 130, 198, 0.28), transparent 68%);
      pointer-events: none;
    }

    .hero-panel-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
    }

    .hero-panel h2 {
      font-size: 1.7rem;
      margin-top: 14px;
      margin-bottom: 10px;
    }

    .hero-panel p {
      max-width: 480px;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin: 24px 0;
    }

    .metric-card {
      padding: 18px;
      border-radius: 12px;
      background: rgba(16, 27, 46, 0.48);
      border: 1px solid var(--stroke);
    }

    .metric-card strong {
      display: block;
      margin-bottom: 6px;
      color: var(--highlight);
      font-size: 1.7rem;
      font-family: 'Poppins', sans-serif;
    }

    .metric-card span {
      color: var(--muted);
      font-weight: 600;
    }

    .hero-stack {
      display: grid;
      gap: 12px;
    }

    .stack-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 12px;
      background: rgba(16, 27, 46, 0.5);
      border: 1px solid var(--stroke);
      color: var(--muted);
      font-weight: 600;
    }

    .stack-item strong {
      color: var(--text);
      font-size: 1.05rem;
    }

    .hero-waves,
    .section-wave {
      position: absolute;
      left: 0;
      right: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }

    .hero-waves {
      bottom: -1px;
      height: 150px;
    }

    .section-wave {
      top: -34px;
      height: 100px;
    }

    .hero-waves .wave,
    .section-wave .wave {
      position: absolute;
      left: -22%;
      width: 144%;
      border-radius: 43%;
      animation: waveDrift linear infinite;
    }

    .hero-waves .wave {
      height: 150px;
      bottom: -92px;
      background: rgba(157, 189, 244, 0.12);
      animation-duration: 20s;
    }

    .hero-waves .wave.wave-2 {
      height: 170px;
      bottom: -106px;
      background: rgba(96, 130, 198, 0.14);
      opacity: 0.55;
      animation-duration: 28s;
    }

    .hero-waves .wave.wave-3 {
      height: 190px;
      bottom: -118px;
      background: rgba(157, 189, 244, 0.08);
      opacity: 0.3;
      animation-duration: 34s;
      animation-direction: reverse;
    }

    .section-wave .wave {
      height: 110px;
      top: 14px;
      background: rgba(96, 130, 198, 0.08);
      animation-duration: 26s;
    }

    .section-wave .wave.wave-2 {
      top: 28px;
      opacity: 0.42;
      background: rgba(157, 189, 244, 0.08);
      animation-duration: 34s;
      animation-direction: reverse;
    }

    @keyframes waveDrift {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-10%);
      }
    }

    .service-tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 34px;
      padding: 10px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(12, 21, 37, 0.94), rgba(10, 18, 32, 0.9));
      border: 1px solid var(--stroke);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 14px 30px rgba(0, 0, 0, 0.24);
    }

    .service-tab {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 20px;
      border-radius: 10px;
      border: 1px solid var(--stroke);
      background: linear-gradient(180deg, rgba(17, 30, 52, 0.74), rgba(11, 21, 38, 0.78));
      color: rgba(246, 251, 255, 0.94);
      cursor: pointer;
      font-weight: 800;
      letter-spacing: 0.01em;
      text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
      transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
    }

    .service-tab:hover,
    .service-tab:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(67, 220, 255, 0.34);
      background: linear-gradient(180deg, rgba(22, 42, 72, 0.86), rgba(11, 26, 46, 0.84));
      color: var(--text);
      box-shadow: 0 12px 24px rgba(2, 9, 15, 0.42);
    }

    .service-tab.active {
      color: #f7fcff;
      background: linear-gradient(135deg, #0b5bd7, #22d3ee);
      border-color: rgba(67, 220, 255, 0.55);
      box-shadow: 0 16px 30px rgba(31, 139, 255, 0.24);
      text-shadow: none;
    }

    .pricing-panel {
      display: none;
    }

    .pricing-panel.active {
      display: block;
      animation: fadeUp 0.35s ease;
    }

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

    .provider-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 24px 26px;
      border-radius: 12px;
      margin-bottom: 26px;
    }

    .provider-banner h3 {
      margin-top: 14px;
      font-size: 1.9rem;
      margin-bottom: 12px;
    }

    .provider-banner p {
      max-width: 640px;
    }

    .provider-summary {
      max-width: 360px;
      width: 100%;
      padding: 18px;
      border-radius: 12px;
      background: rgba(16, 27, 46, 0.5);
      border: 1px solid var(--stroke);
    }

    .provider-summary strong {
      display: block;
      margin-bottom: 6px;
      font-size: 1.1rem;
    }

    .provider-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(96, 130, 198, 0.12);
      border: 1px solid rgba(157, 189, 244, 0.18);
      color: var(--highlight);
      font-size: 0.84rem;
      font-weight: 800;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 22px;
    }

    .pricing-card {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 12px;
      transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      border-color: rgba(67, 220, 255, 0.24);
      box-shadow: 0 26px 58px rgba(0, 0, 0, 0.28);
    }

    .pricing-card.popular {
      border-color: rgba(67, 220, 255, 0.3);
      box-shadow: 0 26px 58px rgba(31, 139, 255, 0.14), var(--shadow);
    }

    .pricing-ribbon {
      position: absolute;
      top: 18px;
      right: -42px;
      padding: 8px 44px;
      background: linear-gradient(135deg, var(--primary), var(--highlight));
      color: #f7fcff;
      transform: rotate(34deg);
      font-size: 0.78rem;
      font-weight: 900;
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
      z-index: 1;
    }

    .card-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .card-head h3 {
      font-size: 1.62rem;
      margin-top: 12px;
    }

    .provider-pill {
      display: inline-flex;
      align-items: center;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--highlight);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .plan-type-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 12px;
      border-radius: 14px;
      background: rgba(157, 189, 244, 0.08);
      border: 1px solid rgba(157, 189, 244, 0.12);
      color: var(--muted);
      font-size: 0.82rem;
      font-weight: 700;
      min-width: 92px;
      text-align: center;
    }

    .spec-list {
      list-style: none;
      display: grid;
      gap: 14px;
    }

    .spec-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .spec-label {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-weight: 700;
    }

    .spec-icon {
      width: 18px;
      height: 18px;
      color: var(--highlight);
      flex: 0 0 auto;
    }

    .spec-value {
      font-weight: 800;
      color: var(--text);
      text-align: right;
    }

    .price-stack {
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }

    .price-row {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 10px;
      background: rgba(16, 27, 46, 0.48);
      border: 1px solid var(--stroke);
    }

    .price-row small {
      display: block;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .price-row strong {
      font-size: 1.2rem;
      color: var(--text);
    }

    .price-note {
      padding: 14px 16px;
      border-radius: 10px;
      background: rgba(16, 27, 46, 0.44);
      border: 1px solid rgba(160, 176, 199, 0.18);
      color: var(--muted);
      font-weight: 700;
    }

    .map-card {
      padding: 22px;
      border-radius: 12px;
    }

    .map-toolbar {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 20px;
    }

    .legend-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .legend-chip {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: var(--muted);
      font-weight: 700;
      font-size: 0.9rem;
    }

    .legend-chip .swatch {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 8px rgba(96, 130, 198, 0.12);
      flex: 0 0 auto;
    }

    .world-map-shell {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      border: 1px solid var(--stroke);
      background: linear-gradient(180deg, rgba(12, 21, 37, 0.92), rgba(10, 18, 32, 0.94));
    }

    #worldMap {
      width: 100%;
      height: auto;
      aspect-ratio: 2 / 1;
    }

    .map-bg {
      fill: url(#oceanGradient);
    }

    #mapGrid line {
      stroke: rgba(157, 189, 244, 0.08);
      stroke-width: 0.8;
      vector-effect: non-scaling-stroke;
    }

    #mapLand path {
      fill: rgba(96, 130, 198, 0.14);
      stroke: rgba(157, 189, 244, 0.24);
      stroke-width: 0.48;
      vector-effect: non-scaling-stroke;
    }

    .map-marker {
      cursor: pointer;
    }

    .map-marker .marker-ring {
      fill: none;
      stroke: rgba(96, 130, 198, 0.58);
      stroke-width: 1.5;
      transform-box: fill-box;
      transform-origin: center;
      animation: markerPulse 2.8s ease-out infinite;
      animation-delay: var(--pulse-delay, 0s);
      vector-effect: non-scaling-stroke;
    }

    .map-marker .marker-core {
      fill: #1f8bff;
      stroke: #c7f6ff;
      stroke-width: 1;
      vector-effect: non-scaling-stroke;
    }

    .map-marker:hover .marker-core,
    .map-marker:focus-visible .marker-core {
      fill: #43dcff;
    }

    @keyframes markerPulse {
      0% {
        transform: scale(0.7);
        opacity: 0.92;
      }
      72% {
        transform: scale(2.15);
        opacity: 0;
      }
      100% {
        opacity: 0;
      }
    }

    .map-tooltip {
      position: absolute;
      min-width: 172px;
      max-width: 220px;
      padding: 14px 16px;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(16, 27, 46, 0.88), rgba(12, 21, 38, 0.76));
      border: 1px solid var(--stroke);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      transform: translate(-50%, -110%) scale(0.96);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 3;
    }

    .map-tooltip.visible {
      opacity: 1;
      transform: translate(-50%, -118%) scale(1);
    }

    .map-tooltip strong {
      display: block;
      font-family: 'Poppins', sans-serif;
      margin-bottom: 4px;
    }

    .map-tooltip span {
      display: block;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.55;
    }

    .location-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 18px;
      margin-top: 26px;
    }

    .location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 12px;
}

.location-card-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.location-card-main strong {
  font-size: 1.04rem;
  line-height: 1.2;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--success-soft);
  border: 1px solid rgba(39, 227, 142, 0.18);
  color: #c5fbe0;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
  justify-self: end;
  align-self: center;
}

@media (max-width: 720px) {
  .location-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .status-chip {
    justify-self: start;
  }
}

    .location-card-main strong {
      font-size: 1.04rem;
    }

    .location-code {
      color: var(--highlight);
      font-weight: 800;
      font-size: 0.92rem;
    }

    .location-country {
      font-size: 0.92rem;
    }

    .status-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--success-soft);
      border: 1px solid rgba(39, 227, 142, 0.18);
      color: #c5fbe0;
      font-size: 0.84rem;
      font-weight: 800;
      flex-shrink: 0;
    }

    .status-chip::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 0 6px rgba(39, 227, 142, 0.12);
      flex: 0 0 auto;
    }

    .payment-grid,
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .payment-card,
    .contact-card {
      padding: 30px;
      border-radius: 12px;
    }

    .payment-icon,
    .contact-icon {
      display: inline-grid;
      place-items: center;
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: rgba(96, 130, 198, 0.12);
      border: 1px solid rgba(157, 189, 244, 0.18);
      font-size: 1.7rem;
      margin-bottom: 16px;
    }

    .payment-card h3,
    .contact-card strong {
      display: block;
      font-size: 1.38rem;
      margin-bottom: 10px;
    }

    .payment-list {
      list-style: none;
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }

    .payment-list li {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 10px;
      background: rgba(16, 27, 46, 0.48);
      border: 1px solid var(--stroke);
    }

    .payment-list span:last-child {
      text-align: right;
      font-weight: 700;
      color: var(--text);
      word-break: break-word;
    }

    .mini-copy {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
      padding: 10px 14px;
      border-radius: 10px;
      border: 1px solid var(--stroke);
      background: rgba(16, 27, 46, 0.5);
      cursor: pointer;
      font-weight: 800;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .mini-copy:hover,
    .mini-copy:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(157, 189, 244, 0.28);
    }

    .note-text {
      margin-top: 16px;
      font-size: 0.95rem;
    }

    .contact-card {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .contact-card:hover,
    .contact-card:focus-visible {
      transform: translateY(-6px);
      border-color: rgba(157, 189, 244, 0.24);
    }

    .contact-content span {
      display: inline-block;
      margin-top: 8px;
      color: var(--highlight);
      font-weight: 800;
    }

    .faq-list {
      display: grid;
      gap: 16px;
      max-width: 960px;
      margin: 0 auto;
    }

    .faq-item {
      overflow: hidden;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(16, 27, 46, 0.74), rgba(12, 21, 38, 0.62));
      border: 1px solid var(--stroke);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
      padding: 22px 24px;
      background: none;
      border: 0;
      cursor: pointer;
      font-weight: 800;
      color: var(--text);
    }

    .faq-icon {
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 1.1rem;
      transition: transform 0.25s ease, background 0.25s ease;
      flex: 0 0 auto;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      background: rgba(96, 130, 198, 0.12);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      border-top: 1px solid transparent;
    }

    .faq-item.active .faq-answer {
      border-top-color: rgba(255, 255, 255, 0.08);
    }

    .faq-answer p {
      padding: 0 24px 22px;
    }

    .site-footer {
      position: relative;
      z-index: 1;
      padding: 44px 0 36px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(10, 18, 32, 0.68);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 0.8fr;
      gap: 24px;
    }

    .footer-brand p {
      margin-top: 16px;
      max-width: 460px;
    }

    .footer-title {
      color: var(--highlight);
      font-weight: 800;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--muted);
      font-weight: 700;
      transition: color 0.2s ease;
    }

    .footer-links a:hover,
    .footer-links a:focus-visible {
      color: var(--text);
    }

    .footer-status {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 999px;
      background: var(--success-soft);
      border: 1px solid rgba(39, 227, 142, 0.18);
      color: #d8ffea;
      font-weight: 800;
      margin-top: 18px;
    }

    .footer-status::before {
      content: '';
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--success);
      box-shadow: 0 0 0 8px rgba(39, 227, 142, 0.12);
      flex: 0 0 auto;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .toast {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 1300;
      padding: 14px 18px;
      border-radius: 10px;
      background: rgba(10, 18, 32, 0.92);
      border: 1px solid var(--stroke);
      box-shadow: var(--shadow);
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.25s ease, transform 0.25s ease;
      pointer-events: none;
    }

    .toast.show {
      opacity: 1;
      transform: none;
    }

    .modal-backdrop {
      position: fixed;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 20px;
      background: rgba(2, 7, 12, 0.72);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
      z-index: 1200;
    }

    .modal-backdrop.visible {
      opacity: 1;
      visibility: visible;
    }

    .order-modal {
      position: relative;
      width: min(960px, 100%);
      max-height: min(92vh, 920px);
      overflow: hidden;
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(12, 21, 37, 0.97), rgba(10, 18, 32, 0.97));
      border: 1px solid var(--stroke);
      box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
      transform: translateY(18px) scale(0.985);
      transition: transform 0.25s ease;
    }

    .modal-backdrop.visible .order-modal {
      transform: none;
    }

    .modal-scroll {
      max-height: inherit;
      overflow: auto;
      padding: 34px;
    }

    .modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.06);
      cursor: pointer;
      font-size: 1.25rem;
    }

    .modal-header {
      padding-right: 54px;
      margin-bottom: 24px;
    }

    .modal-header h3 {
      margin-top: 16px;
      margin-bottom: 10px;
      font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .modal-summary-panel {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 20px;
      margin-bottom: 24px;
    }

    .summary-plan,
    .total-card,
    .step-card {
      padding: 22px;
      border-radius: 12px;
      background: rgba(16, 27, 46, 0.52);
      border: 1px solid var(--stroke);
    }

    .summary-plan p {
      margin-top: 12px;
    }

    .summary-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 18px;
    }

    .summary-mini {
      min-width: 120px;
      padding: 12px 14px;
      border-radius: 10px;
      background: rgba(16, 27, 46, 0.48);
      border: 1px solid var(--stroke);
    }

    .summary-mini span {
      display: block;
      color: var(--muted);
      font-size: 0.84rem;
      margin-bottom: 6px;
    }

    .summary-mini strong {
      font-size: 1rem;
    }

    .total-card {
      background: linear-gradient(135deg, rgba(11, 91, 215, 0.32), rgba(34, 211, 238, 0.18));
      border-color: rgba(67, 220, 255, 0.28);
    }

    .total-card strong {
      display: block;
      margin-top: 10px;
      font-size: clamp(1.8rem, 4vw, 2.4rem);
    }

    .total-card small {
      display: block;
      margin-top: 8px;
      color: rgba(246, 251, 255, 0.74);
      line-height: 1.6;
    }

    .total-meta {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .total-meta div {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-top: 10px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(246, 251, 255, 0.84);
      font-size: 0.95rem;
    }

    .order-steps {
      display: grid;
      gap: 18px;
    }

    .step-head {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 18px;
    }

    .step-number {
      display: inline-grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(11, 91, 215, 0.34), rgba(34, 211, 238, 0.24));
      color: var(--highlight);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .step-head h4 {
      font-size: 1.18rem;
      margin-bottom: 4px;
    }

    .select-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 12px;
    }

    .location-select-grid {
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    }

    .select-card {
      width: 100%;
      padding: 16px;
      border-radius: 10px;
      border: 1px solid var(--stroke);
      background: rgba(16, 27, 46, 0.48);
      text-align: left;
      cursor: pointer;
      transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
    }

    .select-card:hover,
    .select-card:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(157, 189, 244, 0.18);
    }

    .select-card.active {
      background: linear-gradient(180deg, rgba(11, 91, 215, 0.28), rgba(34, 211, 238, 0.14));
      border-color: rgba(67, 220, 255, 0.32);
      box-shadow: 0 12px 24px rgba(31, 139, 255, 0.14);
    }

    .select-card.disabled,
    .select-card:disabled {
      opacity: 0.58;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .select-card.disabled:hover,
    .select-card:disabled:hover,
    .select-card.disabled:focus-visible,
    .select-card:disabled:focus-visible {
      transform: none;
      border-color: rgba(255, 255, 255, 0.08);
    }

    .select-card strong {
      display: block;
      margin-top: 6px;
      font-size: 1.04rem;
    }

    .select-card small {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      line-height: 1.55;
    }

    .select-card.fixed {
      cursor: default;
    }

    .payment-detail-box {
      margin-top: 14px;
      padding: 18px;
      border-radius: 10px;
      background: rgba(16, 27, 46, 0.48);
      border: 1px solid var(--stroke);
    }

    .payment-detail-box ul {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .payment-detail-box li {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 12px;
      border-radius: 10px;
      background: rgba(16, 27, 46, 0.42);
    }

    .payment-detail-box li span:last-child {
      text-align: right;
      font-weight: 700;
      color: var(--text);
      word-break: break-word;
    }

    .checkout-actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 16px;
    }

    .checkout-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px;
      border-radius: 10px;
      background: linear-gradient(135deg, #0b5bd7, #22d3ee);
      border: 1px solid rgba(67, 220, 255, 0.36);
      font-weight: 900;
      transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    }

    .checkout-link:hover,
    .checkout-link:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(31, 139, 255, 0.22);
    }

    .checkout-link.disabled {
      opacity: 0.48;
      pointer-events: none;
      filter: saturate(0.5);
    }

    .helper-note {
      margin-top: 12px;
      font-size: 0.92rem;
      color: var(--muted);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      margin: -1px;
      padding: 0;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
      white-space: nowrap;
    }

    @media (max-width: 1080px) {
      .hero {
        min-height: auto;
      }

      .hero-grid,
      .modal-summary-panel {
        grid-template-columns: 1fr;
      }

      .provider-banner {
        flex-direction: column;
        align-items: stretch;
      }
    }

    @media (max-width: 900px) {
      .desktop-nav {
        display: none;
      }

      .menu-toggle {
        display: inline-block;
      }

      .section {
        padding: 104px 0;
      }

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

    @media (max-width: 760px) {
      .container {
        width: min(var(--max-width), calc(100% - 24px));
      }

      .nav-shell {
        padding: 12px 14px;
        gap: 10px;
      }

      .currency-pill {
        min-width: 124px;
      }

      .currency-pill button {
        padding: 9px 12px;
      }

      .hero {
        padding-top: 144px;
        padding-bottom: 114px;
      }

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

      .hero-metrics,
      .payment-grid,
      .contact-grid,
      .location-grid,
      .pricing-grid,
      .checkout-actions {
        grid-template-columns: 1fr;
      }

      .map-toolbar {
        flex-direction: column;
      }

      .modal-scroll {
        padding: 22px;
      }

      .select-grid,
      .location-select-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    @media (max-width: 560px) {
      .brand-text {
        font-size: 0.88rem;
        letter-spacing: 0.04em;
      }

      .nav-actions {
        gap: 8px;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }

      .trust-badge,
      .service-tab {
        width: 100%;
        justify-content: center;
      }

      .price-row {
        align-items: flex-start;
        flex-direction: column;
      }

      .card-head {
        flex-direction: column;
      }
    }

    @media (max-width: 420px) {
      .nav-shell {
        padding: 10px 12px;
      }

      .brand {
        gap: 8px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
      }

      .brand-text {
        font-size: 0.8rem;
      }

      .currency-pill {
        min-width: 108px;
      }

      .currency-pill button {
        padding: 8px 10px;
        font-size: 0.82rem;
      }

      .menu-toggle {
        width: 44px;
        height: 44px;
      }
    }

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

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

      .btn.btn-login-cta {
        animation: none;
      }
        transition-duration: 0.01ms !important;
      }

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