:root {
  --blue: #2563eb;
  --blue-dark: #1e40af;
  --green: #22c55e;
  --yellow: #eab308;
  --ink: #0f172a;
  --muted: #64748b;
  --soft: #f8fafc;
  --line: #e5e7eb;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 46px 0 32px;
}

.light {
  background: #f9fafb;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 8px;
  padding: 12px 24px;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.16);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-dark {
  background: #1f2937;
}

.button-dark:hover {
  background: #111827;
}

.button-whatsapp {
  background: #25d366;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.button-whatsapp:hover {
  background: #1fb457;
}

.button-whatsapp img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.button-outline {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #111827;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.button-outline:hover {
  background: #f8fafc;
}

.button-large {
  min-height: 56px;
  border-radius: 8px;
  font-size: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

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

.logo-link img {
  height: 40px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon-button:hover {
  background: #f3f4f6;
  color: #111827;
}

.icon-button svg,
.purchase-toast button svg,
#closeVideo svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  padding: 8px;
  background: rgba(15, 23, 42, 0.16);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mobile-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 8px;
}

.mobile-card-head img {
  height: 40px;
}

.mobile-card > a {
  display: block;
  padding: 11px 20px;
  color: #374151;
  font-weight: 500;
}

.mobile-card > a:hover {
  background: #f9fafb;
}

.hero {
  text-align: center;
}

.hero-inner {
  max-width: 930px;
}

.hero h1 {
  margin: 0 auto;
  max-width: 950px;
  font-size: 78px;
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 600;
}

.marked {
  position: relative;
  display: inline-block;
  color: var(--blue-dark);
  white-space: nowrap;
  z-index: 0;
  isolation: isolate;
}

.marked svg {
  position: absolute;
  left: 0;
  top: 58%;
  z-index: -1;
  width: 100%;
  height: 0.58em;
  fill: rgba(30, 64, 175, 0.5);
}

.hero-copy,
.section-copy {
  color: #475569;
  max-width: 700px;
  margin: 24px auto 0;
}

.hero-video {
  width: min(100%, 710px);
  max-height: 400px;
  margin: 22px auto 0;
  border-radius: 8px;
  background: #111827;
  box-shadow: var(--shadow);
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-note {
  margin: 14px auto 0;
  max-width: 620px;
  color: #16a34a;
  font-size: 14px;
  font-weight: 500;
}

.money-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 300;
  margin: 10px 0 0;
}

.money-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 2px solid #9ca3af;
  color: #1f2937;
  font-weight: 700;
  font-size: 13px;
}

.stats-wrap {
  padding: 32px 0 20px;
}

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

.stat-card {
  position: relative;
  min-height: 145px;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px 24px 64px 88px;
  overflow: hidden;
}

.stat-icon {
  position: absolute;
  left: 24px;
  top: 22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
}

.stat-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.stat-card p {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.stat-card strong {
  display: block;
  margin-top: 6px;
  color: #111827;
  font-size: 26px;
}

.stat-card a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 24px;
  background: #f9fafb;
  color: #4f46e5;
  font-size: 14px;
  font-weight: 600;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 940px;
}

.compare-grid h2 {
  margin: 0 0 14px;
  text-align: center;
  color: #ca8a04;
  font-size: 20px;
}

.feature-list {
  margin: 0;
  padding: 18px;
  list-style: none;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 8px;
  font-size: 18px;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li::before,
.plan-card li::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background: url("https://fireviewtv.com/svg/check-circle-green.svg") center / contain no-repeat;
}

.feature-list li.bad::before {
  background-image: url("https://fireviewtv.com/svg/close-circle-red.svg");
}

.brand-band {
  background: #1f2937;
  overflow: hidden;
  padding: 18px 0 34px;
}

.brand-row {
  display: flex;
  width: max-content;
  gap: 34px;
  align-items: center;
  padding: 14px 0;
  animation: marquee 30s linear infinite;
}

.brand-row-reverse {
  animation-direction: reverse;
  animation-duration: 34s;
}

.brand-row img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: saturate(1.05);
}

@keyframes marquee {
  from {
    transform: translateX(2%);
  }
  to {
    transform: translateX(-32%);
  }
}

.search-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 230px;
  margin: 22px auto 0;
  padding: 8px 24px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-button:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

.search-button span {
  text-align: center;
  line-height: 1.25;
}

.search-button strong,
.search-button small {
  display: block;
}

.search-button small {
  font-size: 12px;
  font-weight: 300;
}

.search-button svg,
.access-button svg,
.risk-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.split-grid.reverse .copy-stack {
  order: 2;
}

.copy-stack h2,
.how h2,
.reviews h2,
.video-stories h2,
.pricing-head h2,
.why h2,
.guarantee h2 {
  margin: 0;
  color: #111827;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 600;
}

.copy-stack {
  display: grid;
  gap: 22px;
}

.media-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.blue-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 6px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
}

.blue-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.media-feature h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 500;
}

.media-feature p {
  margin: 0;
  color: #4b5563;
}

.image-panel img {
  width: 100%;
  border-radius: 8px;
}

.poster-stack {
  display: grid;
  gap: 18px;
}

.mini-tv {
  border-radius: 8px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(34, 197, 94, 0.1)),
    #111827;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mini-tv img {
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.movie-search {
  margin-top: 0;
}

.how {
  background: #f9fafb;
  border: 3px solid #ecf0fa;
}

.how h2 {
  text-align: center;
  margin-bottom: 44px;
}

.how h2 span {
  color: var(--blue);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  gap: 0;
  align-items: start;
}

.steps article {
  text-align: center;
}

.steps img {
  height: 110px;
  margin: 0 auto 22px;
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.steps p {
  margin: 0 auto;
  max-width: 260px;
  color: #374151;
  font-size: 14px;
}

.step-arrow {
  width: 80px;
  height: 80px;
  margin-top: 35px;
  color: #355dbe;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.reviews,
.video-stories,
.pricing,
.why {
  text-align: center;
}

.stars-large {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
}

.stars-large img {
  width: 30px;
  height: 30px;
}

.review-rail,
.story-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 24px 10px 10px;
  margin: 0 -10px;
}

.review-card {
  scroll-snap-align: start;
  flex: 0 0 290px;
  min-height: 200px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  text-align: left;
  padding: 20px;
  position: relative;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #f87171;
  font-size: 12px;
  text-decoration: underline;
}

.review-top .stars {
  color: #00b67a;
  text-decoration: none;
  letter-spacing: 0;
}

.review-card h3 {
  font-size: 14px;
  margin: 24px 0 6px;
  font-weight: 500;
}

.review-card p {
  margin: 0;
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.65;
}

.review-card footer {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.review-card footer a {
  color: #60a5fa;
  text-decoration: underline;
}

.review-card footer span {
  color: #6b7280;
  font-size: 12px;
}

.access-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(100%, 448px);
  min-height: 52px;
  margin-top: 26px;
  padding: 12px 24px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
}

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

.story-card {
  flex: 0 0 350px;
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
}

.story-image {
  position: relative;
}

.story-image button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  animation: pulse 1.8s infinite;
}

.story-image button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

.story-card p {
  height: 180px;
  margin: 0;
  padding: 30px;
  color: #fff;
  text-align: left;
  font-weight: 300;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  align-items: start;
  max-width: 1100px;
}

.faq-intro {
  text-align: left;
}

.faq-intro h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
}

.faq-intro h2 span {
  font-weight: 600;
}

.faq-intro p {
  margin: 14px 0 6px;
}

.faq-intro small {
  color: #6b7280;
}

.accordion {
  display: grid;
  gap: 8px;
}

.accordion details {
  background: #fff;
  border-radius: 4px;
  text-align: left;
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 18px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "+";
  color: #334155;
  line-height: 1;
}

.accordion details[open] summary::after {
  content: "-";
}

.accordion p {
  margin: 0;
  padding: 0 18px 18px;
  color: #374151;
}

.pricing-head p {
  max-width: 720px;
  margin: 14px auto 0;
  color: #6b7280;
}

.pricing-kicker {
  margin: 0;
  color: #16a34a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.device-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.device-tab {
  flex: 1 1 140px;
  min-width: 120px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.device-tab:hover {
  transform: translateY(-1px);
}

.device-tab.is-active {
  border-color: #25d366;
  background: #25d366;
  color: #fff;
}

.pricing-tier-note {
  margin: 16px auto 0;
  max-width: 620px;
  text-align: center;
  color: #4b5563;
  font-size: 14px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.plan-grid.is-contact-only {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.plan-card {
  position: relative;
  text-align: left;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 36px 24px 24px;
  border: 1px solid transparent;
}

.plan-card.best {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.16);
}

.save-tag {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  padding: 4px 10px;
  border-radius: 0 0 4px 4px;
  background: #9ca3af;
  color: #fff;
  font-size: 12px;
}

.best .save-tag {
  background: var(--yellow);
}

.plan-tier-label {
  margin: 0 0 8px;
  color: #16a34a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0 0 10px;
  color: #1f2937;
  font-size: 20px;
  font-weight: 500;
}

.price {
  margin: 0;
  color: #111827;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.price.is-quote {
  font-size: 28px;
}

.price span {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 600;
}

.billing {
  min-height: 34px;
  margin: 8px 0 0;
  color: #4b5563;
  text-align: left;
  font-size: 12px;
}

.billing del {
  color: #ef4444;
  margin-right: 4px;
}

.plan-card ul {
  list-style: none;
  margin: 20px 0 24px;
  padding: 0;
}

.plan-card li {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  color: #4b5563;
  font-size: 14px;
}

.plan-card li::before {
  width: 20px;
  height: 20px;
}

.plan-card .button {
  width: 100%;
  min-height: 42px;
  border-radius: 6px;
  padding-block: 9px;
}

.plan-actions {
  display: grid;
  gap: 12px;
}

.plan-card-contact .price {
  margin-top: 4px;
}

.plan-card-contact .billing {
  min-height: 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  margin-top: 48px;
  text-align: left;
}

.why-grid article {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
}

.why-icon {
  width: 108px;
  height: 108px;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.12);
}

.why-grid h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 400;
}

.why-grid p {
  margin: 0;
  color: #9ca3af;
}

.guarantee {
  background: var(--blue);
  color: #fff;
  padding: 64px 0;
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 48px;
  max-width: 900px;
  align-items: center;
}

.guarantee img {
  width: 280px;
  margin: auto;
}

.guarantee h2 {
  color: #fff;
}

.guarantee p {
  margin: 16px 0 0;
  font-size: 14px;
}

.legal-page-main {
  padding: 52px 0 88px;
}

.legal-hero {
  padding: 18px 0 36px;
  border-bottom: 1px solid var(--line);
}

.legal-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 10px 0 12px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
}

.legal-subtitle {
  margin: 0;
  max-width: 760px;
  color: #64748b;
  font-size: 18px;
}

.legal-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
  padding-top: 34px;
}

.legal-sidebar {
  position: sticky;
  top: 118px;
  align-self: start;
}

.legal-sidebar h2 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-sidebar nav {
  display: grid;
  gap: 14px;
}

.legal-sidebar a {
  color: #64748b;
  font-size: 18px;
}

.legal-sidebar a:hover,
.legal-sidebar a[aria-current="page"] {
  color: var(--ink);
}

.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
}

.legal-content h3 {
  margin: 30px 0 8px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  color: #334155;
  font-size: 15px;
}

.legal-content p {
  margin: 0 0 12px;
}

.legal-content ul {
  margin: 0 0 18px 18px;
  padding: 0 0 0 18px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--blue);
}

.legal-note {
  color: #64748b;
}

.risk-button {
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  margin-top: 24px;
  padding-inline: 22px;
}

.site-footer {
  background: #f9fafb;
  padding: 86px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 1fr);
  gap: 44px;
  padding-bottom: 70px;
  border-bottom: 1px solid #e5e7eb;
}

.footer-grid img {
  height: 40px;
  width: auto;
}

.footer-grid p {
  margin: 14px 0 0;
  color: #4b5563;
  font-size: 14px;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-grid h2 {
  margin: 0 0 4px;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-grid a {
  color: #6b7280;
  font-size: 14px;
}

.footer-grid a:hover {
  color: #111827;
}

.copyright {
  margin: 0;
  padding: 20px 16px;
  text-align: center;
  color: #111827;
  font-size: 14px;
}

.copyright a {
  color: var(--blue);
}

.purchase-toast {
  position: fixed;
  left: 20px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: stretch;
  width: min(420px, calc(100vw - 32px));
  min-height: 104px;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.purchase-toast.is-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.purchase-toast > img {
  width: 80px;
  object-fit: cover;
  padding: 20px 0;
}

.purchase-toast a {
  flex: 1;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 14px 44px 14px 12px;
  line-height: 1.25;
}

.purchase-toast strong,
.purchase-toast small {
  display: block;
}

.purchase-toast small {
  color: #1f2937;
  font-size: 13px;
}

.purchase-toast em {
  justify-self: start;
  margin-top: 2px;
  padding: 2px 8px;
  border-radius: 5px;
  background: var(--yellow);
  color: #fff;
  font-size: 12px;
  font-style: normal;
}

.purchase-toast button {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #ef4444;
  cursor: pointer;
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(15, 23, 42, 0.78);
  padding: 28px;
}

.video-modal.is-open {
  display: grid;
  place-items: center;
}

.video-dialog {
  position: relative;
  width: min(900px, 100%);
  border-radius: 8px;
  background: #050816;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.video-dialog video {
  width: 100%;
  border-radius: 8px;
}

#closeVideo {
  position: absolute;
  right: -12px;
  top: -12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  display: grid;
  place-items: center;
  cursor: pointer;
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

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

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

  .split-grid,
  .split-grid.reverse,
  .faq-layout,
  .guarantee-inner {
    grid-template-columns: 1fr;
  }

  .legal-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-sidebar nav {
    grid-template-columns: repeat(3, minmax(0, max-content));
    gap: 18px;
  }

  .split-grid.reverse .copy-stack {
    order: 0;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .step-arrow {
    display: none;
  }

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

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

  .hero h1 {
    font-size: 60px;
  }

  .copy-stack h2,
  .how h2,
  .reviews h2,
  .video-stories h2,
  .pricing-head h2,
  .why h2,
  .guarantee h2 {
    font-size: 36px;
  }
}

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

  .section {
    padding: 52px 0;
  }

  .nav-shell {
    height: 76px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .legal-hero h1 {
    font-size: 34px;
  }

  .legal-subtitle {
    font-size: 16px;
  }

  .marked {
    white-space: normal;
  }

  .stats-grid,
  .compare-grid,
  .plan-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .device-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 8px;
    margin-inline: -2px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .device-tabs::-webkit-scrollbar {
    display: none;
  }

  .device-tab {
    flex: 0 0 auto;
    min-width: 136px;
    scroll-snap-align: start;
  }

  .plan-card {
    padding-inline: 20px;
  }

  .stat-card {
    padding-right: 18px;
  }

  .split-grid,
  .split-grid.reverse {
    gap: 32px;
  }

  .media-feature {
    gap: 14px;
  }

  .feature-list li {
    font-size: 16px;
  }

  .story-card {
    flex-basis: 300px;
  }

  .legal-sidebar nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-card p {
    height: 210px;
  }

  .review-card {
    flex-basis: 260px;
  }

  .why-grid article {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-icon {
    margin: 0 auto;
  }

  .guarantee {
    text-align: left;
  }

  .purchase-toast {
    left: 8px;
    right: 8px;
    bottom: 10px;
    width: auto;
  }

  .purchase-toast > img {
    width: 68px;
  }

  .purchase-toast span {
    display: none;
  }
}
