/* ============================================================
   WATCH4U — INSTALL4U
   Stripe-grade restraint, Install4U brand identity
   ============================================================ */

:root {
  /* Brand palette — extracted from actual logo */
  --navy: #20348A;
  --navy-dark: #18296F;
  --navy-soft: #EEF1FA;
  --red: #D80100;
  --red-dark: #B30000;
  --red-soft: #FDECEC;

  /* Surfaces — clean, modern, slight warmth */
  --bg: #FFFFFF;
  --bg-alt: #EBF0F7;
  --bg-shade: #DDE4EF;
  --bg-warm: #F5EFE3;
  --bg-navy-tint: #E3E9F4;

  /* Text — confident, readable */
  --ink: #0B1230;
  --ink-soft: #2A3252;
  --gray: #555E7A;
  --gray-light: #8E96AD;
  --line: #E5E8F0;
  --line-soft: #EFF1F6;

  /* Status colors — for the sample report */
  --status-green: #0E8A4F;
  --status-green-soft: #E6F6EC;
  --status-yellow: #B8770C;
  --status-yellow-soft: #FBF1DE;
  --status-red: #B23A2C;
  --status-red-soft: #FBEAE7;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  font-size: 17px;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }
a { color: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   NAVIGATION — Stripe-style clean
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 0;
  gap: 4px;
}

.nav-logo svg, .nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-logo-tag {
  font-size: 10px;
  font-weight: 600;
  font-style: italic;
  color: var(--gray);
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
}

.nav-logo-tag em {
  color: var(--navy);
  font-style: italic;
}

@media (max-width: 900px) {
  .nav-logo-tag { display: none; }
  .nav-logo svg, .nav-logo img { height: 36px; }
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
  letter-spacing: -0.005em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--navy);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: #FFFFFF !important;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--navy-dark) !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}

/* ============================================================
   HERO + TYPOGRAPHY
   ============================================================ */
.hero {
  padding: 96px 0 80px;
  text-align: center;
  position: relative;
}

.hero.compact { padding: 72px 0 56px; }

/* About page — photo hero background */
.hero.about-hero-bg {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero.about-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('about_hero.jpg');
  background-size: cover;
  background-position: center 65%;
  z-index: 0;
}
.hero.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,18,55,0.52) 0%, rgba(4,12,38,0.70) 100%);
  z-index: 1;
}
.hero.about-hero-bg .container {
  position: relative;
  z-index: 2;
}
.hero.about-hero-bg h1,
.hero.about-hero-bg .hero-sub {
  color: #ffffff;
}
.hero.about-hero-bg .eyebrow {
  color: #ffffff;
  background: var(--red);
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(216, 1, 0, 0.35);
}
.hero.about-hero-bg .eyebrow-dot {
  background: #ffffff;
}
.hero.about-hero-bg h1 .accent {
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hero.about-hero-bg .hero-sub {
  color: rgba(255,255,255,0.88);
}

/* Homepage hero — photo background */
.hero.home-hero-bg {
  padding: 96px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero.home-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('about_hero.jpg');
  background-size: cover;
  background-position: center 60%;
  z-index: 0;
}
.hero.home-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,18,55,0.52) 0%, rgba(4,12,38,0.70) 100%);
  z-index: 1;
}
.hero.home-hero-bg .container {
  position: relative;
  z-index: 2;
}
.hero.home-hero-bg h1,
.hero.home-hero-bg .hero-sub {
  color: #ffffff;
}
.hero.home-hero-bg h1 .accent {
  color: rgba(255,255,255,0.90);
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.hero.home-hero-bg .hero-sub {
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.hero.home-hero-bg .eyebrow {
  color: #ffffff;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero.home-hero-bg .eyebrow-dot {
  background: var(--red);
}
.hero.home-hero-bg .trust-row {
  color: rgba(255,255,255,0.88);
  border-top-color: rgba(255,255,255,0.18);
}
.hero.home-hero-bg .trust-row > div {
  color: rgba(255,255,255,0.88);
}
.hero.home-hero-bg .hero-cta {
  background: var(--red);
  box-shadow: 0 6px 20px rgba(216, 1, 0, 0.35);
}
.hero.home-hero-bg .hero-cta:hover {
  background: #B30100;
  box-shadow: 0 8px 24px rgba(216, 1, 0, 0.45);
}
.hero.home-hero-bg .hero-cta-secondary {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #ffffff;
  box-shadow: none;
}
.hero.home-hero-bg .hero-cta-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.65);
  box-shadow: none;
}

/* Hero with avatar — split layout, avatar flush to LEFT edge */
.hero.with-avatar {
  text-align: left;
  padding: 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero-split {
  display: flex;
  align-items: stretch;
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.hero-avatar {
  flex-shrink: 0;
  width: 380px;
  align-self: flex-end;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
}

.hero-avatar img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  filter: drop-shadow(8px 8px 24px rgba(11, 18, 48, 0.15));
}

.hero-content {
  flex: 1;
  padding: 88px 32px 96px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  min-height: 580px;
}

@media (max-width: 1100px) {
  .hero-avatar { width: 320px; }
  .hero-content { padding: 72px 32px 80px 32px; }
}

/* Hide avatar on smaller screens, recenter content */
@media (max-width: 900px) {
  .hero.with-avatar {
    text-align: center;
    padding: 64px 0 48px;
    background: var(--bg);
  }
  .hero-split { display: block; }
  .hero-avatar { display: none; }
  .hero-content {
    padding: 0 32px;
    max-width: none;
    min-height: 0;
    align-items: center;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--navy-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--navy);
  border-radius: 50%;
}

.eyebrow.red {
  color: var(--red);
  background: var(--red-soft);
}

.eyebrow.red .eyebrow-dot { background: var(--red); }

.hero.with-avatar h1 { text-align: left; }
.hero.with-avatar .hero-sub { margin-left: 0; max-width: 540px; }
.hero.with-avatar .trust-row { justify-content: flex-start; }
.hero.with-avatar .eyebrow { display: inline-flex; }

@media (max-width: 900px) {
  .hero.with-avatar h1 { text-align: center; }
  .hero.with-avatar .hero-sub { margin: 0 auto 40px; }
  .hero.with-avatar .trust-row { justify-content: center; }
}

h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(44px, 6.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  color: var(--ink);
  text-wrap: balance;
}

.hero-sub,
.section-sub {
  text-wrap: pretty;
}

h1 .accent {
  color: var(--red);
}

.hero-sub {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--navy);
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 12px rgba(32, 52, 138, 0.18);
}

.hero-cta:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32, 52, 138, 0.25);
}

.hero-cta svg { transition: transform 0.15s ease; }
.hero-cta:hover svg { transform: translateX(3px); }

.hero-cta-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  margin-left: 12px;
  box-shadow: none;
}

.hero-cta-secondary:hover {
  background: var(--bg-alt);
  border-color: var(--ink-soft);
  box-shadow: none;
}

/* Trust badges row */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.trust-row > div { display: flex; align-items: center; gap: 6px; }

.trust-row svg { color: var(--navy); }

/* ============================================================
   POSITIONING SECTION — Standard service vs Watch4U
   ============================================================ */
.positioning {
  background: var(--bg);
  padding: 40px 0 72px;
}

.sparkle-inline {
  height: 22px;
  width: auto;
  vertical-align: -6px;
  margin-left: 6px;
  flex-shrink: 0;
  display: inline-block;
}

.positioning-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.positioning-card {
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.positioning-card.standard {
  background: var(--bg-alt);
  color: #3D4047;
  border: 1px solid var(--line);
}

.positioning-card.watch4u {
  background: var(--navy);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(32, 52, 138, 0.18);
}

.positioning-card.watch4u::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.positioning-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.positioning-tag.accent {
  color: rgba(255, 255, 255, 0.7);
}

.positioning-icon-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.positioning-card.standard .positioning-icon-row svg {
  color: #6B6E74;
}

.positioning-card.watch4u .positioning-icon-row svg {
  color: #ffffff;
}

.positioning-headline {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.positioning-card.standard .positioning-headline {
  color: #2D3037;
}

.positioning-card.watch4u .positioning-headline {
  color: #ffffff;
}

.positioning-text {
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
}

.positioning-card.standard .positioning-text {
  color: #4A4D54;
}

.positioning-card.watch4u .positioning-text {
  color: rgba(255, 255, 255, 0.92);
}

.positioning-card.watch4u .positioning-text strong {
  color: #ffffff;
  font-weight: 700;
}

.positioning-divider {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-shade);
  color: var(--navy);
}

@media (max-width: 820px) {
  .positioning {
    padding: 56px 0;
  }
  .positioning-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .positioning-divider {
    transform: rotate(90deg);
    margin: 4px auto;
  }
  .positioning-card {
    padding: 28px 24px;
  }
  .positioning-headline {
    font-size: 20px;
  }
  .positioning-text {
    font-size: 16px;
  }
}

/* ============================================================
   AGITATE SECTION — Problem-Agitate-Solve
   ============================================================ */
.agitate {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

/* The empathy intro paragraphs */
.reality-intro {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: left;
}

.reality-intro p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.reality-intro p:last-child {
  margin-bottom: 0;
}

.reality-intro strong {
  color: var(--ink);
  font-weight: 700;
}

.reality-intro em {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
}

/* The two-paths block */
.reality-paths {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.reality-paths-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}

.reality-path {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}

.reality-path:last-of-type {
  border-bottom: none;
}

.reality-path-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--bg-shade);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.reality-path.featured .reality-path-num {
  background: var(--navy);
  color: #FFFFFF;
}

.reality-path-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  line-height: 1.3;
}

.reality-path-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.reality-path-text strong {
  color: var(--ink);
  font-weight: 700;
}

.reality-paths-closer {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  letter-spacing: -0.01em;
}

/* The three differentiator cards (Built by people / Reports you can verify / Decision stays yours) */
.agitate-list {
  display: grid;
  gap: 16px;
  margin-bottom: 0;
}

.agitate-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 26px 28px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-left: 3px solid var(--navy);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.agitate-item:hover {
  transform: translateX(2px);
  box-shadow: 0 8px 24px rgba(11, 18, 48, 0.06);
}

.agitate-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.agitate-body {
  flex: 1;
}

.agitate-headline {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.agitate-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.agitate-text strong {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 720px) {
  .reality-intro p { font-size: 15.5px; }
  .reality-paths { padding: 24px 20px; }
  .reality-path { padding: 18px 0; }
  .reality-path-title { font-size: 16px; }
  .agitate-item {
    padding: 22px 20px;
    gap: 16px;
  }
  .agitate-num {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .agitate-headline { font-size: 16px; }
  .agitate-text { font-size: 14px; }
}

/* ============================================================
   SAMPLE REPORT — multi-page viewer
   ============================================================ */
.report-pages {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
}

.report-page-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.report-page-label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 4px;
}

.report-page-num {
  font-family: 'JetBrains Mono', 'Inter', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--navy);
  padding: 5px 10px;
  border-radius: 6px;
}

.report-page-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}

.report-page-img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(11, 18, 48, 0.10), 0 2px 8px rgba(11, 18, 48, 0.06);
  background: #FFFFFF;
}

.report-page-img.blurred {
  position: relative;
}

.report-page-caption {
  font-size: 14px;
  color: var(--gray);
  font-style: italic;
  padding: 0 4px;
  line-height: 1.5;
}

.report-summary-block {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 36px;
  background: var(--navy-soft);
  border: 1px solid #C8D2EE;
  border-radius: 16px;
  text-align: center;
}

.report-summary-block h3 {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
}

.report-summary-block p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.report-summary-block strong {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 720px) {
  .report-pages { gap: 36px; }
  .report-summary-block { padding: 28px 22px; }
  .report-summary-block h3 { font-size: 22px; }
}

/* ============================================================
   WHY US — two-card differentiator section
   ============================================================ */
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.whyus-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.whyus-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 18, 48, 0.06);
  border-color: #C8D2EE;
}

.whyus-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.whyus-headline {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-wrap: balance;
}

.whyus-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}

.whyus-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 4px;
  transition: gap 0.2s ease;
}

.whyus-link:hover {
  gap: 10px;
  color: var(--navy-dark);
}

@media (max-width: 720px) {
  .whyus-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .whyus-card { padding: 28px 24px; }
  .whyus-headline { font-size: 19px; }
}

/* ============================================================
   COMPATIBILITY BAND — works with these systems
   ============================================================ */
.compat-band {
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}

.compat-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  margin-bottom: 36px;
}

.compat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 18px;
  margin-bottom: 32px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.compat-brand {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 10px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.compat-brand:hover {
  background: var(--navy-soft);
  border-color: #C8D2EE;
  color: var(--navy);
  transform: translateY(-1px);
}

.compat-brand-more {
  background: transparent;
  border-color: transparent;
  color: var(--gray);
  font-style: italic;
  font-weight: 600;
}

.compat-brand-more:hover {
  background: transparent;
  border-color: transparent;
  color: var(--gray);
  transform: none;
}

/* Brands marquee — smooth infinite right-to-left scroll */
.compat-marquee {
  overflow: hidden;
  width: 100%;
  margin: 4px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 120px, #000 calc(100% - 120px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 120px, #000 calc(100% - 120px), transparent 100%);
}

.compat-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: compat-marquee-scroll 60s linear infinite;
  will-change: transform;
}

.compat-marquee:hover .compat-track {
  animation-play-state: paused;
}

/* Override the bubble styling for brands inside the marquee — just clean text */
.compat-marquee .compat-brand {
  flex-shrink: 0;
  display: inline-block;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-soft, var(--gray));
  white-space: nowrap;
  transition: color 0.2s ease;
}

.compat-marquee .compat-brand:hover {
  background: transparent;
  border: none;
  color: var(--navy);
  transform: none;
}

.compat-marquee .compat-brand-more {
  font-style: italic;
  font-weight: 600;
  color: var(--gray);
  opacity: 0.7;
}

@keyframes compat-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .compat-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
}


.compat-note {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
  text-wrap: balance;
}

.compat-note a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 1px;
}

.compat-note a:hover {
  color: var(--navy-dark);
}

.plans-universal {
  margin: 56px auto 0;
  max-width: 1100px;
  background: var(--bg-warm);
  border: 1px solid #E8DFC8;
  border-radius: 16px;
  padding: 28px 32px;
}

.plans-universal-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}

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

.plans-universal-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink);
}

.plans-universal-item svg {
  flex-shrink: 0;
  color: var(--navy);
  margin-top: 2px;
}

.plans-universal-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.plans-universal-item span {
  font-size: 13px;
  line-height: 1.45;
  color: var(--gray);
}

@media (max-width: 820px) {
  .plans-universal { padding: 24px 20px; }
  .plans-universal-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.plans-footnote {
  text-align: center;
  font-size: 14px;
  color: var(--gray);
  max-width: 720px;
  margin: 32px auto 0;
  line-height: 1.6;
  text-wrap: balance;
}

.plans-footnote a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 1px;
}

.plans-footnote a:hover {
  color: var(--navy-dark);
}

@media (max-width: 720px) {
  .compat-band { padding: 48px 0; }
  .compat-grid { gap: 10px 12px; }
  .compat-brand {
    font-size: 14px;
    padding: 8px 14px;
  }
}

/* ============================================================
   STATS BAR / WHAT YOU GET — replaces fake percentages
   ============================================================ */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats-grid-real {
  gap: 32px;
}

.stat { position: relative; }

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--line);
}

/* Old numeric style (kept for About page) */
.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

/* New icon-based "What you get" style */
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--navy);
  margin-bottom: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(11, 18, 48, 0.04);
}

.stat-headline {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 400;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 88px 0; }

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 600;
}

h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(34px, 4.5vw, 50px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  color: var(--ink);
  text-wrap: balance;
}

h2 .accent { color: var(--red); }

h3 {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
  text-wrap: balance;
}

h3 .accent { color: var(--red); }

.section-sub {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}

p:last-child { margin-bottom: 0; }
.prose-block p { font-size: 18px; }

/* ============================================================
   BILLING TOGGLE — monthly / annual switcher
   ============================================================ */
.billing-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg-shade);
  padding: 5px;
  border-radius: 100px;
  position: relative;
}

.billing-toggle button {
  position: relative;
  z-index: 2;
  padding: 9px 22px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
  border: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.billing-toggle button.active {
  color: var(--ink);
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(11, 18, 48, 0.08);
}

.billing-savings {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--status-green);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.billing-note {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  text-align: center;
}

.billing-note strong { color: var(--navy); font-weight: 700; }

/* Card price area swaps based on body data attr */
.price-block-monthly,
.price-block-annual { display: none; }

body[data-billing="monthly"] .price-block-monthly { display: block; }
body[data-billing="annual"] .price-block-annual { display: block; }

/* Best-for line on each tier card */
.tier-bestfor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--navy-soft);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}

.tier.o .tier-bestfor {
  color: var(--red);
  background: var(--red-soft);
}

.tier.featured .tier-bestfor {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   LEGEND + TIER GRID — with strong zone grouping
   ============================================================ */
.legend {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}

.legend > div { display: flex; align-items: center; gap: 8px; }

.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-remote .legend-dot { background: var(--navy); }
.legend-onsite .legend-dot { background: var(--red); }

/* Plans wrapper holds both zones */
.plans-zones {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Each zone has a header + its own grid */
.zone {
  position: relative;
}

.zone-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 0 4px;
}

.zone-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
}

.zone-tag.remote {
  color: var(--navy);
  background: var(--navy-soft);
  border: 1px solid #C8D2EE;
}

.zone-tag.onsite {
  color: var(--red);
  background: var(--red-soft);
  border: 1px solid #F4C5C5;
}

.zone-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.zone-tag.remote .zone-tag-dot { background: var(--navy); }
.zone-tag.onsite .zone-tag-dot { background: var(--red); }

.zone-headline {
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.zone-headline strong { color: var(--ink); font-weight: 700; }

/* Container that wraps the cards within a zone */
.zone-cards {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  position: relative;
}

.zone.remote-zone .zone-cards { background: var(--navy-soft); border-color: #C8D2EE; }
.zone.onsite-zone .zone-cards { background: var(--red-soft); border-color: #F4C5C5; }

/* Grids inside zones */
.zone .grid {
  display: grid;
  gap: 14px;
}

.zone.remote-zone .grid {
  grid-template-columns: repeat(2, 1fr);
}

.zone.onsite-zone .grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Original .grid (kept for backward compat / fallback) */
.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.tier {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(11, 18, 48, 0.08);
  border-color: var(--line-soft);
}

.strip {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-radius: 0 0 4px 4px;
}

.tier.r .strip { background: var(--navy); }
.tier.o .strip { background: var(--red); }

/* Featured tier — navy filled, dramatic */
.tier.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: #FFFFFF;
  box-shadow: 0 24px 56px rgba(32, 52, 138, 0.28);
  transform: translateY(-12px);
}

.tier.featured:hover {
  transform: translateY(-16px);
  box-shadow: 0 28px 64px rgba(32, 52, 138, 0.35);
}

.featured-mark {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: var(--red);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 12px;
  border-radius: 18px 18px 0 0;
}

.tier.featured { padding-top: 60px; }
.tier.featured .strip { display: none; }

/* Best Value tier — red border, lighter treatment than featured */
.tier.best-value {
  border-color: var(--red);
  border-width: 2px;
  box-shadow: 0 16px 36px rgba(216, 1, 0, 0.12);
}

.tier.best-value:hover {
  box-shadow: 0 20px 44px rgba(216, 1, 0, 0.18);
}

.value-mark {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  background: var(--red);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 12px;
  border-radius: 16px 16px 0 0;
}

.tier.best-value { padding-top: 60px; }
.tier.best-value .strip { display: none; }

/* Best value column in matrix */
.matrix th.value-col {
  background: var(--red-soft);
  border-bottom: 2px solid var(--red);
}

.matrix tr td:nth-child(5) { background: rgba(216, 1, 0, 0.025); }
.matrix tr.row-group td:nth-child(5) { background: var(--bg-shade); }

.tier-num {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 10px;
}

.tier.featured .tier-num { color: rgba(255, 255, 255, 0.55); }

.tier-name {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
  line-height: 1.1;
  color: var(--ink);
}

.tier.featured .tier-name { color: #FFFFFF; }

.tier-line {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 28px;
  min-height: 44px;
  font-weight: 400;
}

.tier.featured .tier-line { color: rgba(255, 255, 255, 0.78); }

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-num {
  font-family: 'Inter', sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.tier.featured .price-num { color: #FFFFFF; }

.price-mo {
  font-size: 16px;
  color: var(--ink-soft);
  font-weight: 500;
}

.tier.featured .price-mo { color: rgba(255, 255, 255, 0.7); }

.price-yr {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
  font-weight: 500;
}

.price-savings {
  display: inline-block;
  background: var(--status-green);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 4px;
  vertical-align: middle;
}

.tier.featured .price-savings {
  background: var(--status-green);
  color: #FFFFFF;
}

.tier.featured .price-yr { color: rgba(255, 255, 255, 0.6); }

.rule { height: 1px; background: var(--line); margin: 0 0 20px; }
.tier.featured .rule { background: rgba(255, 255, 255, 0.15); }

.features-label {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}

.tier.featured .features-label { color: rgba(255, 255, 255, 0.55); }

.features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
  min-height: 80px;
}

.features li {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
}

.tier.featured .features li { color: #FFFFFF; }

.features li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--navy);
}

.tier.r .features li svg { color: var(--navy); }
.tier.o .features li svg { color: var(--red); }
.tier.featured .features li svg { color: #FFFFFF; }

.labor {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 12px 0;
  border-top: 1px dashed var(--line);
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.tier.featured .labor {
  border-top-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
}

.labor strong { color: var(--ink); font-weight: 700; }
.tier.featured .labor strong { color: #FFFFFF; }

.cta {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: -0.01em;
  text-decoration: none;
  text-align: center;
}

.cta:hover { background: var(--ink); color: #FFFFFF; }

.tier.featured .cta {
  background: #FFFFFF;
  color: var(--navy);
  border-color: #FFFFFF;
}

.tier.featured .cta:hover {
  background: var(--red);
  color: #FFFFFF;
  border-color: var(--red);
}

/* ============================================================
   COMPARISON MATRIX
   ============================================================ */
.matrix-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.matrix-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(11, 18, 48, 0.04);
}

.matrix-footnote {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
  padding: 14px 24px 18px;
  line-height: 1.5;
  font-style: italic;
  border-top: 1px solid var(--line);
}

/* Matrix sub-label — parenthetical on its own single line below the label */
.matrix-sub {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  white-space: nowrap;
}

/* Cleaning icon replacing the check in the Camera & lens cleaning row */
.matrix-clean-icon {
  height: 31px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 720px) {
  .matrix-sub { white-space: normal; }
}

.matrix {
  width: 100%;
  border-collapse: collapse;
  min-width: 880px;
}

.matrix th, .matrix td {
  padding: 16px 18px;
  text-align: center;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}

.matrix th {
  background: var(--bg-alt);
  font-weight: 600;
  font-size: 14px;
  padding: 22px 18px;
}

.matrix th:first-child, .matrix td:first-child {
  text-align: left;
  color: var(--ink-soft);
  font-weight: 500;
  width: 28%;
  font-size: 14.5px;
}

.matrix th .col-name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.matrix th .col-price {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.matrix th.featured-col {
  background: var(--navy);
  color: #FFFFFF;
}

.matrix th.featured-col .col-name { color: #FFFFFF; }
.matrix th.featured-col .col-price { color: rgba(255, 255, 255, 0.7); }

.matrix .check { color: var(--ink); font-weight: 600; font-size: 14px; }
.matrix .check-icon { color: var(--navy); font-weight: 800; font-size: 16px; }
.matrix .dash { color: var(--gray-light); font-weight: 400; }

.matrix .row-group { background: var(--bg-shade); }
.matrix .row-group td {
  padding: 18px 18px 10px;
  text-align: left;
  border: none;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
}

.matrix tr.featured-row td:nth-child(3) {
  background: rgba(32, 52, 138, 0.04);
}

/* ============================================================
   WHY CARDS
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.why-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.why-num {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.why-card.red .why-num { color: var(--red); }

.why-headline {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.why-text {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 400;
}

.why-source {
  font-size: 11px;
  color: var(--gray);
  margin-top: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 780px;
  margin: 0 auto;
}

/* FAQ with avatar — split layout, avatar flush LEFT */
.faq-with-avatar {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  align-items: end;
  position: relative;
}

.faq-with-avatar .faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  justify-self: center;
}

.faq-avatar {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
  margin-bottom: -88px; /* let it bleed below into the next section */
}

.faq-avatar img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 640px;
  filter: drop-shadow(8px 8px 24px rgba(11, 18, 48, 0.18));
}

@media (max-width: 980px) {
  .faq-with-avatar {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-avatar {
    display: none;
  }
  .faq-with-avatar .faq {
    padding: 0;
  }
}

/* Contact page — avatar on left, flush to edge */
.contact-with-avatar {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  align-items: end;
  position: relative;
}
.contact-avatar {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: flex-start;
  pointer-events: none;
  margin-bottom: 0;
}
.contact-avatar img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  filter: drop-shadow(8px 8px 24px rgba(11, 18, 48, 0.18));
}
.contact-main-wrap {
  width: 100%;
}
@media (max-width: 980px) {
  .contact-with-avatar {
    grid-template-columns: 1fr;
  }
  .contact-avatar {
    display: none;
  }
}

.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  letter-spacing: -0.02em;
}

.faq-q:hover { color: var(--navy); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gray);
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--navy);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  font-weight: 400;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 0 26px;
}

.faq-a p { margin-bottom: 14px; font-size: 16px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a a { color: var(--navy); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 2px; }

/* ============================================================
   SAMPLE CALLOUT — preview-the-report section
   ============================================================ */
.sample-callout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--navy-soft);
  border: 1px solid #C8D2EE;
  border-radius: 24px;
  padding: 56px;
  position: relative;
  overflow: hidden;
}

.sample-callout::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(32, 52, 138, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sample-callout-content { position: relative; z-index: 1; }
.sample-callout-content p { font-size: 16px; }

.sample-callout-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.sample-doc-real {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    5px 5px 0 -1px #ffffff,
    5px 5px 0 0 rgba(11, 18, 48, 0.14),
    10px 10px 0 -1px #ffffff,
    10px 10px 0 0 rgba(11, 18, 48, 0.12),
    0 24px 56px rgba(11, 18, 48, 0.18),
    0 4px 12px rgba(11, 18, 48, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
  animation: sampleDocBob 3.6s ease-in-out infinite;
}

.sample-doc-real:hover {
  transform: translateY(-5px);
  animation: none;
  box-shadow:
    9px 9px 0 -1px #ffffff,
    9px 9px 0 0 rgba(11, 18, 48, 0.16),
    18px 18px 0 -1px #ffffff,
    18px 18px 0 0 rgba(11, 18, 48, 0.13),
    0 34px 76px rgba(11, 18, 48, 0.24),
    0 8px 16px rgba(11, 18, 48, 0.12);
}

/* Sample report page — large centered flipper */
.sample-report-flipper {
  display: flex;
  justify-content: center;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.sample-doc-real.sample-doc-large {
  max-width: 720px;
}

.sample-doc-real img {
  display: block;
  width: 100%;
  height: auto;
}

.sample-doc-pages-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #FFFFFF;
  padding: 9px 15px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(216, 1, 0, 0.45);
  animation: sampleTagPulse 2.2s ease-in-out infinite;
}

.sample-doc-pages-tag::after {
  content: '\203A';
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  margin-left: 1px;
  animation: sampleChevron 1.1s ease-in-out infinite;
}

.sample-doc-pages-tag svg {
  flex-shrink: 0;
}

/* "Click to flip" motion cues for the sample-report preview */
@keyframes sampleDocBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes sampleTagPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(216, 1, 0, 0.45); }
  50% { box-shadow: 0 9px 28px rgba(216, 1, 0, 0.68); }
}
@keyframes sampleChevron {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}
@media (prefers-reduced-motion: reduce) {
  .sample-doc-real,
  .sample-doc-pages-tag,
  .sample-doc-pages-tag::after { animation: none !important; }
}

/* ============================================================
   LIGHTBOX MODAL — multi-page sample report carousel
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 18, 48, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lightboxFadeIn 0.2s ease;
}

.lightbox[hidden] {
  display: none;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.lightbox-close:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

.lightbox-content {
  position: relative;
  background: #FFFFFF;
  border-radius: 14px;
  max-width: 920px;
  width: 100%;
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  animation: lightboxSlideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lightbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  flex-shrink: 0;
}

.lightbox-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}

.lightbox-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.lightbox-title .lightbox-current {
  color: var(--navy);
  font-weight: 800;
}

.lightbox-nav-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lightbox-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #FFFFFF;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
}

.lightbox-arrow:hover:not(:disabled) {
  background: var(--navy);
  color: #FFFFFF;
  border-color: var(--navy);
  transform: scale(1.05);
}

.lightbox-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lightbox-arrow:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.lightbox-carousel {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  flex: 1;
  background: var(--bg-alt);
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar but keep functionality */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lightbox-carousel::-webkit-scrollbar {
  display: none;
}

.lightbox-carousel:focus {
  outline: none;
}

.lightbox-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
}

.lightbox-image {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(11, 18, 48, 0.10);
  margin-bottom: 16px;
}

.lightbox-caption {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  max-width: 600px;
  line-height: 1.5;
}

.lightbox-caption em {
  font-style: italic;
}

.lightbox-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  flex-shrink: 0;
}

.lightbox-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.lightbox-dot:hover {
  background: var(--gray);
  transform: scale(1.2);
}

.lightbox-dot.active {
  background: var(--navy);
  width: 28px;
  border-radius: 5px;
}

.lightbox-dot:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .lightbox { padding: 12px; }
  .lightbox-content { max-height: calc(100vh - 24px); border-radius: 10px; }
  .lightbox-header { padding: 14px 16px; flex-wrap: wrap; gap: 10px; }
  .lightbox-close { top: 18px; right: 18px; width: 38px; height: 38px; }
  .lightbox-title { font-size: 14px; }
  .lightbox-slide { padding: 16px; }
  .lightbox-arrow { width: 34px; height: 34px; }
  .lightbox-dots { padding: 12px; gap: 6px; }
  .lightbox-dot { width: 8px; height: 8px; }
  .lightbox-dot.active { width: 24px; }
}

/* Lock body scroll while modal is open */
body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .sample-callout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 28px;
    text-align: center;
  }
  .sample-callout-visual { order: -1; }
  .sample-doc-real { max-width: 320px; margin: 0 auto; }
}
.final-cta {
  background:
    linear-gradient(180deg, rgba(8, 18, 55, 0.52) 0%, rgba(4, 12, 38, 0.70) 100%),
    url('about_hero.jpg') center 48% / cover no-repeat;
  background-color: var(--navy);
  color: #FFFFFF;
  padding: 104px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta > * { position: relative; z-index: 1; }

.final-cta h2 { color: #FFFFFF; margin-bottom: 18px; }
.final-cta h2 .accent { color: rgba(255, 255, 255, 0.65); }

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 36px;
}

.final-offer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(216, 1, 0, 0.18);
  color: #FFB8B5;
  border: 1px solid rgba(216, 1, 0, 0.4);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 36px;
}

.final-cta .hero-cta {
  background: #FFFFFF;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.final-cta .hero-cta:hover {
  background: var(--red);
  color: #FFFFFF;
  box-shadow: 0 12px 32px rgba(216, 1, 0, 0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  padding: 84px 0 36px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  isolation: isolate;
}

.contact-page footer {
  color: #ffffff;
  border-top: none;
}

/* LA cityscape photo only behind the CONTACT page footer (no final-cta there) */
.contact-page footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('about_hero.jpg');
  background-size: cover;
  background-position: center 50%;
  z-index: -2;
}

.contact-page footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 18, 55, 0.78) 0%, rgba(4, 12, 38, 0.92) 100%);
  z-index: -1;
}

/* Footer text overrides for dark photo background (contact page only) */
.contact-page footer p,
.contact-page footer .footer-tag,
.contact-page footer .footer-credentials,
.contact-page footer .footer-col h4,
.contact-page footer .footer-col ul li,
.contact-page footer .footer-col ul li a,
.contact-page footer .footer-bottom,
.contact-page footer .footer-bottom div {
  color: #ffffff;
}

.contact-page footer .footer-tag,
.contact-page footer .footer-credentials {
  color: rgba(255, 255, 255, 0.78);
}

.contact-page footer .footer-credentials strong {
  color: #ffffff;
}

.contact-page footer .footer-col h4 {
  color: rgba(255, 255, 255, 0.65);
}

.contact-page footer .footer-col ul li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-page footer .footer-col ul li a:hover {
  color: #ffffff;
}

.contact-page footer .footer-logo-tag,
.contact-page footer .footer-logo-tag em {
  color: rgba(255, 255, 255, 0.80);
}

.contact-page footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.7);
}
.contact-page footer .footer-bottom div {
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 16px;
  line-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo svg, .footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* Footer logo — full-color INSTALL4U mark on the white footer */
footer .footer-logo img {
  height: 40px;
  width: auto;
}
/* Contact page dark photo footer swaps to the white wordmark via its own <img src> */
.contact-page footer .footer-logo img {
  height: 60px;
}

.footer-logo-tag {
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
  color: var(--gray);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.footer-logo-tag em {
  color: var(--navy);
  font-style: italic;
}

.footer-tag {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-credentials {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 500;
}

.footer-credentials strong { color: var(--ink-soft); font-weight: 600; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }

.footer-col a {
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-col a:hover { color: var(--navy); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-light);
  font-weight: 400;
}

/* ============================================================
   FORMS
   ============================================================ */
.form { max-width: 560px; margin: 0 auto; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-textarea { min-height: 140px; resize: vertical; line-height: 1.5; }

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(32, 52, 138, 0.1);
}

.form-help { font-size: 13px; color: var(--gray); margin-top: 6px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(32, 52, 138, 0.18);
}

.form-submit:hover { background: var(--navy-dark); transform: translateY(-1px); }

/* ============================================================
   SAMPLE REPORT — mirrors actual PDF format
   ============================================================ */
.report-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 42px;
  margin: 0 auto;
  max-width: 880px;
  box-shadow: 0 24px 64px rgba(11, 18, 48, 0.08);
}

.report-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 28px;
}

.report-brand-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.report-brand-row svg { height: 40px; }

.report-brand-tag {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
}

.report-meta-box {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 13px;
  text-align: right;
}

.report-meta-box .label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 700;
  margin-bottom: 2px;
}

.report-meta-box .val {
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.report-section { margin-bottom: 28px; }
.report-section:last-child { margin-bottom: 0; }

.report-section h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 800;
}

.status-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--status-green-soft);
  border: 1px solid #BCE5CC;
  border-radius: 12px;
  margin-bottom: 28px;
}

.status-banner-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 700;
}

.status-banner-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--status-green);
  letter-spacing: -0.01em;
}

.passed-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 3px solid var(--status-green);
  color: var(--status-green);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.08em;
  transform: rotate(-8deg);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 1px var(--status-green);
}

.report-summary-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 8px 20px;
  font-size: 14.5px;
  line-height: 1.6;
}

.report-summary-grid dt {
  font-weight: 700;
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.report-summary-grid dd { color: var(--ink); font-weight: 500; }

.report-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.report-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  border: 1px solid var(--line-soft);
}

.report-check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 800;
  background: var(--status-green);
  color: #FFFFFF;
}

.report-finding {
  padding: 16px 20px;
  background: var(--bg-alt);
  border-left: 3px solid var(--navy);
  border-radius: 6px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.report-warranty {
  display: grid;
  gap: 10px;
}

.report-warranty-item {
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--ink);
  border: 1px solid var(--line-soft);
}

.report-warranty-item strong { color: var(--navy); font-weight: 700; }

.report-pages-note {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--navy-soft);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.report-pages-note svg { flex-shrink: 0; color: var(--navy); margin-top: 2px; }

.report-pages-note strong { color: var(--ink); font-weight: 700; }

/* Status pills (used elsewhere) */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.status-pill.green { background: var(--status-green-soft); color: var(--status-green); }
.status-pill.yellow { background: var(--status-yellow-soft); color: var(--status-yellow); }
.status-pill.red { background: var(--status-red-soft); color: var(--status-red); }

.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-pill.green .status-dot { background: var(--status-green); }
.status-pill.yellow .status-dot { background: var(--status-yellow); }
.status-pill.red .status-dot { background: var(--status-red); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .zone.remote-zone .grid { grid-template-columns: repeat(2, 1fr); }
  .zone.onsite-zone .grid { grid-template-columns: repeat(3, 1fr); }
  .tier.featured { transform: translateY(0); }
  .tier.featured:hover { transform: translateY(-3px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat:nth-child(2)::after { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    align-items: flex-start;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-cta { align-self: stretch; text-align: center; }
}

@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  .hero { padding: 56px 0 44px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat::after { display: none !important; }
  .grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .zone.remote-zone .grid,
  .zone.onsite-zone .grid { grid-template-columns: 1fr; gap: 12px; }
  .zone-cards { padding: 16px; }
  .zone-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .tier { padding: 28px 20px 24px; }
  .tier.featured { padding-top: 52px; }
  section { padding: 56px 0; }
  .stat-num { font-size: 40px; }
  .price-num { font-size: 44px; }
  .tier-name { font-size: 24px; }
  .why-card { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .report-card { padding: 28px 22px; }
  .report-checks { grid-template-columns: 1fr; }
  .report-summary-grid { grid-template-columns: 1fr; gap: 4px 0; }
  .report-summary-grid dt { margin-top: 12px; }
}

@media (max-width: 500px) {
  .grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.tier { animation: rise 0.5s ease both; }
.tier:nth-child(1) { animation-delay: 0.04s; }
.tier:nth-child(2) { animation-delay: 0.1s; }
.tier:nth-child(3) { animation-delay: 0.16s; }
.tier:nth-child(4) { animation-delay: 0.22s; }
.tier:nth-child(5) { animation-delay: 0.28s; }

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

.tier.featured { animation-name: rise-featured; }
@keyframes rise-featured {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(-12px); }
}
