:root {
  --bg: #081018;
  --panel: #0e1b2b;
  --panel-2: #13263d;
  --text: #eef5ff;
  --muted: #b2c8df;
  --accent: #17d5a3;
  --accent-2: #ffb01f;
  --danger: #ff5f5f;
  --ring: rgba(23, 213, 163, 0.35);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 10% -10%, #16385c 0%, transparent 60%),
    radial-gradient(1000px 700px at 100% 0%, #2a1c4a 0%, transparent 55%),
    linear-gradient(180deg, #050a10 0%, #091726 45%, #060f19 100%);
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

.shape-a {
  top: -100px;
  left: -60px;
  background: #1ec6ff;
}

.shape-b {
  right: -90px;
  bottom: 60px;
  background: #ff9f2a;
}

.topbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(8, 16, 24, 0.65);
  border-bottom: 1px solid rgba(178, 200, 223, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 46px);
  z-index: 50;
}

.topbar-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.4px;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--text);
}

.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(178, 200, 223, 0.25);
  border-radius: 10px;
  overflow: hidden;
}

.currency-switch {
  display: inline-flex;
  border: 1px solid rgba(178, 200, 223, 0.25);
  border-radius: 10px;
  overflow: hidden;
}

.lang-switch button,
.currency-switch button {
  border: 0;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}

.lang-switch button.active {
  background: rgba(23, 213, 163, 0.2);
  color: #a8ffea;
}

.currency-switch button.active {
  background: rgba(255, 176, 31, 0.2);
  color: #ffe1a2;
}

main {
  width: min(1100px, 92vw);
  margin: 40px auto 64px;
}

section {
  background: linear-gradient(165deg, rgba(20, 34, 54, 0.88), rgba(11, 21, 35, 0.92));
  border: 1px solid rgba(178, 200, 223, 0.18);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 36px);
  margin-bottom: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(23, 213, 163, 0.05), transparent 35%, rgba(255, 176, 31, 0.05));
  pointer-events: none;
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 213, 163, 0.18);
  border: 1px solid rgba(23, 213, 163, 0.35);
  color: #97ffe3;
  margin: 0 0 14px;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.8rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(178, 200, 223, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: #dce9f7;
  font-size: 0.9rem;
}

.trust-icon {
  display: inline-grid;
  place-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(23, 213, 163, 0.16);
  color: #a8ffea;
  font-size: 0.78rem;
}

.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  background: linear-gradient(90deg, var(--accent), #38f9ca);
  color: #062018;
  box-shadow: 0 8px 24px rgba(23, 213, 163, 0.25);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(178, 200, 223, 0.3);
}

.stats {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stats li {
  border: 1px solid rgba(178, 200, 223, 0.25);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 10px 14px;
}

.hero-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.hero-panel {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(178, 200, 223, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}

.panel-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(23, 213, 163, 0.16);
  font-size: 1.1rem;
}

.hero-panel h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.payment-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(178, 200, 223, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.payment-label {
  font-size: 0.9rem;
  color: #ffe1a2;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-badges span {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(178, 200, 223, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #dce9f7;
  font-size: 0.85rem;
}

.device-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.device-row span {
  font-size: 0.82rem;
  color: #d7eaff;
  border: 1px solid rgba(178, 200, 223, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.03);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  flex-wrap: wrap;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.toggle-wrap {
  margin: 18px 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(178, 200, 223, 0.28);
  border-radius: 12px;
}

.control-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 20px;
}

.control-note {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(178, 200, 223, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.control-note span {
  color: #ffe1a2;
  font-weight: 700;
}

select {
  background: #13263d;
  color: var(--text);
  border: 1px solid rgba(178, 200, 223, 0.35);
  border-radius: 8px;
  padding: 8px 10px;
  font-family: inherit;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pack {
  border-radius: 14px;
  border: 1px solid rgba(178, 200, 223, 0.24);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.pack.recommended {
  border-color: rgba(23, 213, 163, 0.72);
  box-shadow: 0 0 0 2px var(--ring);
}

.pack.recommended::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(23, 213, 163, 0.16), transparent 70%);
}

.pack .tag {
  display: inline-block;
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 999px;
  color: #102117;
  background: var(--accent-2);
}

.pack h3 {
  margin: 10px 0 8px;
}

.price {
  font-size: 1.7rem;
  font-family: "Sora", sans-serif;
  margin: 6px 0;
}

.price small {
  font-size: 0.9rem;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
}

.pack ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  color: var(--muted);
}

.pack ul li {
  margin: 8px 0;
}

.pack button {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 11px 12px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(90deg, #1ad6a5, #29f0c0);
  color: #042014;
}

.pack button:hover {
  filter: brightness(1.05);
}

.pack-order-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 10px;
  padding: 11px 12px;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(90deg, #1ad6a5, #29f0c0);
  color: #042014;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.pack-order-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.pack-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(178, 200, 223, 0.18);
  color: #ffe1a2;
  font-size: 0.75rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steps article {
  border: 1px solid rgba(178, 200, 223, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 14px;
}

.step-n {
  display: inline-grid;
  place-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-weight: 700;
  color: #052017;
  background: linear-gradient(90deg, #1ad6a5, #35eec4);
}

.steps p {
  color: var(--muted);
  margin-bottom: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.why article {
  border: 1px solid rgba(178, 200, 223, 0.2);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 14px;
}

.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 176, 31, 0.14);
  margin-bottom: 10px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.included-card {
  border: 1px solid rgba(178, 200, 223, 0.2);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.included-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(23, 213, 163, 0.16);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.included-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.testimonials .section-head {
  margin-bottom: 12px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  border: 1px solid rgba(178, 200, 223, 0.2);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.review-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #07141d;
  background: linear-gradient(90deg, #ffe08a, #ffb01f);
}

.review-top p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-card > p {
  color: #dce9f7;
  line-height: 1.65;
  margin: 0 0 12px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.compare-card {
  border: 1px solid rgba(178, 200, 223, 0.2);
  border-radius: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.compare-card.positive {
  box-shadow: inset 0 0 0 1px rgba(23, 213, 163, 0.08);
}

.compare-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(23, 213, 163, 0.16);
  color: #a8ffea;
  margin-bottom: 12px;
  font-weight: 700;
}

.compare-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(178, 200, 223, 0.2);
  background: linear-gradient(135deg, rgba(23, 213, 163, 0.08), rgba(255, 176, 31, 0.06));
}

.final-cta h2 {
  margin-bottom: 10px;
}

.final-cta p {
  color: var(--muted);
  max-width: 68ch;
}

.badge.compact {
  margin-bottom: 12px;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
}

.checkout-hero {
  display: grid;
  gap: 14px;
}

.checkout-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.summary-item {
  border: 1px solid rgba(178, 200, 223, 0.2);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.summary-item strong {
  display: block;
  margin-bottom: 6px;
}

.summary-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 16px;
}

.checkout-form,
.checkout-side,
.checkout-box {
  display: grid;
  gap: 14px;
}

.checkout-form {
  border: 1px solid rgba(178, 200, 223, 0.2);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: #dce9f7;
  font-weight: 600;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(178, 200, 223, 0.25);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

.form-grid textarea {
  grid-column: 1 / -1;
  resize: vertical;
}

.checkout-submit {
  width: 100%;
}

.checkout-hint {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(178, 200, 223, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-hint.success {
  border-color: rgba(23, 213, 163, 0.55);
  background: rgba(23, 213, 163, 0.1);
  color: #a8ffea;
}

.checkout-side {
  align-content: start;
}

.checkout-box {
  border: 1px solid rgba(178, 200, 223, 0.2);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.checkout-box p {
  color: var(--muted);
  line-height: 1.65;
}

.stars {
  color: #ffd96d;
  letter-spacing: 2px;
}

.why p {
  color: var(--muted);
  margin-bottom: 0;
}

.faq details {
  border: 1px solid rgba(178, 200, 223, 0.22);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 10px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  color: var(--muted);
  margin: 10px 0 0;
}

footer {
  width: min(1100px, 92vw);
  margin: 0 auto 30px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

footer a {
  color: #9ce9ff;
}

.sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  padding: 11px 14px;
  border-radius: 999px;
  color: #052017;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(90deg, #1ad6a5, #35eec4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.7s ease forwards;
}

.reveal:nth-of-type(2) {
  animation-delay: 0.12s;
}

.reveal:nth-of-type(3) {
  animation-delay: 0.22s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .pack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panels {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-wrap: wrap;
    gap: 10px;
  }

  .topbar-tools {
    width: 100%;
    justify-content: space-between;
  }

  nav {
    gap: 12px;
  }

  nav a {
    font-size: 0.88rem;
  }

  .pack-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
  }

  .payment-strip {
    align-items: flex-start;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    text-align: center;
  }
}
