:root {
  --bg: #080808;
  --panel: #151515;
  --panel-soft: #202020;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --red: #e50914;
  --red-dark: #a90810;
  --orange: #ff8a00;
  --line: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 72px;
  padding: 0 clamp(18px, 4vw, 58px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.18));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.topbar.is-solid {
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
}

.brand {
  color: var(--orange);
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

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

.header-test-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.header-test-button:hover,
.header-test-button:focus-visible {
  background: #f40612;
}

.search input {
  width: min(22vw, 250px);
  min-width: 150px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  padding: 0 12px;
  outline: none;
}

.search input:focus {
  border-color: rgba(255, 255, 255, 0.68);
}

.profile {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 4px;
  background: var(--orange);
  color: white;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 132px clamp(18px, 4vw, 58px) 86px;
  text-align: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  opacity: 1;
  filter: brightness(1.12) contrast(1.02) saturate(1.08);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.46) 100%),
    linear-gradient(0deg, var(--bg), rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.16) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 28px 0;
}

.kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.2vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.86);
}

.meta,
.modal-meta {
  color: #e2e2e2;
  font-weight: 700;
}

.summary {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.45;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9);
}

.hero-buttons,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.signup {
  display: grid;
  grid-template-columns: minmax(230px, 360px) auto;
  justify-content: center;
  gap: 10px;
  margin: 26px auto 0;
  width: min(660px, 100%);
}

.phone-field input {
  width: 100%;
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: rgba(14, 14, 14, 0.74);
  color: white;
  padding: 0 20px;
  font-size: 1.1rem;
  outline: none;
  backdrop-filter: blur(3px);
}

.nl-phone {
  position: relative;
  display: block;
}

.nl-phone input {
  padding-left: 70px;
}

.phone-prefix {
  position: absolute;
  left: 20px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 900;
  pointer-events: none;
}

.phone-field input:focus {
  border-color: #fff;
}

.cta,
.try-button,
.buy-button {
  min-height: 56px;
  border: 0;
  border-radius: 4px;
  padding: 0 22px;
  color: #fff;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 900;
  white-space: nowrap;
}

.cta {
  background: var(--red);
}

.cta:hover {
  background: #f40612;
}

.try-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(109, 109, 110, 0.72);
  text-decoration: none;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.buy-button {
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 46px;
  padding: 0 18px;
  background: #16a34a;
}

.buy-button:hover {
  background: #22c55e;
}

.primary-try {
  background: var(--red);
}

.try-button:hover {
  background: rgba(109, 109, 110, 0.54);
}

.primary-try:hover {
  background: #f40612;
}

.primary-try:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 2px 0 0;
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.88);
}

.form-message.is-error {
  color: #ffb4b4;
}

.form-message.is-success {
  color: #b6ffc8;
}

.cta span {
  display: inline-block;
  margin-left: 12px;
  font-size: 1.25em;
  line-height: 0;
}

.primary,
.secondary,
.ghost {
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  padding: 0 22px;
  font-weight: 800;
}

.primary {
  background: #fff;
  color: #111;
}

.primary:hover {
  background: rgba(255, 255, 255, 0.78);
}

.secondary {
  background: rgba(109, 109, 110, 0.72);
  color: #fff;
}

.secondary:hover {
  background: rgba(109, 109, 110, 0.48);
}

.ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}

.rail-section {
  position: relative;
  padding: 0 clamp(18px, 4vw, 58px) 42px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
}

.kanalgo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kanalgo-marquee::before,
.kanalgo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 16vw);
  pointer-events: none;
}

.kanalgo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.kanalgo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.kanalgo-track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  width: max-content;
  padding: 14px;
  animation: kanalgo-marquee 42s linear infinite;
}

.poster-track {
  animation-duration: 46s;
}

.kanalgo-marquee:hover .kanalgo-track,
.kanalgo-marquee:focus-within .kanalgo-track {
  animation-play-state: paused;
}

@keyframes kanalgo-marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.kanalgo-card {
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  transition: transform 180ms ease, filter 180ms ease;
}

.kanalgo-card:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.08);
}

.kanalgo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-card {
  width: clamp(150px, 13vw, 190px);
  height: clamp(210px, 18vw, 260px);
}

.poster-card {
  width: clamp(150px, 13vw, 190px);
  height: clamp(220px, 19vw, 275px);
}

.install-steps {
  padding: 4px clamp(18px, 4vw, 58px) 42px;
}

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

.step-card {
  position: relative;
  min-height: 180px;
  padding: 24px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(229, 9, 20, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #151515;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.step-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(170px, 22vw, 270px);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 0 18px;
  scrollbar-width: thin;
  scrollbar-color: #444 transparent;
}

.compact {
  grid-auto-columns: clamp(160px, 19vw, 230px);
}

.card {
  position: relative;
  min-height: 152px;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--panel);
  color: #fff;
  text-align: left;
  transform-origin: center;
  transition: transform 180ms ease, filter 180ms ease;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-6px) scale(1.03);
  filter: brightness(1.12);
  outline: none;
}

.poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), transparent 62%),
    radial-gradient(circle at 78% 26%, var(--accent), transparent 28%),
    linear-gradient(135deg, var(--tone-a), var(--tone-b));
}

.poster::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
}

.poster-title {
  position: relative;
  margin: 0 0 6px;
  font-size: 1.08rem;
  line-height: 1.05;
  font-weight: 900;
}

.poster-meta {
  position: relative;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
}

.channel-rail .card {
  aspect-ratio: 16 / 8.2;
}

.channel-rail .poster {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}

.channel-rail .poster-title {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  text-transform: uppercase;
}

.plans-section {
  padding: 18px clamp(18px, 4vw, 58px) 56px;
  background:
    radial-gradient(circle at 20% 0%, rgba(229, 9, 20, 0.16), transparent 32%),
    linear-gradient(180deg, #080808, #101010);
}

.plans-inner {
  max-width: 1380px;
  margin: 0 auto;
}

.plans-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.plans-head .refund-note {
  display: inline-flex;
  margin-top: 12px;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.32);
  color: #b6ffc8;
  font-weight: 900;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #151515;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
}

.plan-card.featured {
  border-color: rgba(229, 9, 20, 0.7);
  background:
    radial-gradient(circle at 86% 8%, rgba(229, 9, 20, 0.32), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    #171010;
}

.plan-badge {
  align-self: flex-start;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.plan-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1;
}

.plan-duration,
.plan-meta {
  color: var(--muted);
}

.plan-duration {
  margin-bottom: 8px;
  font-weight: 800;
}

.plan-price {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
}

.plan-list {
  display: grid;
  gap: 11px;
  list-style: none;
  padding: 0;
  margin: 14px 0 24px;
  color: rgba(255, 255, 255, 0.84);
}

.plan-list li {
  position: relative;
  padding-left: 24px;
  line-height: 1.35;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: auto;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  transition: filter 160ms ease, transform 160ms ease;
}

.plan-button:hover,
.plan-button:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.gold-button {
  background: linear-gradient(135deg, #f5b842, #dfaf37);
  color: #211704;
}

.reviews-section {
  padding: 12px clamp(18px, 4vw, 58px) 58px;
  background:
    radial-gradient(circle at 82% 0%, rgba(229, 9, 20, 0.12), transparent 30%),
    #080808;
}

.reviews-head {
  align-items: flex-end;
}

.reviews-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.rating-pill {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

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

.review-card {
  min-height: 230px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.03)),
    #151515;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.review-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.review-top strong {
  font-size: 1.1rem;
}

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

.stars {
  color: #f5b842;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.review-card p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
  margin-bottom: 0;
}

.modal {
  width: min(820px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--panel);
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  overflow: hidden;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
}

.modal-preview {
  min-height: 270px;
  background:
    linear-gradient(0deg, var(--panel), transparent 48%),
    radial-gradient(circle at 74% 28%, var(--accent, #e50914), transparent 28%),
    linear-gradient(135deg, var(--tone-a, #111), var(--tone-b, #333));
}

.modal-body {
  padding: 24px;
}

.modal-body h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.95;
}

.modal-body p:not(.kicker):not(.modal-meta) {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(18px, 4vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 138, 0, 0.14), transparent 30%),
    #050505;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 460px;
}

.footer-logo {
  color: var(--orange);
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
}

.footer-brand p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  gap: 10px;
}

.footer-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.copyright {
  flex-basis: 100%;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
}

.floating-contact {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 20;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.floating-lead {
  display: none;
  grid-template-columns: minmax(230px, 300px);
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.floating-contact.is-open .floating-lead {
  display: grid;
}

.whatsapp-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.34);
}

.whatsapp-mark svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.floating-phone {
  position: relative;
  display: block;
}

.floating-phone input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 10px 0 54px;
  outline: none;
}

.floating-phone .phone-prefix {
  left: 14px;
  font-size: 0.95rem;
}

.floating-lead button {
  min-height: 42px;
  border: 0;
  border-radius: 4px;
  background: #22c55e;
  color: #fff;
  padding: 0 14px;
  font-weight: 900;
  cursor: pointer;
  width: 100%;
}

.floating-lead button:hover {
  background: #16a34a;
}

.floating-lead button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.floating-message {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: #b6ffc8;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.floating-message.is-error {
  color: #ffb4b4;
}

.page-main {
  min-height: 100vh;
  padding: 120px clamp(18px, 4vw, 58px) 64px;
  background:
    radial-gradient(circle at 20% 0%, rgba(229, 9, 20, 0.16), transparent 34%),
    linear-gradient(180deg, #080808, #111);
}

.page-shell {
  max-width: 920px;
  margin: 0 auto;
}

.page-logo {
  width: min(260px, 70vw);
  margin-bottom: 30px;
}

.page-card {
  padding: clamp(24px, 4vw, 44px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.page-card h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin-bottom: 16px;
}

.page-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
}

.page-card p,
.page-card li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.page-card ul {
  padding-left: 20px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 4px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.page-button.secondary-link {
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 820px) {
  .topbar {
    min-height: 64px;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .actions {
    margin-left: auto;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .floating-lead {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
  }

  .whatsapp-mark {
    width: 38px;
    height: 38px;
  }

  .header-test-button {
    min-height: 34px;
    padding: 0 12px;
  }

  .hero {
    min-height: 84vh;
    padding-top: 150px;
    padding-bottom: 58px;
    text-align: center;
    justify-content: center;
  }

  .hero-shade {
    background:
      radial-gradient(circle at center, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.62) 66%, rgba(0, 0, 0, 0.78) 100%),
      linear-gradient(0deg, var(--bg), rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.42) 100%);
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .summary {
    margin-left: auto;
    margin-right: auto;
  }

  .rail {
    grid-auto-columns: minmax(210px, 72vw);
  }

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

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

  .reviews-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .plan-card {
    min-height: auto;
  }

  .signup {
    grid-template-columns: 1fr;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .phone-field input,
  .cta,
  .try-button,
  .buy-button {
    min-height: 58px;
  }
}

@media (max-width: 520px) {
  body {
    overflow-x: hidden;
  }

  .topbar {
    align-items: flex-start;
    gap: 10px;
  }

  .brand {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
    flex: 1 1 100%;
  }

  .actions {
    width: 100%;
    justify-content: space-between;
    margin-left: 0;
  }

  .header-test-button {
    flex: 1;
  }

  .profile {
    width: 34px;
    height: 34px;
  }

  .nav {
    gap: 16px;
    font-size: 0.94rem;
    padding-bottom: 6px;
  }

  .nav a {
    flex: 0 0 auto;
  }

  h1 {
    font-size: 2.55rem;
  }

  .summary {
    font-size: 1rem;
  }

  .reviews-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .reviews-head {
    gap: 12px;
  }

  .reviews-head h2 {
    max-width: 100%;
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .reviews-head p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .rating-pill {
    align-self: flex-start;
    max-width: 100%;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.92rem;
    white-space: normal;
  }

  .hero-buttons .primary,
  .hero-buttons .secondary {
    flex: 1 1 135px;
  }

  .modal-preview {
    min-height: 210px;
  }

  .floating-lead {
    grid-template-columns: 1fr;
  }

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

  .plan-card {
    padding: 20px;
    overflow: hidden;
  }

  .plan-card h3 {
    font-size: 1.9rem;
  }

  .plan-price {
    font-size: 2.25rem;
  }

  .plan-list li {
    font-size: 0.95rem;
  }

}
