:root {
  --bg: #f4f8fc;
  --panel: #ffffff;
  --panel-2: #f8fbff;
  --text: #0f2744;
  --muted: #5e738b;
  --accent: #0e8f6d;
  --accent-2: #1f5a96;
  --danger: #d83a4d;
  --ring: rgba(14, 143, 109, 0.18);
  --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(900px 520px at 0% -10%, #d9e8ff 0%, transparent 58%),
    radial-gradient(840px 480px at 100% 0%, #d7f1ea 0%, transparent 56%),
    linear-gradient(180deg, #f8fbff 0%, #f3f8fe 52%, #eef5fc 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: #9bc5f5;
}

.shape-b {
  right: -90px;
  bottom: 60px;
  background: #9ee6cf;
}

.topbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(186, 204, 224, 0.6);
  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: #3f566f;
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  color: #123a63;
}

.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: #f5f9ff;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}

.lang-switch button.active {
  background: #dff4ed;
  color: #0e7a5f;
}

.currency-switch button.active {
  background: #e2eefb;
  color: #1b4b7a;
}

main {
  width: min(1100px, 92vw);
  margin: 40px auto 64px;
}

section {
  background: linear-gradient(170deg, #ffffff, #f8fbff);
  border: 1px solid #d8e6f3;
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 36px);
  margin-bottom: 24px;
  box-shadow: 0 10px 28px rgba(15, 39, 68, 0.08);
  position: relative;
  overflow: hidden;
}

section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(31, 90, 150, 0.03), transparent 38%, rgba(14, 143, 109, 0.05));
  pointer-events: none;
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e7f6f1;
  border: 1px solid #b8e6d8;
  color: #0b6e56;
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 700;
}

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 {
  display: grid;
  gap: 22px;
}

.hero-top-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  border: 1px solid #d1e3f3;
  border-radius: 22px;
  padding: clamp(20px, 3vw, 30px);
  background: linear-gradient(145deg, #f7fbff, #eef6ff);
  box-shadow: 0 16px 34px rgba(22, 58, 92, 0.12);
}

.hero-copy {
  min-width: 0;
}

.hero-visual {
  min-width: 0;
}

.hero-media-wrap {
  position: relative;
  width: min(470px, 100%);
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #b7d2e9;
  background: linear-gradient(140deg, #0f2946, #1f4f7f);
  box-shadow: 0 14px 30px rgba(18, 48, 77, 0.2);
}

.hero-tv-frame {
  padding: 12px;
}

.hero-tv-frame::after {
  content: "";
  position: absolute;
  inset: auto 34% -10px 34%;
  height: 8px;
  border-radius: 999px;
  background: #244a70;
}

.hero-tv-screen {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #71a6d8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.hero-tv-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(1.08);
}

.hero-media-badge {
  position: absolute;
  left: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.hero-media-badge.top {
  top: 14px;
}

.hero-media-badge.bottom {
  bottom: 14px;
}

.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 #d6e5f3;
  background: #f7fbff;
  color: #2b425b;
  font-size: 0.9rem;
}

.trust-icon {
  display: inline-grid;
  place-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #dff4ed;
  color: #0e7a5f;
  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, #0f8f6d, #25a07f);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(14, 143, 109, 0.22);
}

.btn.ghost {
  background: #f5f9ff;
  color: var(--text);
  border: 1px solid #cfe0f0;
}

.stats {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stats li {
  border: 1px solid #d7e6f4;
  background: #f9fcff;
  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 #d8e7f5;
  border-radius: 14px;
  background: #f8fbff;
  padding: 14px;
}

.panel-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #dff4ed;
  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 #d8e6f4;
  border-radius: 14px;
  background: #f7fbff;
}

.payment-label {
  font-size: 0.9rem;
  color: #1b4b7a;
  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 #cfdfef;
  background: #ffffff;
  color: #36506a;
  font-size: 0.85rem;
}

.device-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.device-row span {
  font-size: 0.82rem;
  color: #34516f;
  border: 1px solid #d5e4f2;
  border-radius: 999px;
  padding: 6px 10px;
  background: #ffffff;
}

.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: #f7fbff;
  border: 1px solid #d4e4f2;
  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 #d4e3f2;
  background: #f7fbff;
  color: var(--muted);
}

.control-note span {
  color: #1d4f82;
  font-weight: 700;
}

select {
  background: #ffffff;
  color: var(--text);
  border: 1px solid #c9dced;
  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 #d4e4f3;
  background: #ffffff;
  padding: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 39, 68, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pack:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 39, 68, 0.12);
}

.pack.recommended {
  border-color: #0f8f6d;
  box-shadow: 0 0 0 2px rgba(14, 143, 109, 0.18), 0 6px 20px rgba(14, 143, 109, 0.14);
}

.pack.recommended::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(14, 143, 109, 0.10), transparent 70%);
}

.pack .tag {
  display: inline-block;
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 999px;
  color: #ffffff;
  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;
  padding-left: 20px;
  position: relative;
}

.pack ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0f8f6d;
  font-weight: 700;
}

.pack button {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 11px 12px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(90deg, #0f8f6d, #26a582);
  color: #ffffff;
}

.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, #0f8f6d, #26a582);
  color: #ffffff;
  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 #cddfed;
  color: #1d4f82;
  font-size: 0.75rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steps article {
  border: 1px solid #d7e6f4;
  background: #f9fcff;
  border-radius: 12px;
  padding: 14px;
}

.step-n {
  display: inline-grid;
  place-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(90deg, #0f8f6d, #24a67f);
}

.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 #d7e6f4;
  background: #f9fcff;
  border-radius: 12px;
  padding: 14px;
}

.why-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #e8f1fb;
  margin-bottom: 10px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.included-card {
  border: 1px solid #d7e6f4;
  border-radius: 14px;
  padding: 16px;
  background: #f9fcff;
}

.included-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #dff4ed;
  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 #d7e6f4;
  border-radius: 14px;
  padding: 16px;
  background: #f9fcff;
}

.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: #1f3f61;
  background: linear-gradient(90deg, #d4e9ff, #b8d8ff);
}

.review-top p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-card > p {
  color: #334d67;
  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 #d7e6f4;
  border-radius: 14px;
  padding: 16px;
  background: #f9fcff;
}

.compare-card.positive {
  box-shadow: inset 0 0 0 1px rgba(14, 143, 109, 0.12);
  border-color: #c2dfd6;
}

.compare-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #dff4ed;
  color: #0e7a5f;
  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 #bdd9f5;
  background: linear-gradient(135deg, #edf5ff, #e8f6f0);
}

.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 #d7e6f4;
  border-radius: 14px;
  padding: 14px;
  background: #f9fcff;
}

.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 #d6e5f3;
  border-radius: 18px;
  padding: 18px;
  background: #f9fcff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: #1f3f61;
  font-weight: 600;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #c9ddef;
  background: #ffffff;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}

.form-grid textarea {
  grid-column: 1 / -1;
  resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: #1f5a96;
  box-shadow: 0 0 0 3px rgba(31, 90, 150, 0.12);
}


.checkout-submit {
  width: 100%;
}

.checkout-hint {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #d2e2f1;
  border-radius: 12px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-hint.success {
  border-color: #9edac8;
  background: #e9f8f3;
  color: #0d735a;
}

.checkout-hint.error {
  border-color: rgba(255, 95, 95, 0.55);
  background: rgba(255, 95, 95, 0.1);
  color: #ffd6d6;
}

.checkout-side {
  align-content: start;
}

.checkout-box {
  border: 1px solid #d6e5f3;
  border-radius: 18px;
  padding: 18px;
  background: #f9fcff;
}

.checkout-box p {
  color: var(--muted);
  line-height: 1.65;
}

.paypal-buttons {
  min-height: 46px;
}

/* ── Section heading accent ─────────────────────────────── */
.section-head h2 {
  position: relative;
  padding-left: 14px;
}

.section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, #0f8f6d, #1f5a96);
}

/* ── Security trust strip ────────────────────────────────── */
.security-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.sec-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid #bcddf5;
  background: #eef6fd;
  color: #1c4570;
  font-size: 0.84rem;
  font-weight: 600;
}

.stars {
  color: #ffd96d;
  letter-spacing: 2px;
}

.why p {
  color: var(--muted);
  margin-bottom: 0;
}

.faq details {
  border: 1px solid #d6e5f3;
  background: #f9fcff;
  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: #1f5a96;
}

.sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  padding: 11px 14px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(90deg, #1f5a96, #2f73b8);
  box-shadow: 0 10px 22px rgba(21, 67, 110, 0.24);
}

.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) {
  .hero-top-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: 0;
    min-height: 280px;
  }

  .hero-media-wrap {
    height: 250px;
  }

  .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;
  }
}
