@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
  --bg: #070b12;
  --bg-soft: #0c1320;
  --panel: rgba(16, 25, 40, 0.78);
  --panel-strong: rgba(19, 30, 48, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7fbff;
  --muted: #b6c2d4;
  --muted-2: #8897ad;
  --cyan: #2fdcff;
  --blue: #3978ff;
  --pink: #ff4f86;
  --red: #ff685c;
  --green: #1fcf72;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Sans", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -10%, rgba(47, 220, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 90% 0%, rgba(255, 79, 134, 0.16), transparent 30rem),
    linear-gradient(180deg, #070b12 0%, #0a0f19 45%, #070b12 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
.brand,
.btn,
.price,
.hero-price {
  font-family: "Plus Jakarta Sans", "Noto Sans", "Segoe UI", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 18, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--blue) 48%, var(--red));
  box-shadow: 0 0 34px rgba(47, 220, 255, 0.22);
}

.brand-text {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  color: #03111b;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 42px rgba(47, 220, 255, 0.2);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--red));
  box-shadow: 0 16px 42px rgba(255, 79, 134, 0.19);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 54px;
}

.hero::before,
.page-hero::before,
.section-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(47, 220, 255, 0.08), transparent 34%),
    linear-gradient(245deg, rgba(255, 79, 134, 0.09), transparent 32%);
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(47, 220, 255, 0.22);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(47, 220, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.35rem, 7vw, 5rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.lead {
  max-width: 700px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #dce7f7;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(47, 220, 255, 0.16), transparent 42%),
    linear-gradient(25deg, rgba(255, 79, 134, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.screen-card {
  position: absolute;
  inset: 26px;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7, 11, 18, 0.84) 58%),
    radial-gradient(circle at 25% 20%, rgba(47, 220, 255, 0.42), transparent 10rem),
    radial-gradient(circle at 80% 30%, rgba(255, 79, 134, 0.35), transparent 11rem),
    #0b111d;
}

.screen-grid {
  position: absolute;
  inset: 24px 24px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.app-tile {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
}

.app-tile:nth-child(3n + 1) {
  background: linear-gradient(135deg, #152135, #255aff);
}

.app-tile:nth-child(3n + 2) {
  background: linear-gradient(135deg, #101a27, #1bdcff);
}

.app-tile:nth-child(3n + 3) {
  background: linear-gradient(135deg, #20202c, #ff527d);
}

.screen-card strong {
  font-size: 1.55rem;
}

.section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 590px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
}

.service-card {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 28px;
}

.service-card.main {
  border-color: rgba(47, 220, 255, 0.24);
  background:
    linear-gradient(145deg, rgba(47, 220, 255, 0.14), transparent 42%),
    linear-gradient(320deg, rgba(255, 79, 134, 0.11), transparent 38%),
    var(--panel-strong);
}

.service-card.small {
  min-height: 240px;
  padding: 24px;
}

.price {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
}

.note {
  display: block;
  margin-top: 8px;
  color: #c6d4e7;
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

.feature-card,
.review-card,
.contact-card,
.step,
.faq-item,
.pricing-card {
  padding: 22px;
}

.feature-card strong,
.step strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.icon-dot {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #06101b;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 900;
}

.steps {
  counter-reset: step;
}

.step {
  counter-increment: step;
}

.step::before {
  content: counter(step);
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--red));
  font-weight: 900;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(47, 220, 255, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(130deg, rgba(47, 220, 255, 0.16), transparent 44%),
    linear-gradient(315deg, rgba(255, 79, 134, 0.14), transparent 40%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.cta-band p {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
}

.page-hero .container {
  position: relative;
}

.page-kicker {
  margin-bottom: 14px;
  color: var(--cyan);
  font-weight: 800;
}

.hero-price {
  display: inline-flex;
  margin-top: 22px;
  padding: 11px 16px;
  border: 1px solid rgba(47, 220, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(47, 220, 255, 0.09);
  font-weight: 900;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card.highlight {
  border-color: rgba(31, 207, 114, 0.42);
  box-shadow: 0 22px 64px rgba(31, 207, 114, 0.1);
}

.pricing-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pricing-title h3 {
  font-size: 1.1rem;
}

.tag {
  padding: 6px 9px;
  border-radius: 999px;
  color: #04130b;
  background: linear-gradient(135deg, #44f69a, var(--green));
  font-size: 0.76rem;
  font-weight: 900;
  white-space: nowrap;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
}

.price-row strong {
  color: #fff;
  text-align: right;
}

.list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 20px rgba(47, 220, 255, 0.38);
}

.review-card {
  display: grid;
  gap: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07101b;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  cursor: pointer;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-weight: 850;
}

.faq-question::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07101b;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.faq-item[open] .faq-question::after {
  content: "-";
}

.faq-item p {
  margin-top: 14px;
  color: var(--muted);
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card .btn {
  width: fit-content;
}

.site-footer {
  padding: 54px 0 110px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 7, 12, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 26px;
}

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

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: #fff;
}

.footer-note {
  margin-top: 28px;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: grid;
  gap: 10px;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 106px;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(10, 16, 27, 0.9);
  backdrop-filter: blur(14px);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #22c55e, #128c7e);
}

.float-btn.viber {
  background: linear-gradient(135deg, #7360f2, #8f44fd);
}

.float-btn.call {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #04101c;
}

.float-btn.instagram {
  background: linear-gradient(135deg, #ff4f86, #7c3aed);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(8, 13, 22, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    font-size: 1rem;
  }

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

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

  .pricing-wrap,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .brand img,
  .brand-mark {
    width: 40px;
    height: 40px;
  }

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

  .header-actions .btn {
    display: none;
  }

  .hero,
  .page-hero {
    padding: 58px 0 38px;
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
  }

  .hero-panel {
    min-height: 360px;
  }

  .section {
    padding: 52px 0;
  }

  .section-head {
    display: grid;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .pricing-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 280px;
    padding: 22px;
  }

  .cta-band {
    padding: 24px;
  }

  .floating-contact {
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .float-btn {
    min-width: 0;
    min-height: 46px;
    padding: 8px 6px;
    font-size: 0.78rem;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

/* Premium redesign pass: richer first screen, real visual assets and stronger depth. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 78%);
}

.site-header {
  background: rgba(7, 11, 18, 0.88);
}

.hero,
.page-hero {
  padding: 98px 0 70px;
}

.hero-grid,
.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.02fr);
  align-items: center;
  gap: 54px;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.35rem);
  letter-spacing: -0.02em;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.pill {
  background: linear-gradient(135deg, rgba(47, 220, 255, 0.10), rgba(255, 255, 255, 0.05));
}

.hero-media {
  position: relative;
  isolation: isolate;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.page-media {
  transform: perspective(1200px) rotateY(-3deg);
}

.movie-hero-media {
  transform: none;
}

.movie-hero-media .media-badge {
  display: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 7% -4% -8%;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 18%, rgba(47, 220, 255, 0.35), transparent 34%),
    radial-gradient(circle at 82% 34%, rgba(255, 79, 134, 0.26), transparent 32%),
    rgba(255, 255, 255, 0.04);
  filter: blur(8px);
}

.hero-media img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48), 0 0 70px rgba(47, 220, 255, 0.12);
}

.media-badge {
  position: absolute;
  width: min(220px, 46%);
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(8, 13, 24, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.media-badge strong,
.media-badge span {
  display: block;
}

.media-badge strong {
  font-size: 1.15rem;
}

.media-badge span {
  color: var(--muted);
  font-size: 0.86rem;
}

.media-badge-top {
  top: 28px;
  right: -10px;
}

.media-badge-bottom {
  left: -16px;
  bottom: 34px;
}

.section {
  padding: 82px 0;
}

.card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    var(--panel);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0.65;
}

.card > * {
  position: relative;
}

.service-card.main {
  background:
    radial-gradient(circle at 20% 0%, rgba(47, 220, 255, 0.22), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(255, 79, 134, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(47, 220, 255, 0.10), transparent 42%),
    var(--panel-strong);
}

.service-card.main::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 220, 255, 0.22), transparent 68%);
}

.pricing-card {
  min-height: 100%;
}

.pricing-card .pricing-title {
  margin: -22px -22px 2px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(47, 220, 255, 0.16), rgba(57, 120, 255, 0.10));
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.pricing-card.highlight .pricing-title {
  background: linear-gradient(135deg, rgba(31, 207, 114, 0.26), rgba(47, 220, 255, 0.12));
}

.cta-band {
  background:
    radial-gradient(circle at 10% 0%, rgba(47, 220, 255, 0.20), transparent 35%),
    radial-gradient(circle at 92% 18%, rgba(255, 79, 134, 0.18), transparent 35%),
    linear-gradient(130deg, rgba(47, 220, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    max-width: 760px;
    margin: 0 auto;
    transform: none;
  }
}

@media (max-width: 760px) {
  .hero,
  .page-hero {
    padding: 58px 0 44px;
  }

  .hero-media {
    margin-top: 10px;
  }

  .media-badge {
    position: static;
    width: auto;
    margin-top: 10px;
  }

  .hero-media img {
    border-radius: 22px;
  }
}

/* V2 trust and conversion polish */
.brand-logo img {
  width: 172px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  border-radius: 0;
}

.mobile-nav-head,
.mobile-nav-actions {
  display: none;
}

.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.promo-chip {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.promo-chip strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.promo-chip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.insight-card {
  padding: 24px;
  border: 1px solid rgba(47, 220, 255, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% 0%, rgba(47, 220, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.insight-card.pink {
  border-color: rgba(255, 79, 134, 0.18);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 79, 134, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.showcase-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.platform-cloud span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #eaf3ff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
  font-size: 0.92rem;
}

.movie-hero-stage {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 16%, rgba(47, 220, 255, 0.22), transparent 34%),
    radial-gradient(circle at 86% 24%, rgba(255, 79, 134, 0.18), transparent 32%),
    #070b12;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.48), 0 0 70px rgba(47, 220, 255, 0.10);
}

.movie-hero-gridlines {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 60% 50%, #000 0 58%, transparent 76%);
}

.movie-hero-info,
.movie-hero-poster,
.movie-hero-notes {
  position: relative;
  z-index: 1;
}

.movie-hero-info {
  width: min(58%, 360px);
  margin: 46px 0 0 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(8, 13, 24, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.movie-hero-info h2 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2.05vw, 1.75rem);
  line-height: 1.16;
}

.movie-hero-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.movie-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
  max-width: 100%;
}

.movie-chip-list span {
  max-width: 100%;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #03111b;
  background: #2fdcff;
  font-weight: 900;
  font-size: clamp(0.7rem, 1.05vw, 0.82rem);
  line-height: 1.15;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
}

.movie-hero-poster {
  position: absolute;
  top: 46px;
  right: 32px;
  width: min(34%, 260px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.movie-hero-poster img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.movie-hero-note {
  min-width: 0;
  min-height: 82px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 14px;
  background: rgba(8, 13, 24, 0.9);
  backdrop-filter: blur(14px);
}

.movie-hero-notes {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.movie-hero-note strong,
.movie-hero-note span {
  display: block;
}

.movie-hero-note strong {
  font-size: clamp(0.86rem, 1.1vw, 1rem);
  line-height: 1.18;
}

.movie-hero-note span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.app-screens-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(255, 255, 255, 0.015);
}

.app-screens-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) repeat(3, minmax(220px, 0.72fr));
  gap: 20px;
  align-items: start;
}

.app-screen-card.wide {
  grid-row: span 2;
}

.app-screen-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  transform: translateZ(0);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.app-screen-card img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: center;
  background: #05060a;
  transform-origin: center;
  animation: screenFloat 7.5s ease-in-out infinite;
  will-change: transform;
}

.app-screen-card.wide img {
  max-height: 680px;
}

.app-screen-card:nth-child(2) img {
  animation-delay: -1.4s;
}

.app-screen-card:nth-child(3) img {
  animation-delay: -2.8s;
}

.app-screen-card:nth-child(4) img {
  animation-delay: -4.2s;
}

.app-screen-card:hover {
  border-color: rgba(47, 220, 255, 0.34);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.36), 0 0 34px rgba(47, 220, 255, 0.12);
  transform: translateY(-4px);
}

.app-screen-card:hover img {
  animation-play-state: paused;
  transform: scale(1.015);
}

@keyframes screenFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -7px, 0) scale(1.012);
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-screen-card img {
    animation: none;
  }
}

.app-screen-card figcaption {
  padding: 13px 14px 15px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.35;
}

.app-screens-note {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: center;
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(47, 220, 255, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 220, 255, 0.18), transparent 38%),
    radial-gradient(circle at 92% 22%, rgba(255, 79, 134, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(8, 13, 24, 0.84);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
}

.app-screens-note strong,
.app-screens-note span {
  display: block;
}

.app-screens-note strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  line-height: 1.18;
}

.app-screens-note span {
  color: var(--muted);
}

.app-screens-note-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.app-screens-note-pills span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #eaf3ff;
  background: rgba(255, 255, 255, 0.065);
  font-weight: 800;
  font-size: 0.86rem;
  line-height: 1.2;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.comparison-card.good {
  border-color: rgba(47, 220, 255, 0.22);
}

.comparison-card.risky {
  border-color: rgba(255, 79, 134, 0.22);
}

.device-warning {
  border-color: rgba(255, 104, 92, 0.25);
  background:
    linear-gradient(135deg, rgba(255, 104, 92, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.visual-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.visual-service img {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.soft-float {
  animation: softFloat 5s ease-in-out infinite;
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1080px) {
  .nav-links {
    inset: 76px 12px auto;
    max-height: calc(100vh - 90px);
    overflow: auto;
    gap: 8px;
  }

  .mobile-nav-head {
    display: grid;
    gap: 4px;
    padding: 8px 8px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 4px;
  }

  .mobile-nav-head span {
    color: var(--muted);
    font-size: 0.92rem;
  }

  .mobile-nav-actions {
    display: grid;
    gap: 10px;
    margin-top: 8px;
  }

  .split-showcase,
  .visual-service {
    grid-template-columns: 1fr;
  }

  .movie-hero-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .movie-hero-info,
  .movie-hero-poster,
  .movie-hero-notes {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
  }

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

  .movie-hero-poster img {
    max-height: 360px;
  }

  .app-screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-screen-card.wide,
  .app-screens-note {
    grid-row: auto;
    grid-column: auto;
  }

  .app-screens-note {
    grid-template-columns: 1fr;
  }

  .app-screens-note-pills {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .brand-logo img {
    width: 142px;
  }

  .promo-strip,
  .comparison-grid,
  .app-screens-grid {
    grid-template-columns: 1fr;
  }

  .app-screens-note {
    padding: 18px;
  }

  .movie-hero-stage {
    padding: 14px;
    border-radius: 22px;
  }

  .movie-hero-info {
    padding: 20px;
  }

  .movie-chip-list span {
    flex: 1 1 calc(50% - 8px);
  }

  .app-screen-card img,
  .app-screen-card.wide img {
    height: auto;
    max-height: none;
  }
}

/* Mobile-only polish. Desktop layout is intentionally untouched. */
@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .nav-shell {
    min-height: 68px;
  }

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

  .page-hero,
  .hero {
    padding: 50px 0 38px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1.08;
  }

  h2 {
    line-height: 1.12;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-price {
    display: inline-flex;
    margin: 2px 0 8px;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
    min-height: 50px;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
  }

  .section-head h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .section-head p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.58;
  }

  .card,
  .comparison-card,
  .insight-card,
  .cta-band {
    border-radius: 18px;
  }

  .feature-card {
    padding: 20px;
  }

  .movie-hero-stage {
    margin-top: 4px;
    box-shadow: 0 22px 72px rgba(0, 0, 0, 0.42);
  }

  .movie-hero-info h2 {
    font-size: 1.28rem;
  }

  .movie-hero-poster img {
    max-height: 310px;
    object-fit: cover;
  }

  .movie-hero-note {
    min-height: auto;
  }

  .app-screens-section {
    overflow: hidden;
  }

  .app-screens-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 12px;
    padding: 2px 12px 14px;
    margin: 0 -12px;
    scrollbar-width: none;
  }

  .app-screens-grid::-webkit-scrollbar {
    display: none;
  }

  .app-screen-card,
  .app-screen-card.wide,
  .app-screens-note {
    flex: 0 0 min(86%, 350px);
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: center;
  }

  .app-screen-card {
    border-radius: 18px;
  }

  .app-screen-card img,
  .app-screen-card.wide img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
  }

  .app-screen-card figcaption {
    padding: 13px 14px 16px;
    font-size: 0.93rem;
  }

  .app-screens-note {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 260px;
    padding: 20px;
  }

  .app-screens-note-pills {
    justify-content: flex-start;
  }

  .app-screens-note-pills span {
    width: 100%;
    border-radius: 14px;
  }

  .floating-contact {
    left: 8px;
    right: 8px;
    bottom: 8px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }

  .float-btn {
    min-width: 0;
    min-height: 42px;
    padding: 10px 6px;
    border-radius: 999px;
    font-size: 0.82rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
  }
}

@media (max-width: 380px) {
  .float-btn {
    font-size: 0.76rem;
  }

  .app-screen-card,
  .app-screen-card.wide,
  .app-screens-note {
    flex-basis: 88%;
  }
}

/* V13: IPTV-first conversion design */
:root {
  --bg: #05070b;
  --bg-soft: #0a0f16;
  --panel: rgba(13, 19, 28, 0.94);
  --panel-strong: rgba(16, 24, 35, 0.98);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f8fafc;
  --muted: #b8c2d0;
  --muted-2: #8893a2;
  --cyan: #49d7f5;
  --blue: #4e86ff;
  --pink: #f85c91;
  --red: #ff715f;
  --green: #29cc78;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

body {
  background: linear-gradient(180deg, #05070b 0%, #090e15 46%, #05070b 100%);
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: gridDrift 24s linear infinite;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 7, 11, 0.9);
}

.brand-logo {
  gap: 10px;
}

.brand-logo img,
.footer-brand img {
  width: 48px;
  height: 48px;
  max-height: 48px;
  border: 1px solid rgba(73, 215, 245, 0.28);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(73, 215, 245, 0.14);
  animation: logoGlow 4s ease-in-out infinite;
}

.brand-logo .brand-text {
  display: inline;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  max-height: 54px;
}

.nav-links a,
.menu-toggle,
.btn,
.float-btn {
  border-radius: 7px;
}

.btn {
  position: relative;
  min-height: 48px;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(105deg, var(--cyan), #68c8ff 42%, var(--blue));
  box-shadow: 0 14px 38px rgba(73, 215, 245, 0.16);
}

.btn-secondary {
  background: linear-gradient(105deg, var(--pink), var(--red));
}

.btn-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.38) 48%, transparent 78%);
  transform: translateX(-140%);
  animation: buttonSweep 4.6s ease-in-out infinite;
}

.home-hero,
.page-hero {
  padding: 78px 0 64px;
}

.home-hero::before,
.page-hero::before,
.section-accent::before {
  background:
    linear-gradient(115deg, rgba(73, 215, 245, 0.11), transparent 38%),
    linear-gradient(245deg, rgba(248, 92, 145, 0.07), transparent 34%);
}

h1 {
  max-width: 920px;
  font-size: clamp(2.7rem, 5.6vw, 4.7rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 3rem);
}

.eyebrow,
.pill,
.hero-price,
.tag {
  border-radius: 6px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(41, 204, 120, 0.5);
  animation: statusPulse 2.2s ease-out infinite;
}

.home-trust {
  margin-top: 24px;
}

.micro-trust {
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.hero-media {
  transform: none;
  animation: mediaDrift 7s ease-in-out infinite;
}

.hero-media::before {
  inset: 9% -3% -5%;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(73, 215, 245, 0.2), rgba(78, 134, 255, 0.06) 45%, rgba(248, 92, 145, 0.16));
  filter: blur(16px);
}

.hero-media img,
.visual-service-hero img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
}

.visual-service-hero {
  max-width: 560px;
  justify-self: end;
  animation: mediaDrift 7s ease-in-out infinite;
}

.media-badge {
  border-radius: 7px;
}

.card,
.cta-band,
.insight-card,
.comparison-card,
.promo-chip,
.movie-hero-stage,
.app-screen-card,
.app-screens-note,
.showcase-image,
.visual-service img {
  border-radius: 8px;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)), var(--panel);
}

.card::before {
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.065), transparent 28%);
}

.service-card.main::after {
  display: none;
}

.section-muted {
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.018);
}

.priority-section {
  padding-top: 88px;
}

.offer-stack {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.priority-service {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 210px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.iptv-priority {
  grid-column: 1 / -1;
  min-height: 250px;
  border-color: rgba(73, 215, 245, 0.35);
  background:
    linear-gradient(120deg, rgba(73, 215, 245, 0.12), transparent 42%),
    linear-gradient(300deg, rgba(78, 134, 255, 0.08), transparent 36%),
    var(--panel-strong);
}

.bundle-priority {
  grid-column: 1 / span 7;
  grid-template-columns: 54px minmax(0, 1fr);
  align-content: start;
  border-color: rgba(248, 92, 145, 0.28);
}

.bundle-priority .btn,
.app-priority .btn {
  grid-column: 2;
  justify-self: start;
}

.app-priority {
  grid-column: 8 / -1;
  grid-template-columns: 54px minmax(0, 1fr);
  align-content: start;
}

.offer-rank {
  align-self: start;
  color: rgba(255, 255, 255, 0.25);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
}

.priority-copy {
  max-width: 720px;
}

.priority-copy h3 {
  margin-top: 8px;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
}

.priority-copy p {
  margin-top: 12px;
  color: var(--muted);
}

.offer-label {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bundle-priority .offer-label {
  color: #ff8fb3;
}

.offer-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.offer-facts span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 5px;
  color: #dce5f0;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.86rem;
}

.secondary-services .service-card {
  min-height: 260px;
}

.package-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  overflow: hidden;
  border: 1px solid rgba(73, 215, 245, 0.28);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.calculator-controls,
.calculator-result {
  padding: 32px;
}

.choice-group {
  padding: 0;
  margin: 0 0 28px;
  border: 0;
}

.choice-group legend {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
}

.segmented-control {
  display: grid;
  gap: 8px;
}

.period-control {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.device-control {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.segmented-control button {
  min-height: 52px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-weight: 750;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.segmented-control button:hover {
  transform: translateY(-1px);
  border-color: rgba(73, 215, 245, 0.45);
}

.segmented-control button.active {
  border-color: var(--cyan);
  color: #041017;
  background: var(--cyan);
  box-shadow: 0 10px 30px rgba(73, 215, 245, 0.16);
}

.calculator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.calculator-fields label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.calculator-fields input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  outline: 0;
  color: var(--text);
  background: #0a1018;
}

.calculator-fields input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(73, 215, 245, 0.12);
}

.test-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(41, 204, 120, 0.25);
  border-radius: 7px;
  background: rgba(41, 204, 120, 0.055);
  cursor: pointer;
}

.test-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-visual {
  position: relative;
  width: 48px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.14);
  transition: background 160ms ease;
}

.toggle-visual::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 160ms ease;
}

.test-toggle input:checked + .toggle-visual {
  background: var(--green);
}

.test-toggle input:checked + .toggle-visual::after {
  transform: translateX(22px);
}

.test-toggle strong,
.test-toggle small {
  display: block;
}

.test-toggle small {
  margin-top: 2px;
  color: var(--muted);
}

.calculator-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(73, 215, 245, 0.1), transparent 45%),
    #0b111a;
}

.result-label {
  color: var(--muted);
  font-weight: 700;
}

.result-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}

.result-price strong {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.result-price span,
.monthly-equivalent {
  color: var(--muted);
}

.monthly-equivalent {
  margin-top: 10px;
}

.savings-box {
  display: grid;
  gap: 3px;
  margin-top: 26px;
  padding: 16px;
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  background: rgba(41, 204, 120, 0.07);
}

.savings-box span,
.savings-box small {
  color: var(--muted);
}

.savings-box strong {
  color: #67efa4;
  font-size: 1.55rem;
}

.calculator-order {
  width: 100%;
  margin-top: 26px;
}

.result-note,
.table-hint {
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 0.86rem;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.price-matrix {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  text-align: left;
}

.price-matrix th,
.price-matrix td {
  padding: 17px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.price-matrix thead th {
  color: #fff;
  background: #101824;
  font-size: 0.9rem;
}

.price-matrix tbody th {
  color: #fff;
  white-space: nowrap;
}

.price-matrix td {
  color: #fff;
  font-weight: 800;
}

.price-matrix td small {
  display: block;
  color: var(--muted-2);
  font-weight: 500;
}

.price-matrix .best-value {
  background: rgba(41, 204, 120, 0.065);
}

.price-matrix .best-value th {
  color: #67efa4;
}

.price-matrix .best-value th span {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
}

.price-matrix tbody tr:last-child th,
.price-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.bundle-banner,
.terms-panel,
.review-disclosure {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.bundle-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 32px;
  border-color: rgba(248, 92, 145, 0.28);
  background:
    linear-gradient(120deg, rgba(248, 92, 145, 0.1), transparent 45%),
    var(--panel);
}

.bundle-banner p:not(.page-kicker) {
  max-width: 780px;
  margin-top: 12px;
  color: var(--muted);
}

.info-grid .feature-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-grid .btn {
  width: fit-content;
  margin-top: auto;
}

.review-card {
  gap: 18px;
  min-height: 230px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-head strong,
.review-head span {
  display: block;
}

.review-head span {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 0.84rem;
}

.review-card p {
  color: #dfe6ef;
}

.review-disclosure {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding: 16px 18px;
}

.review-disclosure strong {
  white-space: nowrap;
}

.review-disclosure p {
  color: var(--muted);
  font-size: 0.92rem;
}

.terms-section {
  padding-top: 28px;
}

.terms-panel {
  max-width: 920px;
  padding: 28px;
  border-color: rgba(255, 113, 95, 0.25);
}

.terms-panel p:not(.page-kicker, .note) {
  margin-top: 16px;
  color: var(--muted);
}

.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-radius: 8px;
}

.conversion-band .cta-row {
  margin-top: 0;
}

.floating-contact {
  right: 16px;
  bottom: 16px;
  grid-template-columns: auto auto;
  gap: 8px;
}

.float-btn {
  min-width: auto;
  min-height: 46px;
}

.float-btn.whatsapp {
  background: #158f55;
}

.float-btn.call {
  color: #041017;
  background: var(--cyan);
}

.float-label-short {
  display: none;
}

.reveal {
  transition-delay: var(--reveal-delay, 0ms);
  transition-duration: 540ms;
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px; }
}

@keyframes mediaDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(73, 215, 245, 0.12); }
  50% { box-shadow: 0 0 28px rgba(248, 92, 145, 0.18); }
}

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(41, 204, 120, 0.48); }
  70% { box-shadow: 0 0 0 8px rgba(41, 204, 120, 0); }
  100% { box-shadow: 0 0 0 0 rgba(41, 204, 120, 0); }
}

@keyframes buttonSweep {
  0%, 58% { transform: translateX(-140%); }
  82%, 100% { transform: translateX(140%); }
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .brand-logo img {
    width: 44px;
    height: 44px;
  }

  .offer-stack {
    grid-template-columns: 1fr;
  }

  .iptv-priority,
  .bundle-priority,
  .app-priority {
    grid-column: 1;
  }

  .package-calculator {
    grid-template-columns: 1fr;
  }

  .calculator-result {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 0;
  }

  .bundle-banner,
  .conversion-band {
    grid-template-columns: 1fr;
  }

  .conversion-band .cta-row {
    margin-top: 4px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .brand-logo .brand-text {
    font-size: 0.9rem;
  }

  .home-hero,
  .page-hero {
    padding: 46px 0 40px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    overflow-wrap: anywhere;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 34px;
  }

  .hero-actions .btn,
  .cta-row .btn {
    min-width: 0;
    padding-inline: 12px;
    font-size: 0.96rem;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
  }

  .hero-media img,
  .visual-service-hero img {
    border-radius: 8px;
  }

  .media-badge {
    display: inline-block;
    width: calc(50% - 6px);
    margin-right: 7px;
    vertical-align: top;
  }

  .priority-service,
  .iptv-priority,
  .bundle-priority,
  .app-priority {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 22px;
  }

  .priority-service .btn,
  .bundle-priority .btn,
  .app-priority .btn {
    grid-column: 1;
    width: 100%;
    justify-self: stretch;
  }

  .offer-rank {
    font-size: 1.25rem;
  }

  .period-control {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .device-control {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .device-control button:last-child {
    grid-column: 1 / -1;
  }

  .calculator-controls,
  .calculator-result {
    padding: 22px;
  }

  .calculator-fields {
    grid-template-columns: 1fr;
  }

  .price-table-wrap {
    margin-right: -12px;
  }

  .price-matrix th,
  .price-matrix td {
    padding: 14px 13px;
  }

  .price-matrix thead th:first-child,
  .price-matrix tbody th {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #0e1621;
    box-shadow: 1px 0 rgba(255, 255, 255, 0.1);
  }

  .bundle-banner,
  .terms-panel,
  .cta-band {
    padding: 22px;
  }

  .review-disclosure {
    display: grid;
    gap: 5px;
  }

  .review-card {
    min-height: 0;
  }

  .floating-contact {
    left: 8px;
    right: 8px;
    bottom: 8px;
    grid-template-columns: minmax(0, 1fr) 86px;
  }

  .float-btn {
    min-height: 48px;
    border-radius: 7px;
    font-size: 0.84rem;
  }

  .float-label-full {
    display: inline;
  }
}

@media (max-width: 380px) {
  .brand-logo .brand-text {
    display: none;
  }

  .float-label-full {
    display: none;
  }

  .float-label-short {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .brand-logo img,
  .footer-brand img,
  .hero-media,
  .visual-service-hero,
  .status-dot,
  .btn-pulse::after {
    animation: none !important;
  }
}
