:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5c667a;
  --line: #d7deea;
  --bg: #f5f7fb;
  --panel: #ffffff;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --blue: #194a8d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, .10), transparent 34rem),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fb 40%, #eef3f8 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.presell-header {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--blue);
  text-decoration: none;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: 148px;
  height: 58px;
  overflow: hidden;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

nav a {
  color: var(--muted);
  font-size: .95rem;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(34px, 7vw, 78px) clamp(18px, 5vw, 64px) 34px;
  max-width: 1180px;
  margin: 0 auto;
}

.offer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 24px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 78px) clamp(18px, 5vw, 64px) 34px;
}

.presell-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 30px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 82px) clamp(18px, 5vw, 64px) 40px;
}

.hero-copy,
.hero-panel,
.offer-hero > div,
.quick-verdict,
.presell-copy,
.product-visual,
.decision-card,
.category-card,
.page {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(23, 32, 51, .10);
}

.hero-copy {
  padding: clamp(26px, 5vw, 52px);
}

.offer-hero > div,
.quick-verdict,
.presell-copy {
  position: relative;
  overflow: hidden;
  border-color: rgba(25, 74, 141, .16);
  padding: clamp(24px, 5vw, 46px);
}

.presell-copy::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(249, 115, 22, .12);
  pointer-events: none;
}

.presell-copy > * {
  position: relative;
  z-index: 1;
}

.product-visual {
  margin: 0;
  padding: 18px;
  background: #ffffff;
  position: relative;
}

.product-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.04;
  object-fit: contain;
  border-radius: 8px;
  background: linear-gradient(180deg, #f9fbff 0%, #edf4ff 100%);
  border: 1px solid #e5ecf6;
}

.product-visual figcaption {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 12px;
  text-align: center;
}

.visual-label {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
  background: #101827;
  color: #ffffff;
  border-radius: 999px;
  padding: 7px 11px;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.cta-large {
  min-height: 58px;
  font-size: 1.02rem;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid #dbe5f2;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--muted);
  background: #f8fbff;
  font-size: .9rem;
  font-weight: 700;
}

.price-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0 0 22px;
  padding: 18px;
  border-radius: 8px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.price-box strong {
  display: block;
  color: #9a3412;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: .95;
}

.price-box p {
  color: #7c2d12;
  margin: 0;
  font-weight: 700;
}

.price-kicker {
  display: block;
  color: #c2410c;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: .78rem;
}

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

h1 {
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: .97;
  letter-spacing: 0;
  margin-bottom: 18px;
  max-width: 820px;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  max-width: 720px;
  margin-bottom: 24px;
}

.badge,
.rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eaf1ff;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 16px;
}

.rank {
  width: 34px;
  height: 34px;
  padding: 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 7px;
  background: var(--ink);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.cta.primary {
  min-height: 54px;
  padding-inline: 24px;
  background: linear-gradient(180deg, #ffad33 0%, #f97316 100%);
  color: #111827;
  box-shadow: 0 12px 24px rgba(249, 115, 22, .28);
  transition: transform .16s ease, box-shadow .16s ease;
}

.cta.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(249, 115, 22, .34);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px clamp(18px, 5vw, 64px);
}

.section.alt {
  background: #ffffff;
  max-width: none;
}

.section.alt > * {
  max-width: 1052px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading.centered {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.presell-hero h1 {
  max-width: 760px;
}

.presell-hero .lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.decision-card,
.category-card {
  padding: 22px;
}

.decision-card p,
.category-card span,
.hero-panel p,
.check-list p {
  color: var(--muted);
}

.category-card {
  display: grid;
  gap: 8px;
  text-decoration: none;
  min-height: 150px;
}

.category-card strong {
  color: var(--blue);
  font-size: 1.15rem;
}

.compact {
  padding-bottom: 58px;
}

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

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

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

.benefit-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(23, 32, 51, .07);
}

.benefit-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #101827;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 14px;
}

.benefit-card p {
  color: var(--muted);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(23, 32, 51, .07);
}

.featured-package {
  border: 2px solid #f97316;
  transform: translateY(-8px);
  box-shadow: 0 22px 54px rgba(249, 115, 22, .18);
}

.package-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eaf1ff;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-package .package-label {
  background: #fff7ed;
  color: #c2410c;
}

.package-price {
  color: #101827;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: .95;
  font-weight: 900;
  margin-bottom: 0;
}

.package-price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.package-card ul {
  display: grid;
  gap: 8px;
  color: var(--muted);
  padding-left: 18px;
  margin: 0 0 6px;
}

.package-card .cta {
  margin-top: auto;
}

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

.faq-list article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(23, 32, 51, .05);
}

.faq-list p {
  color: var(--muted);
}

.fit-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(23, 32, 51, .07);
}

.fit-card.good {
  border-top: 5px solid #15803d;
}

.fit-card.avoid {
  border-top: 5px solid #b91c1c;
}

.fit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #15803d;
  font-weight: 900;
  margin-bottom: 13px;
}

.fit-card.avoid .fit-icon {
  background: #fef2f2;
  color: #b91c1c;
}

.presell-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1052px;
  margin: 12px auto 34px;
  padding: clamp(22px, 5vw, 34px);
  background: linear-gradient(135deg, #101827 0%, #18335d 100%);
  color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(23, 32, 51, .18);
}

.presell-band p {
  color: #d7deea;
  margin-bottom: 0;
}

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

.review-layout article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(23, 32, 51, .05);
}

.comparison-table {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 32, 51, .06);
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: #eaf1ff;
  color: var(--blue);
}

.final-cta {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 5vw, 38px);
  box-shadow: 0 18px 46px rgba(23, 32, 51, .10);
}

.final-cta-strong {
  border: 2px solid transparent;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #f97316, #194a8d) border-box;
}

.fine-print {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 18px;
}

.check-list p {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px;
  margin: 0;
}

.page {
  max-width: 850px;
  margin: 42px auto;
  padding: clamp(24px, 5vw, 48px);
}

.page.legal p {
  color: var(--muted);
}

.site-footer {
  display: grid;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 64px);
  background: #101827;
  color: #d7deea;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 136px;
    height: 54px;
  }

  .hero,
  .offer-hero,
  .presell-hero,
  .decision-grid,
  .category-grid,
  .check-list,
  .review-layout,
  .benefit-grid,
  .package-grid,
  .faq-list,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .featured-package {
    transform: none;
  }

  .price-box {
    grid-template-columns: 1fr;
  }

  .presell-band {
    align-items: stretch;
    flex-direction: column;
  }

  .visual-label {
    top: 26px;
    left: 26px;
  }

  .hero-copy,
  .hero-panel {
    box-shadow: none;
  }
}
