/* ============================================================
   InterVac Design — Rebuild Stylesheet
   Brand locked from source CSS: red #DA3C3C, gold #FBBC34
   Fonts: Montserrat (display/headings) + Lato (body)
   Self-contained, zero dependencies. Built by Lyfework.
   ============================================================ */

/* -------------------- TOKENS -------------------- */
:root {
  /* Brand (locked from intervacdesign.com source) */
  --brand: #da3c3c;
  --brand-dark: #c13030;
  --brand-deep: #a82828;
  --gold: #fbbc34;
  --gold-deep: #e0a716;

  /* Ink + neutrals */
  --ink: #1a1d21;
  --charcoal: #23272b;
  --charcoal-2: #2c3035;
  --body: #44474d;
  --muted: #6b6f76;
  --line: #e6e8eb;
  --line-soft: #eff1f3;

  /* Surfaces */
  --bg: #ffffff;
  --panel: #f6f7f9;
  --panel-2: #eef1f4;

  /* System */
  --ok: #2e9e5b;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm:
    0 1px 2px rgba(26, 29, 33, 0.06), 0 2px 8px rgba(26, 29, 33, 0.05);
  --shadow-md: 0 10px 30px rgba(26, 29, 33, 0.1);
  --shadow-lg: 0 24px 60px rgba(26, 29, 33, 0.16);
  --container: 1200px;
  --gutter: 24px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Montserrat", var(--sans);
}

/* -------------------- RESET -------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
html {
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
}
/* grid + flex children must never force the page wider than the viewport;
   wide content (tables) scrolls inside its own wrapper instead */
.grid > *,
.split > *,
.sub-card > *,
.hero-inner > * {
  min-width: 0;
}
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
input,
select,
textarea {
  font: inherit;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 3px;
}

/* -------------------- TYPOGRAPHY -------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.h-display {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
}
h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
}
p {
  text-wrap: pretty;
}
strong {
  font-weight: 700;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
}
.eyebrow.gold {
  color: var(--gold-deep);
}
.eyebrow.gold::before {
  background: var(--gold);
}
.eyebrow.light {
  color: var(--gold);
}
.eyebrow.light::before {
  background: var(--gold);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--body);
  line-height: 1.6;
}
.text-accent {
  color: var(--brand);
}

/* -------------------- LAYOUT -------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.narrow {
  max-width: 760px;
}
.section {
  padding-block: clamp(64px, 9vw, 120px);
}
.section-sm {
  padding-block: clamp(48px, 6vw, 80px);
}
.section.panel {
  background: var(--panel);
}
.section.dark {
  background: var(--ink);
  color: #d7dade;
}
.section.dark h2,
.section.dark h3,
.section.dark h4 {
  color: #fff;
}
.section-head {
  max-width: 720px;
  margin-bottom: 52px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head p {
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--muted);
}
.section.dark .section-head p {
  color: #a7acb2;
}

.grid {
  display: grid;
  gap: 28px;
}
.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* -------------------- BUTTONS -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    color 0.2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}
.btn-primary {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 6px 18px rgba(218, 60, 60, 0.28);
}
.btn-primary:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(218, 60, 60, 0.36);
}
.btn-primary:hover svg {
  transform: translateX(4px);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: var(--charcoal-2);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(251, 188, 52, 0.32);
}
.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--line);
  color: var(--ink);
  padding: 13px 26px;
  background: #fff;
}
.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost-light {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 13px 26px;
}
.btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-lg {
  padding: 17px 34px;
  font-size: 1.05rem;
}
.btn-block {
  width: 100%;
}

/* -------------------- HEADER / NAV -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.nav-logo img {
  height: 38px;
  width: auto;
}
.nav-logo .wm {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-logo .wm b {
  color: var(--brand);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 10px 14px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-link:hover {
  color: var(--brand);
  background: var(--panel);
}
.nav-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
.nav-dd {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s var(--ease);
}
.nav-menu > li:hover .nav-dd,
.nav-menu > li:focus-within .nav-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dd a {
  display: block;
  padding: 10px 13px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--body);
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-dd a:hover {
  background: var(--panel);
  color: var(--brand);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.nav-phone svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: 0.25s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: 0.25s;
}
.nav-toggle span::before {
  top: -7px;
}
.nav-toggle span::after {
  top: 7px;
}
.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Announcement bar */
.topbar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 0.84rem;
  padding: 8px 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar b {
  color: var(--gold);
}

/* -------------------- HERO (photo) -------------------- */
.hero {
  position: relative;
  background: #14161a;
  color: #d7dade;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to right,
      rgba(13, 14, 17, 0.88) 0%,
      rgba(13, 14, 17, 0.62) 46%,
      rgba(13, 14, 17, 0.18) 100%
    ),
    linear-gradient(to top, rgba(13, 14, 17, 0.55) 0%, transparent 36%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 660px);
  align-items: center;
  min-height: clamp(520px, 66vh, 680px);
  padding-block: clamp(72px, 10vw, 128px);
}
.hero h1 {
  color: #fff;
}
.hero h1 .text-accent {
  color: var(--brand);
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: #aab0b6;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-trust .ht {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: #c4c9ce;
}
.hero-trust .ht svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: none;
}
.hero-media {
  position: relative;
}
.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  line-height: 1.15;
  max-width: 200px;
}
.hero-badge b {
  display: block;
  font-size: 1.5rem;
}

/* -------------------- PROOF BAR / STATS -------------------- */
.proof-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.proof-item:last-child {
  border-right: none;
}
.proof-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.proof-num .text-accent {
  color: var(--brand);
}
.proof-label {
  margin-top: 8px;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* -------------------- APPLICATION ROUTER -------------------- */
.app-router {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.app-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: #fff;
  isolation: isolate;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.app-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.5s var(--ease);
}
.app-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(20, 22, 25, 0.92) 8%,
    rgba(20, 22, 25, 0.35) 55%,
    rgba(20, 22, 25, 0.1) 100%
  );
}
.app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.app-card:hover img {
  transform: scale(1.07);
}
.app-card .ac-kicker {
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.app-card h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}
.app-card .ac-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}
.app-card .ac-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}
.app-card:hover .ac-link svg {
  transform: translateX(4px);
}

/* -------------------- CARDS / PRODUCTS -------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    border-color 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #fff;
}

.product-card {
  display: flex;
  flex-direction: column;
}
.product-card .pc-media {
  position: relative;
  background: var(--panel);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.product-card .pc-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-card .pc-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 6px;
}
.product-card .pc-tag.gold {
  background: var(--gold);
  color: var(--ink);
}
.product-card .pc-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card .pc-apps {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.product-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.25;
}
.product-card .pc-desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 8px;
  flex: 1;
}
.pc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}
.pc-stars {
  color: var(--gold);
  letter-spacing: 1px;
}
.pc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  gap: 12px;
}
.pc-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
}
.pc-price small {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--muted);
}

/* feature cards */
.feature {
  padding: 4px;
}
.feature-ic {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(218, 60, 60, 0.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-ic.gold {
  background: rgba(251, 188, 52, 0.18);
  color: var(--gold-deep);
}
.feature-ic svg {
  width: 26px;
  height: 26px;
}
.feature h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.feature p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* -------------------- SPLIT / FEATURE ROWS -------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.split.reverse .split-media {
  order: -1;
}
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}
.checklist {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.checklist li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 1rem;
}
.checklist svg {
  width: 22px;
  height: 22px;
  color: var(--ok);
  flex: none;
  margin-top: 2px;
}
.checklist b {
  color: var(--ink);
}

/* quote pull */
.pull {
  border-left: 4px solid var(--brand);
  padding: 6px 0 6px 24px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.4;
  font-style: italic;
}

/* -------------------- COMPARISON TABLE -------------------- */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: #fff;
}
.compare th,
.compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.compare thead th {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  background: var(--panel);
  font-size: 0.92rem;
}
.compare .col-us {
  background: rgba(218, 60, 60, 0.06);
  border-left: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
}
.compare thead .col-us {
  background: var(--brand);
  color: #fff;
}
.compare tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
}
.compare tr:last-child td {
  border-bottom: none;
}
.cmp-yes {
  color: var(--ok);
  font-weight: 700;
}
.cmp-no {
  color: var(--muted);
}

/* -------------------- REVIEWS -------------------- */
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.review .rv-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.review p {
  color: var(--body);
  font-size: 1.02rem;
  line-height: 1.6;
  flex: 1;
}
.review .rv-by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
.review .rv-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  flex: none;
}
.review .rv-name {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.review .rv-meta {
  font-size: 0.82rem;
  color: var(--muted);
}

/* -------------------- SUBSCRIPTION -------------------- */
.sub-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.sub-card .sc-body {
  padding: clamp(30px, 4vw, 48px);
}
.sub-card .sc-side {
  background: var(--panel);
  padding: clamp(30px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sub-card.dark .sc-side {
  background: var(--ink);
  color: #d7dade;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0 4px;
}
.price-row .pr-amt {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.badge-save {
  display: inline-block;
  background: rgba(46, 158, 91, 0.12);
  color: var(--ok);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 4px 10px;
  border-radius: 6px;
}

/* -------------------- FAQ -------------------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
}
.faq-q .faq-ic {
  width: 26px;
  height: 26px;
  flex: none;
  position: relative;
}
.faq-q .faq-ic::before,
.faq-q .faq-ic::after {
  content: "";
  position: absolute;
  background: var(--brand);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}
.faq-q .faq-ic::before {
  top: 12px;
  left: 4px;
  width: 18px;
  height: 2px;
}
.faq-q .faq-ic::after {
  top: 4px;
  left: 12px;
  width: 2px;
  height: 18px;
}
.faq-item[open] .faq-q .faq-ic::after {
  transform: scaleY(0);
}
.faq-a {
  padding: 0 4px 24px;
  color: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 720px;
}
details.faq-item summary {
  list-style: none;
  cursor: pointer;
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}

/* -------------------- CTA BAND -------------------- */
.cta-band {
  background: var(--brand);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-lg);
  padding: clamp(44px, 6vw, 72px) var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 70%);
}
.cta-band > * {
  position: relative;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 16px auto 30px;
  font-size: 1.1rem;
}

/* -------------------- FOOTER -------------------- */
.site-footer {
  background: var(--ink);
  color: #a7acb2;
  padding-top: 64px;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.footer-col h3 {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul {
  display: grid;
  gap: 10px;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-brand .wm {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer-brand .wm b {
  color: var(--brand);
}
.footer-brand p {
  margin-top: 14px;
  max-width: 320px;
  color: #8e949a;
}
.footer-brand img {
  height: 40px;
  margin-bottom: 14px;
}
.footer address {
  font-style: normal;
  margin-top: 18px;
  line-height: 1.7;
}
.footer address a {
  color: #c4c9ce;
}
.footer address a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
  color: #969ba3;
}
.footer-bottom a:hover {
  color: var(--gold);
}

/* -------------------- STICKY MOBILE ATC -------------------- */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(26, 29, 33, 0.1);
  padding: 12px 16px;
  display: none;
  align-items: center;
  gap: 14px;
  transform: translateY(110%);
  transition: transform 0.3s var(--ease);
}
.sticky-atc.show {
  transform: translateY(0);
}
.sticky-atc .sa-info {
  flex: 1;
  min-width: 0;
}
.sticky-atc .sa-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-atc .sa-price {
  font-family: var(--display);
  font-weight: 800;
  color: var(--brand);
  font-size: 1rem;
}

/* -------------------- BREADCRUMB -------------------- */
.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  padding-block: 18px;
}
.crumb a:hover {
  color: var(--brand);
}
.crumb span {
  color: var(--muted);
}
.crumb [aria-current="page"] {
  color: var(--body);
  font-weight: 600;
}

/* -------------------- QUIZ MODAL -------------------- */
.quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 22, 25, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s;
}
.quiz-overlay.show {
  display: flex;
  opacity: 1;
}
.quiz {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.quiz-head {
  padding: 26px 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.quiz-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz-close:hover {
  background: var(--panel-2);
}
.quiz-prog {
  height: 5px;
  background: var(--panel-2);
  border-radius: 999px;
  margin: 18px 30px 0;
  overflow: hidden;
}
.quiz-prog span {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: 999px;
  transition: width 0.35s var(--ease);
  width: 25%;
}
.quiz-body {
  padding: 26px 30px 34px;
}
.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
  animation: fadeUp 0.3s var(--ease);
}
.quiz-step h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.quiz-step .qs-why {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.quiz-opts {
  display: grid;
  gap: 12px;
}
.quiz-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: left;
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  transition:
    border-color 0.18s,
    background 0.18s;
}
.quiz-opt:hover {
  border-color: var(--brand);
  background: rgba(218, 60, 60, 0.04);
}
.quiz-opt .qo-ic {
  font-size: 1.5rem;
}
.quiz-result {
  text-align: center;
  padding: 10px 0;
}
.quiz-result .qr-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 16px;
  mix-blend-mode: multiply;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------- SCROLL REVEAL -------------------- */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.rv.in {
  opacity: 1;
  transform: none;
}
.rv.d1 {
  transition-delay: 0.08s;
}
.rv.d2 {
  transition-delay: 0.16s;
}
.rv.d3 {
  transition-delay: 0.24s;
}
.rv.d4 {
  transition-delay: 0.32s;
}
@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -------------------- UTILITIES -------------------- */
.text-center {
  text-align: center;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.flex-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--body);
  padding: 5px 12px;
  border-radius: 999px;
}
.hide-mobile {
}
.show-mobile {
  display: none;
}

/* -------------------- MEDIA FRAME (lifestyle, fixed-ratio, no CLS) -------------------- */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--panel);
}
.media-frame.tall {
  aspect-ratio: 3 / 4;
}
.media-frame.wide {
  aspect-ratio: 16 / 10;
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* lifestyle "in action" band */
.life-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.life-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.5s var(--ease);
}
.life-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(20, 22, 25, 0.86) 4%,
    rgba(20, 22, 25, 0.25) 48%,
    transparent 80%
  );
}
.life-card:hover img {
  transform: scale(1.06);
}
.life-card .lc-body {
  padding: 22px;
  color: #fff;
}
.life-card .lc-kicker {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.life-card .lc-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.18rem;
  color: #fff;
  line-height: 1.15;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .app-router {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ---- tablet + mobile: centered, symmetrical presentation ---- */
  .section-head,
  .split-copy,
  .feature {
    text-align: center;
    margin-inline: auto;
  }
  .section-head .eyebrow,
  .split-copy .eyebrow,
  .hero .eyebrow {
    justify-content: center;
  }
  .eyebrow {
    justify-content: center;
  }
  .feature-ic {
    margin-inline: auto;
  }
  .flex-cta,
  .hero-cta,
  .hero-trust,
  .tag-row,
  .pull {
    justify-content: center;
  }
  .pull {
    border-left: none;
    border-top: 4px solid var(--brand);
    padding: 18px 0 0;
    text-align: center;
  }
  .checklist {
    max-width: 520px;
    margin-inline: auto;
    text-align: left;
  }
  .crumb {
    justify-content: center;
  }
  .hero-inner {
    justify-items: center;
    text-align: center;
  }
  .hero-scrim {
    background: linear-gradient(
      to bottom,
      rgba(13, 14, 17, 0.72) 0%,
      rgba(13, 14, 17, 0.6) 55%,
      rgba(13, 14, 17, 0.78) 100%
    );
  }
  .hero-sub {
    margin-inline: auto;
  }
  .pc-rating {
    justify-content: center;
  }
}
@media (max-width: 860px) {
  body {
    font-size: 16px;
  }
  /* compact header: logo + CTA + toggle must fit 360px wide screens */
  .nav {
    gap: 10px;
    height: 64px;
  }
  .nav-logo img {
    height: 28px;
    width: auto;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .btn {
    padding: 10px 13px;
    font-size: 0.8rem;
    letter-spacing: 0;
  }
  .nav-menu,
  .nav-phone {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .site-header.open .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 20px;
    box-shadow: var(--shadow-md);
  }
  .site-header.open .nav-menu .nav-dd {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 6px 14px;
  }
  .cols-2,
  .cols-3,
  .cols-4 {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-item:nth-child(2) {
    border-right: none;
  }
  .proof-item:nth-child(1),
  .proof-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split.reverse .split-media {
    order: 0;
  }
  .sub-card {
    grid-template-columns: 1fr;
  }
  .sub-card .sc-side {
    order: -1;
  }
  .pull {
    font-size: 1.15rem;
  }
  .sticky-atc {
    display: flex;
  }
  body.has-atc {
    padding-bottom: 76px;
  }

  /* mobile: comparison + spec tables fit the screen, cells wrap */
  .compare {
    min-width: 0;
  }
  .compare th,
  .compare td {
    padding: 12px 10px;
    font-size: 0.86rem;
  }

  /* mobile: centered, symmetrical cards + footer */
  .product-card .pc-body,
  .review,
  .sub-card .sc-body,
  .sub-card .sc-side {
    text-align: center;
  }
  .product-card .pc-foot {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .review .rv-by {
    justify-content: center;
  }
  .sub-card .checklist,
  .sc-side .checklist {
    max-width: fit-content;
  }
  .price-row {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .footer-brand img,
  .footer-brand p {
    margin-inline: auto;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .container {
    padding-inline: 18px;
  }
  .app-router {
    grid-template-columns: 1fr;
  }
  .app-card {
    aspect-ratio: 16/10;
  }
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-cta .btn,
  .flex-cta .btn {
    width: 100%;
  }
  .grid {
    gap: 18px;
  }
}

@media (max-width: 420px) {
  /* small phones: tighten the header trio further */
  .nav {
    gap: 8px;
  }
  .nav-logo img {
    height: 24px;
  }
  .nav-actions .btn {
    padding: 9px 11px;
    font-size: 0.74rem;
  }
  .nav-toggle {
    width: 38px;
  }
}
@media (max-width: 340px) {
  /* tiny devices: hero + page CTAs carry the action; header stays logo + menu */
  .nav-actions .btn {
    display: none;
  }
}
