:root {
  --ink: #f8fbff;
  --muted: #aab5cd;
  --paper: #070a16;
  --panel: rgba(13, 18, 36, 0.78);
  --panel-strong: rgba(16, 22, 44, 0.94);
  --blue: #4d7cff;
  --cyan: #20d7ff;
  --violet: #a855f7;
  --lime: #c7ff4d;
  --danger: #c52642;
  --line: rgba(184, 198, 255, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(77, 124, 255, 0.18), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(168, 85, 247, 0.16), transparent 32%),
    var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
a,
select,
input {
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 950;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(7, 10, 22, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.header-tools,
.language-switch,
.language-switcher,
.language-buttons,
.hero-actions,
.trust-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 950;
  color: #fff;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 12px 32px rgba(52, 87, 255, 0.32);
}

.main-nav {
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: #c6d0ea;
  font-weight: 800;
}

.main-nav a:hover {
  color: #fff;
}

.header-tools {
  gap: 10px;
}

.language-switcher {
  justify-content: end;
  justify-self: end;
}

.language-buttons {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.language-buttons button {
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 950;
  cursor: pointer;
}

.language-buttons button.is-active {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
}

#languageSelect {
  display: none;
  width: auto;
  min-height: 42px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid rgba(184, 198, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.language-switch {
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.language-switch button {
  min-width: 36px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 950;
  cursor: pointer;
}

.language-switch .is-active {
  background: var(--ink);
  color: #fff;
}

.header-cta,
.primary-button,
.secondary-button,
.checkout-button,
.package-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 950;
}

.header-cta,
.primary-button,
.checkout-button {
  border: 0;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #fff;
  box-shadow: 0 16px 34px rgba(77, 124, 255, 0.24);
}

.header-cta {
  padding: 0 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.66fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding: clamp(48px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 48% 18%, rgba(168, 85, 247, 0.28), transparent 24%),
    radial-gradient(circle at 68% 42%, rgba(77, 124, 255, 0.22), transparent 28%),
    radial-gradient(circle at 16% 0%, rgba(32, 215, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #070a16 0%, #0b1024 48%, #080b18 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.09) 39%, transparent 42%),
    radial-gradient(circle at 54% 24%, rgba(255, 255, 255, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 62%, rgba(77, 124, 255, 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 43% 76%, rgba(168, 85, 247, 0.34) 0 1px, transparent 2px);
  opacity: 0.72;
}

.hero-copy,
.checkout-card {
  position: relative;
  z-index: 2;
}

.social-orbit {
  position: absolute;
  inset: 116px clamp(390px, 31vw, 540px) auto auto;
  z-index: 1;
  width: min(430px, 30vw);
  height: 430px;
  pointer-events: none;
}

.orbit-line {
  position: absolute;
  inset: 34px 0 auto auto;
  width: 92%;
  height: 360px;
  border: 1px dashed rgba(168, 85, 247, 0.24);
  border-radius: 50%;
  transform: rotate(8deg);
}

.orbit-line-two {
  inset: 114px 20px auto auto;
  width: 78%;
  height: 270px;
  border-color: rgba(32, 215, 255, 0.26);
  transform: rotate(-16deg);
}

.orbit-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.12);
}

.orbit-dot-one {
  top: 32px;
  right: 168px;
}

.orbit-dot-two {
  top: 250px;
  right: 38px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(32, 215, 255, 0.13);
}

.orbit-dot-three {
  top: 338px;
  right: 386px;
}

.social-card {
  position: absolute;
  display: grid;
  min-width: 92px;
  gap: 9px;
  place-items: center;
  padding: 16px 14px;
  border: 1px solid rgba(184, 198, 255, 0.18);
  border-radius: 18px;
  background: rgba(14, 20, 42, 0.82);
  color: #fff;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.26), 0 0 42px rgba(96, 80, 255, 0.18);
  backdrop-filter: blur(18px);
  transform: rotate(var(--rotate, 0deg));
}

.social-badge {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(52, 87, 255, 0.22);
}

.social-card strong {
  display: block;
  color: #dfe7ff;
  font-size: 0.82rem;
  text-align: center;
}

.social-card small {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 850;
}

.social-card-tiktok {
  --rotate: -8deg;
  top: 66px;
  right: 48%;
}

.social-card-instagram {
  --rotate: 5deg;
  top: 0;
  right: 4%;
}

.social-card-youtube {
  --rotate: -3deg;
  top: 186px;
  right: 30%;
}

.social-card-facebook {
  --rotate: 7deg;
  top: 136px;
  right: -12%;
}

.social-card-twitch {
  --rotate: 8deg;
  top: 292px;
  right: 56%;
}

.social-card-x {
  --rotate: -7deg;
  top: 300px;
  right: 3%;
  min-width: 86px;
}

.social-card-instagram .social-badge {
  background: linear-gradient(90deg, #ff3d8b, #ffb000);
}

.social-card-youtube .social-badge {
  background: linear-gradient(90deg, #ff0033, #ff6b6b);
}

.social-card-facebook .social-badge {
  background: linear-gradient(90deg, #1877f2, #20d7ff);
}

.social-card-twitch .social-badge {
  background: linear-gradient(135deg, #9146ff, #c084fc);
}

.social-card-x .social-badge {
  background: linear-gradient(90deg, #10131f, #687085);
}

.eyebrow {
  margin: 0 0 14px;
  color: #7fb2ff;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(3.2rem, 7.4vw, 6.7rem);
  line-height: 0.92;
}

.gradient-title {
  background: linear-gradient(135deg, #7ea4ff 0%, #a855f7 46%, #24d4ff 100%);
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.lead {
  max-width: 650px;
  color: #bcc8de;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions,
.trust-row {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  padding: 0 24px;
}

.secondary-button {
  border: 1px solid rgba(184, 198, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #dfe7ff;
  backdrop-filter: blur(12px);
}

.primary-button:hover,
.secondary-button:hover,
.checkout-button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.trust-row {
  margin-top: 24px;
}

.trust-row span {
  padding: 11px 14px;
  border: 1px solid rgba(184, 198, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #d6e0f7;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.checkout-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(184, 198, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(19, 26, 52, 0.94), rgba(10, 14, 30, 0.94));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.checkout-label,
.package-label {
  margin-bottom: 0;
  color: #7fb2ff;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.checkout-card label {
  display: grid;
  gap: 7px;
  color: #d8e2f8;
  font-size: 0.9rem;
  font-weight: 850;
}

.checkout-card label[hidden] {
  display: none;
}

.checkout-card select,
.checkout-card input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(184, 198, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.checkout-card select option {
  background: #11162a;
  color: #fff;
}

.checkout-card input.has-error {
  border-color: var(--danger);
}

.field-error {
  display: none;
  color: var(--danger);
  line-height: 1.35;
}

.field-error.is-visible {
  display: block;
}

.payment-logo {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  font-size: 1.06rem;
  font-weight: 950;
  letter-spacing: 0;
}

.google-pay .payment-logo {
  color: #8ab4ff;
}

.apple-pay .payment-logo {
  color: #f8fbff;
}

.online-banks .payment-logo {
  color: var(--blue);
}

.paypal .payment-logo {
  color: #003087;
}

.blik .payment-logo {
  color: #111;
}

.summary {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 0%, rgba(168, 85, 247, 0.24), transparent 42%),
    #070a16;
  color: #fff;
}

.summary span,
.summary small {
  color: rgba(255, 255, 255, 0.72);
}

.summary strong {
  font-size: 2.1rem;
  line-height: 1;
}

.checkout-button {
  width: 100%;
  cursor: pointer;
}

.checkout-note {
  margin: 0;
  color: #aab5cd;
  font-size: 0.9rem;
  line-height: 1.4;
}

.sales-notice {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(197, 38, 66, 0.22);
  border-radius: 12px;
  background: #fff0f2;
  color: #aa1e35;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.45;
}

.sales-notice[hidden] {
  display: none;
}

.youtube-delivery-notice {
  display: grid;
  gap: 8px;
  margin: -2px 0 0;
  padding: 14px 15px;
  border: 1px solid rgba(112, 169, 255, 0.32);
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(68, 107, 255, 0.16), rgba(28, 210, 255, 0.08)),
    rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.youtube-delivery-notice[hidden] {
  display: none;
}

.youtube-delivery-notice strong {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.25;
}

.youtube-delivery-notice p {
  margin: 0;
  color: rgba(235, 242, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.46;
}

.checkout-payment-methods {
  display: grid;
  gap: 4px;
  margin: -2px 0 0;
  padding: 13px 14px;
  border: 1px solid rgba(129, 151, 255, 0.46);
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(85, 107, 255, 0.22), rgba(18, 230, 255, 0.11)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  text-align: center;
}

.checkout-payment-methods-primary {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.25;
}

.checkout-payment-methods-secondary {
  color: rgba(238, 244, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.checkout-payment-methods-secondary::before {
  content: "🔒 ";
}

.retention-notice,
.section-note {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(52, 87, 255, 0.18);
  border-radius: 14px;
  background: #f4f7ff;
  color: #3b4662;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.section-note {
  margin-top: 18px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(184, 198, 255, 0.12);
  border-bottom: 1px solid rgba(184, 198, 255, 0.12);
  background: rgba(5, 8, 18, 0.96);
  color: #fff;
}

.ticker div {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.ticker span {
  padding: 18px 26px;
  color: #cbd7ff;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.services,
.platforms-section,
.packages,
.price-table-section,
.how-section,
.delivery-section,
.payment-section,
.why,
.track-section,
.faq,
.support,
.legal-section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 124, 255, 0.08), transparent 28%),
    #080c1a;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.service-grid,
.package-grid,
.payment-grid,
.contact-grid,
.feature-list {
  display: grid;
  gap: 16px;
}

.service-grid,
.package-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.contact-grid,
.feature-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.package-grid article,
.payment-grid article,
.contact-grid article,
.feature-list article,
.steps article,
.faq-list details,
.track-card,
.legal-section > div {
  border: 1px solid rgba(184, 198, 255, 0.14);
  border-radius: 16px;
  background: rgba(15, 21, 42, 0.74);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.service-card,
.package-grid article,
.payment-grid article,
.contact-grid article,
.feature-list article,
.steps article,
.track-card,
.legal-section > div {
  padding: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 950;
}

.instagram .service-icon {
  background: linear-gradient(135deg, #ff4f8b, #ffb347);
}

.facebook .service-icon {
  background: #1877f2;
}

.tiktok .service-icon {
  background: linear-gradient(135deg, #111, #25f4ee);
}

.twitch .service-icon {
  background: #9146ff;
}

.x-twitter .service-icon {
  background: #10131f;
}

.youtube .service-icon {
  background: #ff0033;
}

.service-card p,
.package-grid p,
.payment-section p,
.payment-grid p,
.steps p,
.contact p,
.faq-list p {
  color: #aab5cd;
  line-height: 1.55;
}

.service-more-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 38px;
  margin-top: auto;
  padding: 8px 12px;
  border: 1px solid rgba(184, 198, 255, 0.18);
  border-radius: 999px;
  background: rgba(15, 21, 42, 0.62);
  color: #dce6ff;
  font-size: 0.88rem;
  font-weight: 850;
}

.service-more-link:hover {
  border-color: rgba(77, 124, 255, 0.58);
  color: #fff;
}

.service-price {
  display: block;
  margin: 12px 0 18px;
  color: #fff;
  font-size: 1.05rem;
}

.section-note {
  margin-top: 18px;
  color: #dce6ff;
  font-weight: 900;
}

.seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(184, 198, 255, 0.18);
  border-radius: 999px;
  background: rgba(15, 21, 42, 0.78);
  color: #dce6ff;
  font-weight: 850;
}

.seo-links a:hover {
  border-color: rgba(77, 124, 255, 0.58);
  color: #fff;
}

.seo-page .site-header {
  position: sticky;
}

.seo-hero {
  padding: clamp(76px, 10vw, 136px) clamp(18px, 6vw, 96px) clamp(54px, 8vw, 96px);
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 124, 255, 0.2), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(168, 85, 247, 0.16), transparent 32%),
    linear-gradient(135deg, #070a16 0%, #0b1024 48%, #080b18 100%);
}

.seo-hero .lead {
  max-width: 760px;
}

.seo-content,
.seo-order-panel,
.seo-links {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 8%, rgba(168, 85, 247, 0.08), transparent 26%),
    #090d1d;
}

.seo-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.seo-content article,
.seo-order-panel,
.seo-links {
  border: 1px solid rgba(184, 198, 255, 0.14);
  border-radius: 16px;
  background: rgba(15, 21, 42, 0.74);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.seo-order-panel {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.seo-order-panel p:not(.eyebrow) {
  max-width: 760px;
  color: #aab5cd;
  line-height: 1.62;
}

.seo-order-panel .primary-button {
  flex: 0 0 auto;
}

.seo-content article {
  padding: 26px;
}

.seo-content article:nth-child(1),
.seo-content article:nth-child(6),
.seo-faq {
  grid-column: 1 / -1;
}

.seo-content p,
.seo-content li {
  color: #aab5cd;
  line-height: 1.62;
}

.seo-content ol {
  margin: 0;
  padding-left: 22px;
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(58px, 8vw, 108px);
  padding: 26px;
}

.seo-links h2 {
  width: 100%;
  margin: 0 0 4px;
}

.seo-links p {
  width: 100%;
  max-width: 760px;
  margin: 0 0 6px;
  color: #aab5cd;
  line-height: 1.62;
}

.packages,
.price-table-section,
.support {
  background:
    radial-gradient(circle at 86% 8%, rgba(168, 85, 247, 0.08), transparent 26%),
    #090d1d;
}

.platforms-section,
.track-section,
.legal-section {
  background:
    radial-gradient(circle at 16% 0%, rgba(77, 124, 255, 0.08), transparent 28%),
    #080c1a;
}

.platforms-section,
.how-section,
.track-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
}

.platform-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.platform-strip span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 16px;
  border: 1px solid rgba(184, 198, 255, 0.14);
  border-radius: 16px;
  background: rgba(15, 21, 42, 0.76);
  font-weight: 900;
}

.platform-strip strong {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #fff;
  font-size: 0.78rem;
}

.delivery-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
  background:
    radial-gradient(circle at 74% 14%, rgba(32, 215, 255, 0.07), transparent 28%),
    #080c1a;
}

.delivery-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-list li {
  padding: 18px;
  border: 1px solid rgba(184, 198, 255, 0.14);
  border-radius: 16px;
  background: rgba(15, 21, 42, 0.76);
  color: #aab5cd;
  line-height: 1.55;
}

.package-grid article {
  display: flex;
  min-height: 320px;
  flex-direction: column;
}

.package-grid h3 {
  margin: 8px 0;
  font-size: 3rem;
}

.package-grid strong {
  display: block;
  margin-top: auto;
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.package-grid a {
  min-height: 46px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #fff;
}

.package-grid a.is-disabled {
  pointer-events: none;
  background: #edf0f7;
  color: var(--muted);
}

.unavailable-label {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff0f2;
  color: #aa1e35;
  font-size: 0.78rem;
  font-weight: 950;
}

.featured-package {
  color: #fff;
  background: linear-gradient(145deg, #161d3a, #382873) !important;
  box-shadow: var(--shadow);
}

.featured-package p,
.featured-package .package-label {
  color: rgba(255, 255, 255, 0.75);
}

.featured-package a {
  background: #d8ff70;
  color: #070a16;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table thead th {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.payment-section,
.why {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
}

.payment-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(77, 124, 255, 0.09), transparent 28%),
    #090d1d;
}

.payment-card .payment-logo {
  display: block;
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 950;
}

.payment-card.is-disabled {
  opacity: 0.72;
}

.payment-card h3 {
  margin: 0 0 10px;
}

.why {
  background:
    radial-gradient(circle at 18% 0%, rgba(168, 85, 247, 0.08), transparent 28%),
    #080c1a;
}

.steps,
.faq-list {
  display: grid;
  gap: 14px;
}

.steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps span {
  color: var(--blue);
  font-weight: 950;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px;
  font-size: 1.05rem;
  font-weight: 950;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-grid a,
.site-footer a {
  color: #9db8ff;
  font-weight: 950;
  word-break: break-word;
}

.track-card {
  display: grid;
  gap: 14px;
}

.track-card label {
  display: grid;
  gap: 8px;
  color: #d8e2f8;
  font-weight: 900;
}

.track-card input {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(184, 198, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-weight: 850;
}

.track-card button {
  min-height: 52px;
  cursor: pointer;
}

.track-result {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #aab5cd;
  line-height: 1.5;
}

.track-result strong {
  color: #fff;
  font-size: 1.18rem;
}

.legal-section > div {
  max-width: 980px;
}

.legal-page {
  display: grid;
  gap: 28px;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.legal-page-header,
.legal-document {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-page-header h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.legal-page-header p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.legal-document {
  display: grid;
  gap: 22px;
  line-height: 1.7;
}

.legal-document section {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(24, 35, 92, 0.08);
}

.legal-document h2 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.legal-document p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal-document a {
  color: var(--blue);
  font-weight: 900;
  word-break: break-word;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: start;
  gap: 24px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(184, 198, 255, 0.14);
  background: #050816;
}

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

.footer-group h2 {
  margin: 0;
  color: #fff;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-brand .brand-mark {
  width: 36px;
  height: 36px;
}

.footer-link {
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.footer-note {
  color: var(--muted);
  font-weight: 800;
}

.footer-retention,
.platform-disclaimer {
  grid-column: 1 / -1;
  max-width: 980px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.copy-button {
  min-height: 44px;
  margin-top: 14px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.copy-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.noscript-message {
  margin: 0;
  padding: 16px;
  background: #fff3cd;
  color: #4b3b00;
  text-align: center;
}

dialog {
  width: min(620px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 18px;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.48);
}

.modal-body {
  position: relative;
  padding: 32px;
  background: #fff;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}

.integration-box {
  overflow: auto;
  padding: 16px;
  border-radius: 12px;
  background: #10131f;
  color: #c7ff4d;
}

code {
  white-space: pre-wrap;
}

@media (max-width: 1180px) {
  .service-grid,
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: #070a16;
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .header-tools {
    justify-self: end;
  }

  .hero,
  .platforms-section,
  .how-section,
  .delivery-section,
  .payment-section,
  .why,
  .track-section {
    grid-template-columns: 1fr;
  }

  .social-orbit {
    display: none;
  }

  .contact-grid,
  .feature-list,
  .steps,
  .seo-content,
  .platform-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
  }

  .brand span:last-child,
  .header-cta,
  .language-buttons {
    display: none;
  }

  #languageSelect {
    display: block;
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .service-grid,
  .package-grid,
  .payment-grid,
  .contact-grid,
  .feature-list,
  .steps,
  .seo-content,
  .platform-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .seo-content article:nth-child(1),
  .seo-content article:nth-child(6) {
    grid-column: auto;
  }

  .seo-links {
    margin-right: 18px;
    margin-left: 18px;
  }

  .seo-order-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    justify-items: start;
  }

  .price-table {
    min-width: 0;
    table-layout: fixed;
  }

  .price-table th,
  .price-table td {
    padding: 12px 10px;
    font-size: 0.78rem;
  }

.price-table thead th {
    font-size: 0.66rem;
    line-height: 1.25;
    white-space: normal;
  }
}

.return-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--paper);
}

.return-panel {
  width: min(640px, 100%);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.return-panel h1 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.return-panel p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
}
