/* ---------- Base ---------- */
:root {
  --navy: #0B2E4F;
  --navy-2: #123A63;
  --navy-soft: #E8EEF3;
  --teal: #00B8CC;
  --teal-dark: #027E8C;
  --teal-soft: #E1F6F9;
  --teal-on-navy: #4DD3E3;
  --bg: #FBFDFD;
  --bg-alt: #F2F7F6;
  --ink: #142433;
  --ink-light: #52626F;
  --white: #FFFFFF;
  --border: #E3EAE9;
  --shadow-sm: 0 2px 10px rgba(11, 46, 79, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 46, 79, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 46, 79, 0.16);
  --radius: 16px;
  --font-head: "Sora", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--ink-light); }

a { color: var(--teal-dark); }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: white;
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 6px 18px rgba(11, 46, 79, 0.3);
}
.btn-primary:hover {
  background: var(--teal);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 184, 204, 0.4);
}

/* On a navy card, invert so the button still contrasts */
.price-card-featured .btn-primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(0, 184, 204, 0.3);
}
.price-card-featured .btn-primary:hover {
  background: white;
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  padding: 10px 16px;
}
.btn-ghost:hover { background: var(--navy-soft); }

.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-arrow { display: inline-block; transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251, 253, 253, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(11, 46, 79, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
}
.brand-mark { width: auto; height: 34px; }

.main-nav {
  display: flex;
  gap: 30px;
}
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--teal);
  transition: right 0.22s ease;
}
.main-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: max-height 0.3s ease;
}
.mobile-nav.open { max-height: 400px; }
.mobile-nav a {
  padding: 14px 24px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--bg-alt);
}
.mobile-nav-actions {
  display: flex;
  gap: 10px;
  padding: 16px 24px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 110px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  background-image:
    linear-gradient(160deg, rgba(0, 184, 204, 0.10) 0%, rgba(0, 184, 204, 0.02) 45%, transparent 70%),
    repeating-linear-gradient(0deg, rgba(11, 46, 79, 0.055) 0, rgba(11, 46, 79, 0.055) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, rgba(11, 46, 79, 0.055) 0, rgba(11, 46, 79, 0.055) 1px, transparent 1px, transparent 48px);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 15%, black 45%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 75% at 50% 15%, black 45%, transparent 100%);
  animation: hero-grid-drift 22s ease-in-out infinite;
  z-index: -1;
}
@keyframes hero-grid-drift {
  0%, 100% { background-position: 0 0, 0 0, 0 0; }
  50% { background-position: 0 0, 6px 10px, 10px 6px; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow-light { background: rgba(255,255,255,0.12); color: #B9D6E8; }
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-dark);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: 20px;
}
.text-teal { color: var(--teal-dark); }

.hero-sub {
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--teal-dark);
}
.hero-stat-label { font-size: 0.82rem; color: var(--ink-light); max-width: 140px; }

/* Hero visual: buyer risk report card */
.hero-visual { position: relative; display: flex; flex-direction: column; align-items: center; }

.report-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  width: 100%;
  max-width: 380px;
}
.report-tab {
  flex: 1;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 9px 10px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink-light);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.report-tab:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-1px); }
.report-tab.active { background: var(--navy); border-color: var(--navy); color: white; }

.report-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 380px;
  border: 1px solid var(--border);
}
.report-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.report-card-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.report-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.report-company {
  font-size: 1.1rem;
  margin-bottom: 2px;
  transition: opacity 0.2s ease;
}
.report-meta {
  font-size: 0.82rem;
  margin-bottom: 6px;
  transition: opacity 0.2s ease;
}

.gauge { width: 100%; height: auto; margin-top: 6px; }
.gauge-track {
  fill: none;
  stroke: var(--bg-alt);
  stroke-width: 16;
  stroke-linecap: round;
}
.gauge-fill {
  fill: none;
  stroke: var(--teal);
  stroke-width: 16;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 145;
  transition: stroke-dashoffset 1.1s cubic-bezier(.2,.8,.2,1);
}

.gauge-readout {
  text-align: center;
  margin-top: -8px;
  margin-bottom: 18px;
}
.gauge-grade,
.gauge-score {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  transition: opacity 0.2s ease;
}
.gauge-caption {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.report-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.report-bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 28px;
  align-items: center;
  gap: 10px;
}
.report-bar-label { font-size: 0.78rem; color: var(--ink-light); }
.report-bar-track {
  height: 6px;
  border-radius: 4px;
  background: var(--bg-alt);
  overflow: hidden;
}
.report-bar-fill {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: var(--teal);
  transition: width 0.8s cubic-bezier(.2,.8,.2,1);
}
.report-bar-num { font-size: 0.8rem; font-weight: 700; color: var(--navy); text-align: right; }

.report-grade-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}
.report-grade-badge {
  background: var(--teal-soft);
  color: var(--teal-dark);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.report-grade-badge.grade-risky {
  background: #FDECEA;
  color: #C0392B;
}

.floating-chip {
  position: absolute;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floaty 5s ease-in-out infinite;
}
.chip-1 { top: 14%; left: -8%; animation-delay: 0.3s; }
.chip-2 { bottom: 10%; right: -8%; animation-delay: 1.1s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.dot-teal { background: var(--teal); }
.dot-navy { background: var(--navy); }

/* ---------- Problem / Solution ---------- */
.problem-solution { background: var(--bg); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.problem-left h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 460px; }
.problem-left > p { max-width: 460px; }

.stat-row { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.stat-item {
  border-left: 3px solid var(--teal);
  padding-left: 16px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  white-space: nowrap;
}
.stat-label { font-size: 0.88rem; color: var(--ink-light); }

.problem-right { display: flex; flex-direction: column; gap: 20px; }
.compare-card {
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.compare-card:hover { transform: translateY(-4px); }
.compare-eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.compare-card h3 { font-size: 1.15rem; margin-bottom: 16px; }
.compare-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.compare-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
}

.compare-old {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.compare-old .compare-eyebrow { color: var(--ink-light); }
.compare-old h3 { color: var(--navy); }
.compare-list-bad li { color: var(--ink-light); }
.compare-list-bad li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  color: #C0392B;
  font-weight: 800;
  font-size: 0.82rem;
}

.compare-new {
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.compare-new .compare-eyebrow { color: var(--teal-on-navy); }
.compare-new h3 { color: white; }
.compare-list-good li { color: #D7E4EC; }
.compare-list-good li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--teal-on-navy);
  font-weight: 800;
}
.compare-tagline {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.84rem;
  font-style: italic;
  color: #9FB6C8;
}

/* ---------- Section shared ---------- */
section { padding: 100px 0; }
.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }

/* ---------- How it works ---------- */
.how-it-works { background: var(--bg); }
.how-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.how-left { position: sticky; top: 110px; }
.how-left h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); max-width: 340px; }
.how-left > p { max-width: 340px; }

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal-dark);
  cursor: pointer;
}
.link-cta span { transition: transform 0.2s ease; display: inline-block; }
.link-cta:hover span { transform: translateX(4px); }

.how-right { position: relative; display: flex; flex-direction: column; gap: 28px; }
.step-line {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 22px;
  width: 2px;
  background: linear-gradient(var(--border), var(--border));
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}
.step-num {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.step:hover .step-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.step:hover .step-num { background: var(--teal-dark); }
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { font-size: 0.92rem; margin: 0 0 12px; }
.step-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---------- Features ---------- */
.features { background: var(--bg-alt); }
.section-head-left { max-width: 620px; margin: 0 0 48px; }
.section-head-left h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0; }

.feature-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.feature-card-scoring { grid-column: 1; grid-row: 1; }
.feature-card-monitor { grid-column: 2; grid-row: 1; }
.feature-card-default { grid-column: 1; grid-row: 2; }
.feature-card-tally { grid-column: 2; grid-row: 2; }

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--teal-on-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; margin: 0 0 18px; max-width: 460px; }

.grade-selector { display: flex; gap: 8px; margin-bottom: 14px; }
.grade-chip {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-alt);
  color: var(--ink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.grade-chip:hover:not(.active) { background: var(--border); color: var(--navy); transform: translateY(-2px); }
.grade-chip:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }
.grade-chip.active { background: var(--teal); color: white; transform: scale(1.08); }
.grade-chip.active:hover { background: var(--teal-dark); }
.feature-card:hover .grade-chip.active { box-shadow: 0 0 0 4px var(--teal-soft); }
.grade-note { font-size: 0.86rem; color: var(--teal-dark); font-weight: 600; margin: 0; }

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--bg-alt);
  padding: 6px 12px;
  border-radius: 999px;
}

.tally-table {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.tally-row {
  display: grid;
  grid-template-columns: 54px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border);
}
.tally-row:last-child { border-bottom: none; }
.tally-id { color: var(--ink-light); font-weight: 700; }
.tally-name { color: var(--navy); font-weight: 600; }
.tally-amt { color: var(--ink-light); }
.tally-grade {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.tally-grade.grade-a { background: var(--teal-soft); color: var(--teal-dark); }
.tally-grade.grade-b { background: #FFF3D6; color: #A9781A; }
.tally-grade.grade-c { background: #FDECEA; color: #C0392B; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card-featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.04);
}
.price-card-featured:hover { transform: scale(1.04) translateY(-6px); }
.price-card-featured .price-eyebrow,
.price-card-featured .price-amount { color: white; }
.price-card-featured .price-desc,
.price-card-featured .price-list li { color: #C7D8E5; }
.price-card-featured .price-list li::before { color: var(--teal); }

.price-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--teal);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin: 0 0 10px;
}
.price-card-featured .price-eyebrow { color: var(--teal-on-navy); }
.price-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.price-desc { font-size: 0.9rem; margin-bottom: 22px; }
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  flex-grow: 1;
}
.price-list li {
  font-size: 0.9rem;
  padding: 7px 0;
  color: var(--ink-light);
  position: relative;
  padding-left: 22px;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-dark);
  font-weight: 800;
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-alt); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item:hover { border-color: var(--teal); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-soft);
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--teal-dark);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after { width: 2px; height: 10px; transition: opacity 0.25s ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); background: var(--teal); }
.faq-question[aria-expanded="true"] .faq-icon::after { opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p { padding: 0 22px 20px; margin: 0; font-size: 0.94rem; }

/* ---------- Contact ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-copy h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.contact-direct {
  margin-top: 26px;
  padding: 16px 18px;
  background: var(--teal-soft);
  border-radius: 12px;
  font-size: 0.94rem;
  color: var(--navy);
}
.contact-direct a { color: var(--teal-dark); font-weight: 700; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy);
  margin-bottom: 6px;
  margin-top: 16px;
}
.contact-form label:first-of-type { margin-top: 0; }
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 184, 204, 0.15);
}
.contact-form button { margin-top: 22px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-status {
  margin: 12px 0 0;
  font-size: 0.88rem;
  text-align: center;
  min-height: 1.2em;
}
.form-status.success { color: var(--teal-dark); font-weight: 700; }
.form-status.error { color: #C0392B; font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); padding: 60px 0 30px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 24px;
}
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-brand .brand-mark {
  width: auto;
  height: 30px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 8px 10px;
  flex-shrink: 0;
}
.footer-brand-name { font-family: var(--font-head); font-weight: 700; color: white; margin-bottom: 6px; }
.footer-brand-desc { font-size: 0.86rem; color: #9FB6C8; max-width: 300px; margin: 0 0 16px; }
.footer-email-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #D7E4EC;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 8px 14px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-email-chip:hover { border-color: var(--teal); color: var(--teal); }

.footer-col-head {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7E93A4;
  margin: 0 0 14px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a,
.footer-link-btn {
  color: #C7D8E5;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
}
.footer-col a:hover,
.footer-link-btn:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.footer-copy { color: #7E93A4; font-size: 0.82rem; margin: 0; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 46, 79, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 500;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  background: white;
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  padding: 36px 32px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-icon svg { width: 30px; height: 30px; }
.modal h3 { font-size: 1.25rem; margin-bottom: 10px; }
.modal p { font-size: 0.95rem; margin-bottom: 22px; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-light);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}
.modal-close:hover { background: var(--bg-alt); color: var(--navy); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-ghost,
  .header-actions .btn-primary { display: none; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 40px; order: -1; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; text-align: left; }

  .problem-grid { grid-template-columns: 1fr; gap: 44px; }
  .problem-left h2, .problem-left > p { max-width: 100%; }

  .how-grid { grid-template-columns: 1fr; gap: 36px; }
  .how-left { position: static; }
  .how-left h2, .how-left > p { max-width: 100%; }

  .feature-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feature-card-scoring, .feature-card-monitor, .feature-card-default, .feature-card-tally {
    grid-column: 1; grid-row: auto;
  }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; order: -1; }
  .price-card-featured:hover { transform: translateY(-6px); }

  .contact-inner { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  section { padding: 70px 0; }
  .hero { padding: 50px 0 70px; }
  .floating-chip { display: none; }
  .report-tabs { flex-wrap: wrap; }
  .tally-row { grid-template-columns: 40px 1fr auto; }
  .tally-amt { display: none; }
}
