:root {
  color-scheme: light;
  --black: #121212;
  --charcoal: #2a2a2a;
  --orange: #f47a16;
  --orange-dark: #cc5700;
  --light: #f4f4f4;
  --mid: #6b6b6b;
  --border: #e6e6e6;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(18, 18, 18, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

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

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  margin: 0;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 90px 0;
}

.top-bar {
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 10px 18px;
  background: var(--black);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.top-bar span + span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 24px;
  border-radius: 50%;
  background: var(--orange);
  vertical-align: middle;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  width: 206px;
  height: 48px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--black);
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 900;
}

.site-nav a {
  text-decoration: none;
  color: var(--charcoal);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange-dark);
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.button-primary,
.nav-cta {
  background: var(--orange);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--border);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  padding: 84px 0 92px;
  background:
    linear-gradient(90deg, rgba(244, 122, 22, 0.1), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.hero-grid,
.split-grid,
.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1fr);
}

.hero h1,
h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(3.5rem, 9vw, 7.7rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.22;
}

p {
  margin: 0;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lede,
.section-intro p,
.copy-panel p,
.confidence-panel p,
.final-grid p {
  margin-top: 22px;
  color: var(--mid);
  font-size: 1.08rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.chip-list li {
  padding: 9px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.reference-note {
  margin-top: 18px;
  padding-left: 14px;
  border-left: 4px solid var(--orange);
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 800;
}

.reference-note.dark {
  color: var(--black);
}

.hero-media,
.image-panel,
.final-grid img {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--light);
  box-shadow: var(--shadow);
}

.hero-media img,
.image-panel img,
.final-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.copy-panel {
  max-width: 620px;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--orange-dark);
  font-weight: 950;
  text-underline-offset: 5px;
}

.features,
.pricing,
.faq {
  background: var(--light);
}

.section-intro {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.feature-grid,
.price-grid,
.step-grid,
.review-grid,
.trust-strip {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.step-card,
.price-card,
.review-card,
.confidence-panel,
details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(18, 18, 18, 0.06);
}

.feature-card {
  padding: 24px;
}

.feature-card span,
.step-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--black);
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
}

.feature-card p,
.step-card p,
.price-card p,
.review-card p {
  margin-top: 12px;
  color: var(--mid);
}

.feature-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--charcoal);
  font-weight: 850;
}

.check-mark {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 950;
}

.steps {
  background: var(--black);
  color: var(--white);
}

.steps h2,
.steps h3 {
  color: var(--white);
}

.steps .section-intro p,
.steps .eyebrow {
  color: var(--orange);
}

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

.step-card {
  padding: 24px;
  background: #1d1d1d;
  border-color: #383838;
}

.step-card span {
  background: var(--orange);
  color: var(--black);
}

.step-card p {
  color: rgba(255, 255, 255, 0.72);
}

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

.price-card {
  position: relative;
  padding: 20px;
  text-align: center;
}

.price-card.best-card {
  border: 2px solid var(--orange);
  box-shadow: 0 26px 64px rgba(244, 122, 22, 0.2);
  transform: translateY(-10px);
}

.deal-ribbon {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
}

.price-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
  background: var(--light);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(244, 122, 22, 0.12);
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 950;
}

.badge.subtle {
  color: var(--charcoal);
  background: var(--light);
}

.save {
  color: var(--orange-dark) !important;
  font-weight: 950;
}

.price {
  color: var(--black) !important;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 950;
}

.price span {
  font-size: 1rem;
  color: var(--mid);
}

.price-card .button {
  width: 100%;
  margin-top: 22px;
}

.trust-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.trust-strip div {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--mid);
  font-size: 0.92rem;
}

.confidence {
  background: var(--white);
}

.confidence-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px;
  background: linear-gradient(135deg, #ffffff 0%, #fff1e7 100%);
}

.confidence-panel div {
  max-width: 760px;
}

.reviews {
  background: var(--white);
}

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

.review-card {
  padding: 24px;
}

.stars {
  margin: 0 0 10px !important;
  color: var(--orange) !important;
  letter-spacing: 0;
  font-size: 1rem;
}

.review-card span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--black);
  font-weight: 950;
}

.faq-list {
  max-width: 860px;
  margin-inline: auto;
}

details {
  margin-bottom: 12px;
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 950;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 1.35rem;
  line-height: 1;
}

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

details p {
  padding: 0 22px 20px;
  color: var(--mid);
}

.final-cta {
  background: linear-gradient(135deg, var(--black) 0%, #282828 100%);
  color: var(--white);
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.final-cta p {
  opacity: 0.78;
}

.site-footer {
  padding: 48px 0 96px;
  background: #080808;
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}

.footer-logo {
  width: 230px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.footer-inner p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.copyright {
  margin-top: 12px;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.legal-links button {
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-links button:hover,
.legal-links button:focus-visible {
  color: var(--white);
}

.sticky-offer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
}

.sticky-offer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow);
  font-weight: 950;
  text-decoration: none;
}

.modal-overlay,
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.68);
}

.modal-overlay[hidden],
.exit-overlay[hidden] {
  display: none;
}

.legal-modal,
.exit-panel {
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.36);
}

.legal-modal {
  padding: 34px;
}

.legal-modal h2,
.exit-panel h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
}

.modal-body {
  margin-top: 18px;
  color: var(--mid);
}

.modal-body p + p {
  margin-top: 14px;
}

.modal-close,
.exit-close {
  float: right;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 950;
}

.exit-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.exit-panel > img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.exit-copy {
  align-self: center;
  padding: 38px;
}

.exit-copy > p {
  margin-top: 16px;
  color: var(--mid);
}

.exit-panel .button {
  width: 100%;
  margin-top: 24px;
}

@media (max-width: 980px) {
  .top-bar {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .top-bar span + span::before {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero-grid,
  .split-grid,
  .reverse,
  .final-grid,
  .feature-layout,
  .exit-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .price-grid,
  .step-grid,
  .review-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .price-card.best-card {
    transform: none;
  }

  .feature-image img,
  .exit-panel > img {
    min-height: 260px;
    aspect-ratio: 1.35;
  }

  .confidence-panel,
  .footer-inner {
    display: grid;
  }

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

  .sticky-offer {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section-pad {
    padding: 70px 0;
  }

  .hero {
    padding: 64px 0 72px;
  }

  .logo-wrap {
    width: 168px;
    height: 42px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 21vw, 5rem);
  }

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

  .legal-modal,
  .exit-copy,
  .confidence-panel {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
