/* ============================================================
   VERITY Tenant Screening — Verity Tenant Screening
   Vanilla CSS. Follows the Verity v2 typography scale.
   ============================================================ */

/* ── FONT FACE (same files/weights as the Verity Main Landing page) ── */
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Century Gothic';
  src: url('../fonts/CenturyGothic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── TYPOGRAPHY SCALE (matches landing-v2-font-upsize standard) ──
   Dynamic Header 128 | Section h2 48 | Subheader 24 | Hook 24
   Body 17 | base 20 | hero-sub 22 | buttons ~18 | pricing-name 25 | footnotes 12
   Century Gothic ships only 400 + 700 — never specify 600/800 (would fake-bold).
*/

:root {
  --green: #44D62C;
  --green-dark: #38b824;
  --green-soft: #e6fbe1;
  --navy: #0C1E3C;
  --ink: #1A1F17;
  --muted: #5A6A85;
  --border: #E2E8F4;
  --bg: #FAFBFF;
  --surface: #FFFFFF;
  --bg-soft: #F4F8F3;
  --bg-slate: #EEF2F9;
  --danger: #dc2626;
  --danger-soft: #fef2f2;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 16px 48px rgba(12, 30, 60, .10);
  --shadow-sm: 0 4px 24px rgba(12, 30, 60, .06);
  --font: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  /* No overflow-x here: html-level overflow turns <body> into a clip container
     and breaks the sticky nav. body's overflow-x:hidden covers the viewport. */
}

body {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--navy);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover,
a:focus { text-decoration: none; }

.container {
  width: 90vw;
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.text-green { color: var(--green); }

/* Hero headline accent — copied from the vibe-code guide:
   bg-gradient-to-r from-blue-600(#44D62C) to-sky-600(#0284c7) */
.hero-accent-line {
  display: inline-block;
  background: linear-gradient(to right, #44D62C, #0284c7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
  text-decoration: none !important;
}
.btn:hover {
  transform: translateY(-2px);
  text-decoration: none !important;
}
.btn:focus { text-decoration: none !important; }

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(68, 214, 44, .35);
}
.btn-green:hover { background: var(--green-dark); }

.btn-ghost {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); }

.btn-outline {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ── BURGER ──────────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-burger,
nav,
.nav-links,
.nav-links > li > a,
.nav-dropdown a,
.nav-cta {
  line-height: normal;
}

/* ── NAV (matches VERISafe shared green header) ───────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 96px;
}

.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar nav { top: 46px; }
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img {
  height: 100% !important;
  max-height: 74px !important;
  width: auto;
  display: block;
}
body .nav-logo img {
  max-height: 74px !important;
}
.nav-logo-icon,
.nav-logo-text { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
  list-style: none;
}
.nav-links > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-links > li > a {
  color: white;
  text-decoration: none !important;
  font-size: clamp(14px, calc(7.14px + 0.67vw), 20px);
  font-weight: 700;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 20px 0;
  cursor: pointer;
}
.nav-links > li > a:hover,
.nav-links > li > a:focus,
.nav-logo:hover,
.nav-logo:focus {
  text-decoration: none !important;
}
.nav-links > li > a:hover { color: white; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 12px 0;
  width: max-content;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
  backface-visibility: hidden;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 8px 28px;
  font-size: clamp(12px, calc(7.43px + 0.45vw), 16px);
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: background-color 0.15s;
  background-color: transparent;
}
.nav-dropdown a:hover { background-color: rgba(255, 255, 255, 0.14); }
.nav-cta {
  background: white;
  color: var(--green) !important;
  height: auto !important;
  padding: 11px 26px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: clamp(14px, calc(7.14px + 0.67vw), 20px) !important;
  transition: background 0.2s, transform 0.2s !important;
  text-decoration: none;
  align-self: center;
}
.nav-cta:hover {
  background: white !important;
  transform: translateY(-1px);
}

/* ── SHARED SECTION HEADER ───────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }

/* Split header (left title + right lede), used by the Why section */
.section-head-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(360px, 1fr);
  gap: 36px;
  align-items: end;
  text-align: left;
}
.section-head-split .eyebrow { margin-bottom: 14px; }
.section-head-split .section-title { margin: 0; }
.section-head-split .section-lede {
  margin-top: 0;
  font-size: 22px;
  font-weight: 700;
  color: rgba(29, 41, 61, 1);
  max-width: 520px;
}
.section-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.5px;
}
.section-lede {
  font-size: 24px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 18px;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  background: rgba(248, 250, 252, 1);
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero .container { max-width: none; }
.hero-head { max-width: none; margin: 0 auto 60px; text-align: center; }
.hero-title {
  font-size: clamp(46px, 6.4vw, 86px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1.5px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Comparison cards */
.compare {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
}
.compare-vs {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  z-index: 5;
  width: 78px; height: 78px;
  display: grid; place-items: center;
  background: rgba(2, 6, 24, 1);
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: var(--shadow-sm);
}
.compare-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .35s ease;
}
.compare-bad {
  box-shadow: 18px 22px 42px rgba(12, 30, 60, .12);
}
.compare-good {
  box-shadow: -18px 22px 42px rgba(12, 30, 60, .12);
}
.compare-bad:hover {
  box-shadow: 22px 28px 58px rgba(2, 6, 24, .28);
}
.compare-good:hover {
  box-shadow: -22px 28px 58px rgba(2, 6, 24, .28);
}
.compare-img {
  position: relative;
  height: 330px;
  overflow: hidden;
}
.compare-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.compare-card:hover .compare-img img { transform: scale(1.05); }
.compare-flag {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(12, 30, 60, .14);
}
.compare-flag svg { width: 15px; height: 15px; }
.flag-bad {
  background: rgba(254, 242, 242, 1);
  border: 1px solid rgba(248, 113, 113, .7);
  color: var(--danger);
}
.flag-good {
  background: rgba(240, 253, 244, 1);
  border: 1px solid rgba(34, 197, 94, .55);
  color: var(--green-dark);
}
.compare-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px;
  border: 1px solid rgba(194, 249, 189, .8);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 8px 20px rgba(68, 214, 44, .14), inset 0 -1px 0 rgba(2, 6, 24, .03);
}
.compare-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.compare-kicker svg { width: 16px; height: 16px; }
.kicker-bad { color: var(--danger); }
.kicker-good { color: var(--green-dark); }
.compare-body h3 {
  font-size: 28px;
  color: var(--navy);
  margin: 10px 0 12px;
  font-weight: 700;
}
.compare-body p {
  font-size: 17px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.6;
}
.compare-stat {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.compare-stat strong { font-size: 30px; font-weight: 700; line-height: 1; }
.compare-stat span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}
.stat-bad strong { color: var(--danger); }
.stat-good strong { color: var(--green-dark); }

/* ── WHY / BENTO ─────────────────────────────────────── */
.why { padding: 96px 0; background: rgba(255, 255, 255, 1); }
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bento-card {
  display: flex;
  flex-direction: column;
  background: rgba(248, 250, 252, 1);
  border: 1px solid rgba(15, 23, 43, .06);
  border-radius: var(--radius);
  padding: 34px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.bento-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 13px;
  border-radius: 999px;
}
.bento-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid transparent;
}
.bento-icon svg { width: 22px; height: 22px; }
.icon-green { background: rgba(68, 214, 44, .14); color: var(--green-dark); }
.icon-blue { background: rgba(37, 99, 235, .12); color: #2563eb; }
.icon-owner {
  background: rgba(226, 252, 224, 1);
  border-color: rgba(194, 249, 189, 1);
  color: var(--green-dark);
}
.icon-police {
  background: rgba(250, 245, 255, 1);
  border-color: rgba(233, 213, 255, 1);
  color: rgba(15, 23, 43, 1);
}
.icon-credit {
  background: rgba(208, 250, 229, 1);
  border-color: rgba(167, 243, 208, 1);
  color: #007A55;
}
.icon-pdpa {
  background: rgba(240, 249, 255, 1);
  border-color: rgba(186, 230, 253, 1);
  color: rgba(15, 23, 43, 1);
}
.bento-card h3 {
  font-size: 25px;
  font-weight: 700;
  color: rgba(15, 23, 43, 1);
  margin-bottom: 12px;
  line-height: 1.2;
}
.bento-card p {
  font-size: 17px;
  font-weight: 700;
  color: rgba(69, 85, 108, 1);
  line-height: 1.6;
}
.bento-card .bento-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 43, .08);
  font-size: 14px;
  color: rgba(98, 116, 142, 1);
}

/* ── CALCULATOR ──────────────────────────────────────── */
.calc { padding: 96px 0; background: rgba(248, 250, 252, 1); }
.calc .section-head {
  max-width: 900px;
}
.calc .section-lede {
  font-weight: 700;
  color: rgba(29, 41, 61, 1);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: stretch;
}
.calc-controls {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 42px;
  box-shadow: var(--shadow-sm);
}
.calc-step {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.calc-field { display: block; margin-bottom: 22px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-label { display: block; font-size: 18px; font-weight: 700; color: var(--navy); }
.calc-hint {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  margin: 3px 0 8px;
  line-height: 1.4;
}
.calc-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 4px 0 8px;
  text-align: right;
  letter-spacing: 1.5px;
}
.calc-field input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #edf2f8;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
}
.calc-range { display: flex; justify-content: space-between; margin-top: 6px; }
.calc-range i {
  font-style: normal;
  font-size: 12px;
  color: #7890af;
  font-weight: 700;
  letter-spacing: 1px;
}

.calc-choice { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.calc-choice button {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: .15s;
  font-family: var(--font);
}
.calc-choice button small { font-size: 12px; font-weight: 700; color: var(--muted); }
.calc-choice button:hover { border-color: var(--green); }
.calc-choice button.is-active {
  border-color: var(--green);
  background: var(--green-soft);
  color: var(--green-dark);
}
.calc-choice button.is-active small { color: var(--green-dark); }

/* Results */
.calc-results {
  display: flex;
  flex-direction: column;
  background: #0d1628;
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 40px 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
  overflow: hidden;
  height: 100%;
}
.calc-panel-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: rgba(255, 255, 255, .58);
  margin-bottom: 18px;
}
.calc-results-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, .65);
}
.calc-total {
  font-size: 52px;
  font-weight: 700;
  color: #ff6584;
  line-height: 1.05;
  margin: 6px 0 10px;
  letter-spacing: -1px;
}
.calc-results-note {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 18px;
  line-height: 1.45;
}
.calc-breakdown { list-style: none; border-top: 1px solid rgba(255, 255, 255, .12); }
.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  gap: 18px;
}
.calc-breakdown b {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.calc-action-panel {
  background: #030818;
  margin: auto -40px 0;
  padding: 24px 40px 26px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.calc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.calc-cta-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--green);
  margin-bottom: 4px;
}
.calc-cta-title { display: block; font-size: 18px; font-weight: 700; color: #fff; }
.calc-cta-price-wrap { text-align: right; }
.calc-cta-label { display: none; }
.calc-cta-price { display: block; font-size: 26px; font-weight: 700; color: var(--green); }
.calc-cta small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, .28);
  text-transform: uppercase;
}
.calc-save {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #66f2bb;
  background: rgba(0, 220, 160, .10);
  border: 1px solid rgba(0, 220, 160, .24);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.calc-save-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}
.calc-save-icon svg { width: 20px; height: 20px; }
.calc-save-text { display: block; }
.calc-save strong { color: #fff; }
.calc-package-btn {
  width: 100%;
  margin-top: 18px;
  color: #fff;
  background: #39d62a;
}

/* ── PRICING ─────────────────────────────────────────── */
.pricing {
  padding: 96px 0;
  background: rgba(248, 250, 252, 1);
  overflow: hidden;
}
.pricing .section-head {
  max-width: 900px;
}
.pricing .section-lede {
  font-weight: 700;
  color: rgba(29, 41, 61, 1);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  isolation: isolate;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px 40px 38px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.price-popular {
  border: 2px solid var(--green);
  box-shadow: 0 18px 48px rgba(12, 30, 60, .10);
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.price-popular::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -118px;
  width: 130%;
  height: 74px;
  background: rgba(0, 201, 80, .09);
  filter: blur(52px);
  border-radius: 999px;
  pointer-events: none;
  transform: translateX(-50%);
  z-index: -1;
}
.price-popular > * {
  position: relative;
  z-index: 1;
}
.price-flag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #06320b;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 7px 16px;
  border-radius: 999px;
}
.price-name {
  font-size: 25px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 14px;
}
.price-desc {
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.6;
  min-height: 78px;
}
.price-amount {
  font-size: 56px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin: 20px 0 2px;
}
.price-amount sup { font-size: 22px; font-weight: 700; vertical-align: super; margin-right: 2px; }
.price-meta {
  font-size: 14px;
  color: #7890af;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.price-list { list-style: none; margin-bottom: 42px; flex-grow: 1; }
.price-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 0;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
}
.price-list .price-turn-item::before {
  content: "◷";
  font-size: 17px;
  top: 7px;
}
.price-note {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  color: rgba(98, 116, 142, 1);
  margin-bottom: 26px;
}
.price-card .btn {
  width: 100%;
  font-size: 19px;
  font-weight: 700;
}

/* ── SLOGAN SECTION ──────────────────────────────────── */
.slogan-section {
  background: rgba(68, 214, 44, 1);
  padding: 80px 40px;
  text-align: center;
}

.slogan-section h2:first-child {
  color: black;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 auto 16px;
}

.slogan-section h2:nth-child(2) {
  color: white;
  font-size: 22px;
  font-weight: 400 !important;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 12px auto 0;
  max-width: none;
  white-space: nowrap;
}

.slogan-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 36px;
}

.btn-slogan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-slogan-outline {
  color: #44d62c;
  background: #fff;
  border: 2px solid #fff;
}

.btn-slogan-outline:hover {
  background: #f0f0f0;
}

.btn-slogan-fill {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
}

.btn-slogan-fill:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── FOOTER (matches Verity Main Landing page) ───────── */
footer {
  --navy: rgba(15, 26, 12, 1);
  background: #f8f8f6;
  padding: 56px 60px 48px;
  line-height: normal;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 40px;
}
.footer-heading {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #5A6A85;
  margin-bottom: 16px;
  text-transform: none;
}
.footer-col a {
  display: block;
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--green); }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  flex-shrink: 0;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.social-icon svg {
  width: 24px;
  height: 24px;
}
.social-icon:hover {
  transform: translateY(-3px);
  opacity: 0.88;
}
.footer-logo-img { height: 110px; width: auto; display: block; }
.footer-bar {
  background: var(--green);
  padding: 14px 60px;
  font-size: 12px;
  color: white;
  text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
/* Nav collapses to burger at 960px (matches landing page) */
@media (max-width: 960px) {
  body.nav-open,
  body:has(.nav-links.open) { overflow: hidden; }
  html { scroll-padding-top: 104px; }
  nav { height: 88px; padding: 0 24px; }
  .nav-logo img {
    height: 62px;
    max-height: 62px !important;
  }
  body .nav-logo img {
    height: 62px !important;
    max-height: 62px !important;
  }
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green);
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    padding: 16px 24px 24px;
    gap: 0;
    height: auto;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 100;
  }
  .nav-links.open { display: flex; animation: navSlideDown 0.25s ease forwards; }
  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links > li {
    display: block;
    height: auto;
    width: 100%;
    padding: 0;
  }
  .nav-links > li > a {
    color: white;
    font-size: 14px;
    height: auto;
    padding: 14px 0;
    width: 100%;
    border-bottom: none;
  }
  .nav-links > li:last-child > a { border-bottom: none; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0 0 8px 8px;
    padding: 4px 12px;
    margin: 0 0 8px;
    width: auto;
  }
  .nav-dropdown a {
    color: white;
    padding: 10px 8px;
    font-size: 14px;
  }
  .nav-cta { display: inline-block; margin-top: 0; }
}
@media (max-width: 992px) {
  .hero-title { font-size: 56px; }
  .section-title { font-size: 38px; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-results { position: static; height: auto; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .price-desc { min-height: 0; }
}

@media (max-width: 768px) {
  body { font-size: 18px; }
  footer {
    padding: 40px 24px 40px;
    overflow: hidden;
  }
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    flex: 1;
  }
  .footer-right {
    align-items: flex-end;
    flex-shrink: 0;
  }
  .footer-bar { padding: 14px 24px; }
  .compare {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .compare-vs {
    position: relative;
    display: grid;
    top: auto;
    left: auto;
    transform: rotate(-10deg);
    order: 2;
    width: 70px;
    height: 70px;
    font-size: 25px;
    margin: -18px auto -10px;
  }
  .compare-bad { order: 1; }
  .compare-good { order: 3; }
  .bento { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
  .section-lede { font-size: 20px; }
  .section-head-split { grid-template-columns: 1fr; gap: 18px; align-items: start; }
}

@media (max-width: 576px) {
  .hero { padding-top: 48px; }
  .hero-title { font-size: 48px; }
  .section-title { font-size: 30px; }
  .slogan-section h2:first-child {
    font-size: clamp(24px, 6vw, 36px);
    letter-spacing: -0.5px;
  }
  .slogan-section h2:nth-child(2) {
    font-size: 16px;
    white-space: normal;
    max-width: 600px;
  }
  .slogan-ctas {
    flex-direction: column;
    align-items: center;
  }
  .btn-slogan {
    width: 100%;
    max-width: 280px;
  }
  .calc-controls,
  .calc-results,
  .price-card { padding: 28px 22px; }
  .calc-results { padding-bottom: 0; }
  .calc-total { font-size: 42px; }
  .calc-choice { grid-template-columns: repeat(2, 1fr); }
  .calc-action-panel {
    margin: 28px -22px 0;
    padding: 24px 22px 28px;
  }
  .calc-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .calc-cta-price-wrap { text-align: left; }
}

@media (max-width: 480px) {
  .price-name { font-size: 22px; }
  .price-amount { font-size: 48px; }
  .footer-inner {
    flex-direction: column;
    align-items: center;
  }
  .footer-links {
    width: 100%;
    justify-items: center;
  }
  .footer-col { text-align: center; }
  .footer-right {
    align-items: center;
    width: 100%;
  }
  .footer-logo-img { height: 70px; }
}

/* ── LARGE-SCREEN UPSIZE (parity with verisafe-v2-font-upsize) ──
   Body base here is already 20px (VeriSafe base is 17px), so body only
   bumps at 2560+. CTA band + footer copy VeriSafe's values exactly. */
@media (min-width: 1920px) {
  .slogan-section h2:first-child { font-size: 64px; }
  .slogan-section h2:nth-child(2) { font-size: 26px; }
  .btn-slogan { font-size: clamp(18px, calc(6px + 0.625vw), 22px); }
  .footer-heading,
  .footer-col a { font-size: 17px; }
  .footer-bar { font-size: 13px; }
}

@media (min-width: 2560px) {
  body { font-size: 21px; }
  .slogan-section h2:first-child { font-size: 78px; }
  .slogan-section h2:nth-child(2) { font-size: 32px; }
  .btn-slogan { font-size: clamp(22px, calc(10px + 0.469vw), 28px); }
  .footer-heading,
  .footer-col a { font-size: 20px; }
  .footer-bar { font-size: 15px; }
}

@media (min-width: 3840px) {
  body { font-size: 24px; }
  .slogan-section h2:first-child { font-size: 112px; }
  .slogan-section h2:nth-child(2) { font-size: 42px; }
  .btn-slogan { font-size: 28px; }
  .footer-heading,
  .footer-col a { font-size: 24px; }
  .footer-bar { font-size: 18px; }
}
