/* =========================================================
   Skip The Line — Alabama Vehicle Title Services
   Shared stylesheet
   Premium, minimal, clean. Apple-inspired spacing + typography.
   ========================================================= */

:root {
  --navy: #0B1F33;
  --navy-2: #24496B;
  --gold: #BFA06C;
  --gold-dark: #9E8352;
  --bg: #F5F7FA;
  --card: #FFFFFF;
  --text: #1A1A1A;
  --text-soft: #4A4A4A;
  --line: #E3E7EC;
  --line-2: #D1D6DE;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Text",
          "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display",
                  "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1120px;
  --maxw-narrow: 820px;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow: 0 1px 2px rgba(11,31,51,0.04), 0 8px 24px rgba(11,31,51,0.06);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--navy-2); text-decoration: none; }
a:hover { color: var(--navy); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: 30px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
p  { margin: 0 0 1em; color: var(--text); }

.small { font-size: 14px; color: var(--text-soft); }
.muted { color: var(--text-soft); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.narrow { max-width: var(--maxw-narrow); margin: 0 auto; }

/* ================== TOP BAR ================== */
.topbar {
  background: var(--navy);
  color: #F2F3F6;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.topbar .tb-left span { margin-right: 18px; }
.topbar a { color: var(--gold); }
.topbar a:hover { color: #fff; text-decoration: none; }

/* ================== HEADER / NAV ================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  background: #fff;
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-text .sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover { color: var(--navy); border-bottom-color: var(--gold); text-decoration: none; }
.nav-links a.active { color: var(--navy); border-bottom-color: var(--gold); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line-2);
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
}

/* ================== BUTTONS / CTAs ================== */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--font-display);
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .08s ease, background .15s ease, color .15s ease, border-color .15s ease;
  letter-spacing: 0.01em;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--navy);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ================== HERO ================== */
.hero {
  padding: 96px 24px 72px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.hero .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 52px;
  max-width: 820px;
  margin: 0 0 20px;
}
.hero .subhead {
  font-size: 20px;
  color: var(--text-soft);
  max-width: 680px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding: 22px 0 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.trust-item .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0;
}

/* ================== SECTIONS ================== */
section.block {
  padding: 84px 24px;
}
section.block.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head .eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 { font-size: 34px; margin-bottom: 12px; }
.section-head p { font-size: 18px; color: var(--text-soft); }

/* ================== GRIDS ================== */
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: 15.5px; }
.card .num {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 16px;
  font-size: 15px;
}
.card .icon {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
  background: #fff;
}

/* ================== SERVICE CARDS (homepage) ================== */
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .15s ease, transform .15s ease;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.service-card h3 { margin-bottom: 8px; }
.service-card .price { color: var(--navy-2); font-weight: 600; font-size: 15px; margin-bottom: 12px; }
.service-card .arrow { color: var(--gold-dark); font-weight: 600; font-size: 14px; }

/* ================== FIT / NOT FIT ================== */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.fit-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
}
.fit-col.yes { border-left: 3px solid var(--gold); }
.fit-col.no  { border-left: 3px solid var(--line-2); }
.fit-col h4 {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy-2); margin-bottom: 16px;
}
.fit-col.no h4 { color: var(--text-soft); }
.fit-col ul { list-style: none; padding: 0; margin: 0; }
.fit-col li { padding: 8px 0; color: var(--text); font-size: 15.5px; }
.fit-col li::before {
  content: "—";
  color: var(--gold-dark);
  margin-right: 10px;
  font-weight: 600;
}
.fit-col.no li::before { color: var(--line-2); }

/* ================== STEPS ================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
}
.step .n {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step h4 { margin-bottom: 6px; font-size: 17px; }
.step p { color: var(--text-soft); font-size: 15px; margin: 0; }

/* ================== CTA BLOCK ================== */
.cta-block {
  background: var(--navy);
  color: #fff;
  padding: 72px 24px;
  text-align: center;
}
.cta-block h2 { color: #fff; margin-bottom: 14px; font-size: 32px; }
.cta-block p  { color: #C8CDD6; max-width: 620px; margin: 0 auto 30px; font-size: 17px; }
.cta-block .btn-primary { padding: 16px 32px; font-size: 17px; }
.cta-block .footnote { color: #8A92A1; font-size: 13px; margin-top: 16px; }

/* ================== PRICE BAR ================== */
.price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 22px 0;
}
.price-bar .label { font-weight: 600; color: var(--navy); font-size: 17px; }
.price-bar .fee   { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--navy); letter-spacing: -0.01em; }
.price-bar .note  { color: var(--text-soft); font-size: 14px; }

/* ================== PRICING TABLE ================== */
.pricing-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.pricing-row:last-child { border-bottom: 0; }
.pricing-row .svc { font-weight: 600; color: var(--navy); font-size: 17px; }
.pricing-row .svc .sub { display: block; font-weight: 400; font-size: 14px; color: var(--text-soft); margin-top: 2px; }
.pricing-row .amt { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 22px; letter-spacing: -0.01em; white-space: nowrap; }

/* ================== POLICY BOX ================== */
.policy-box {
  background: #FFF8E8;
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 22px 0;
}
.policy-box h4 { color: var(--navy); margin-bottom: 8px; font-size: 16px; }
.policy-box p  { margin: 0; color: var(--text); font-size: 15.5px; line-height: 1.55; }

.critical-box {
  background: #fff;
  border: 1px solid #E6C8C8;
  border-left: 4px solid #B8392E;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 22px 0;
}
.critical-box h4 { color: #7A1F17; margin-bottom: 10px; font-size: 16px; letter-spacing: 0.02em; text-transform: uppercase; font-size: 13px; font-weight: 700; }
.critical-box p { margin: 0 0 6px; color: var(--text); font-size: 15.5px; }
.critical-box p strong { color: var(--navy); }

/* ================== FORM ================== */
form.intake {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-field label .req { color: #B8392E; margin-left: 3px; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy-2);
  outline: none;
  box-shadow: 0 0 0 3px rgba(31,78,121,0.12);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-note { color: var(--text-soft); font-size: 14px; margin: 18px 0 22px; }
.form-submit { margin-top: 8px; }

/* ================== FAQ ================== */
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold-dark);
  font-size: 22px;
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
}

/* ================== TESTIMONIALS (PLACEHOLDER) ================== */
.placeholder-banner {
  background: #FFF3D1;
  border: 1px dashed var(--gold-dark);
  color: #6B5320;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: 0.02em;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial .stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; margin-bottom: 12px; }
.testimonial .quote {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 18px;
}
.testimonial .who { font-size: 14px; color: var(--text-soft); }
.testimonial .who strong { color: var(--navy); font-weight: 600; }

/* ================== MICRO TRUST LINE ================== */
.microtrust {
  display: block;
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  margin-top: 18px;
}

/* ================== FOOTER ================== */
.site-footer {
  background: var(--navy);
  color: #C8CDD6;
  padding: 60px 24px 30px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: var(--maxw);
  margin: 0 auto 36px;
}
.footer-grid h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 700;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 6px 0; }
.footer-grid a { color: #C8CDD6; }
.footer-grid a:hover { color: var(--gold); text-decoration: none; }
.footer-brand .brand-text { color: #fff; }
.footer-brand .brand-text .sub { color: #8A92A1; }
.footer-brand p { color: #8A92A1; font-size: 14px; margin: 14px 0 0; max-width: 280px; line-height: 1.5; }
.footer-brand .brand-mark { border-color: var(--gold); background: transparent; color: #fff; }

.footer-disclaimer {
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid #1B3447;
  padding-top: 24px;
  color: #8A92A1;
  font-size: 12.5px;
  line-height: 1.6;
}
.footer-disclaimer p { color: #8A92A1; margin: 0 0 10px; }
.footer-disclaimer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-disclaimer .bottom a { color: #C8CDD6; }
.footer-disclaimer .bottom a:hover { color: var(--gold); text-decoration: none; }

/* ================== PAGE HEADER (inner pages) ================== */
.page-header {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  padding: 64px 24px 40px;
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-header h1 { font-size: 42px; max-width: 780px; margin-bottom: 16px; }
.page-header .lead { font-size: 19px; color: var(--text-soft); max-width: 680px; line-height: 1.5; }

/* ================== LISTS (in body) ================== */
.body-list { list-style: none; padding: 0; margin: 0 0 24px; }
.body-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--text);
  font-size: 16px;
}
.body-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 2px;
  background: var(--gold);
}

/* ================== UTILS ================== */
.spacer-sm { height: 24px; }
.spacer-md { height: 48px; }
.spacer-lg { height: 72px; }
.center { text-align: center; }
.tight { max-width: 720px; margin: 0 auto; }

.divider { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }

/* ================== TRUST SEALS / BADGES ================== */
.seal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.seal {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seal::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}
.seal-icon {
  width: 40px; height: 40px;
  margin: 0 auto 12px;
  display: block;
}
.seal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 4px;
}
.seal-sub {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

/* ================== VERIFICATION & SECURITY BOX ================== */
.security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.security-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  border-top: 3px solid var(--navy-2);
}
.security-card h3 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
}
.security-card p { color: var(--text-soft); font-size: 15px; margin: 0; }

/* ================== ANTI-SCAM NOTE ================== */
.scam-note {
  background: #FFF8E8;
  border: 1px solid var(--gold);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 24px 0;
}
.scam-note h4 {
  color: var(--navy);
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}
.scam-note p { margin: 0 0 8px; font-size: 15px; }
.scam-note p:last-child { margin-bottom: 0; }
.scam-note strong { color: var(--navy); }

/* ================== SCOPE EXCLUSIONS ================== */
.scope-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 24px;
}
.scope-block h4 {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 14px;
  font-weight: 700;
}
.scope-block ul { list-style: none; padding: 0; margin: 0; }
.scope-block li {
  padding: 6px 0 6px 22px;
  font-size: 15px;
  color: var(--text);
  position: relative;
}
.scope-block li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 17px;
  top: 4px;
}

/* ================== TOP TRUST LINE (above nav) ================== */
.trust-line {
  background: #fff;
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 8px 24px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--navy);
  font-weight: 600;
}
.trust-line strong { color: var(--navy); }
.trust-line .dot { color: var(--gold); margin: 0 8px; }

/* ================== PAYMENT FLOW STEPS (Start page) ================== */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 24px 0 10px;
}
.flow-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  position: relative;
}
.flow-step .fnum {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  width: 24px; height: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 8px;
  font-family: var(--font-display);
}
.flow-step h4 { font-size: 14px; margin-bottom: 4px; color: var(--navy); letter-spacing: 0; }
.flow-step p { font-size: 13px; color: var(--text-soft); margin: 0; line-height: 1.4; }

@media (max-width: 720px) {
  .seal-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 960px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 42px; }
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  .page-header h1 { font-size: 34px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 14px 24px; border: 0; }
  .nav-links a:hover, .nav-links a.active { border: 0; background: var(--bg); }
  .nav-toggle { display: inline-block; }
  .site-header { position: relative; }

  .hero { padding: 64px 24px 48px; }
  .hero h1 { font-size: 34px; }
  .hero .subhead { font-size: 17px; }
  .trust-bar { gap: 14px 24px; }
  .trust-item { font-size: 13.5px; }

  section.block { padding: 56px 24px; }
  .section-head h2 { font-size: 26px; }

  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  form.intake { padding: 24px; }

  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }

  .price-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pricing-row { flex-direction: column; align-items: flex-start; gap: 6px; }

  .topbar-inner { flex-direction: column; gap: 6px; padding: 10px 16px; font-size: 12.5px; text-align: center; }
  .topbar .tb-left span { margin: 0 8px; }

  .page-header { padding: 48px 24px 32px; }
  .page-header h1 { font-size: 28px; }
  .page-header .lead { font-size: 16.5px; }
}
