/* ==========================================================================
   American Bridge Capital
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy-900: #0b2a45;
  --navy-800: #10406a;
  --navy-700: #14497a;
  --navy-600: #1c5a92;
  --blue-500: #2a7fbd;
  --cyan-500: #29a8e0;
  --cyan-400: #4dbdea;
  --red-600: #c8202f;

  --ink: #16202b;
  --ink-soft: #4b5966;
  --line: #dde5ec;
  --surface: #ffffff;
  --surface-tint: #eef5fb;
  --surface-alt: #f6f9fc;

  --radius: 6px;
  --radius-lg: 10px;
  --shadow-card: 0 1px 2px rgba(11, 42, 69, .06), 0 8px 24px rgba(11, 42, 69, .06);
  --shadow-lift: 0 2px 4px rgba(11, 42, 69, .08), 0 18px 40px rgba(11, 42, 69, .12);

  --wrap: 1140px;
  --serif: 'Roboto Slab', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin: 0 0 .9rem;
}
.eyebrow-dark { color: var(--blue-500); }

.lede { font-size: 1.08rem; color: var(--ink-soft); }

section { padding: 84px 0; }
.section-tint { background: var(--surface-tint); }
.section-alt { background: var(--surface-alt); }
.section-navy { background: var(--navy-800); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 14px 26px; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn > svg { width: 17px; height: 17px; flex: 0 0 auto; }
/* Navy on cyan reads at 5.43:1, where white on cyan was only 2.70:1. Keeps the
   brand cyan intact and brightens on hover rather than darkening.
   These use the doubled .btn.btn-x selector deliberately. Buttons are anchors, so a
   context rule like .site-footer a would otherwise win on specificity and repaint the
   label (it was dimming the footer CTA to 72% white on cyan). Do not simplify these
   back to a single class. */
.btn.btn-cyan { background: var(--cyan-500); color: var(--navy-900); }
.btn.btn-cyan:hover { background: var(--cyan-400); color: var(--navy-900); }
.btn.btn-navy { background: var(--navy-700); color: #fff; }
.btn.btn-navy:hover { background: var(--navy-900); color: #fff; }
.btn.btn-outline-light { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn.btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn.btn-outline-navy { border-color: var(--navy-700); color: var(--navy-700); background: transparent; }
.btn.btn-outline-navy:hover { background: var(--navy-700); color: #fff; }
.btn-full { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900); color: #fff;
  font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  text-align: center; padding: 9px 16px;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--cyan-400); }
.topbar strong { font-family: var(--serif); letter-spacing: .04em; margin-left: .5rem; }

/* ---------- Header ---------- */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 60; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 104px; }
.brand img { height: 82px; width: auto; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a.navlink {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy-700); padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav a.navlink:hover { color: var(--cyan-500); border-bottom-color: var(--cyan-500); }
.nav a.navlink.is-active { color: var(--cyan-500); border-bottom-color: var(--cyan-500); }
.nav .btn { padding: 11px 20px; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 8px 11px; cursor: pointer; color: var(--navy-700);
}
.nav-toggle svg { width: 20px; height: 20px; display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(105deg, rgba(9,32,53,.95) 0%, rgba(11,42,69,.86) 45%, rgba(16,64,106,.72) 100%), url('../img/solution-bg.jpg');
  background-size: cover; background-position: center;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .82fr; gap: 56px; align-items: center; padding: 92px 0; }
.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero h1 .accent { color: var(--cyan-400); display: block; }
.hero p { color: rgba(255,255,255,.86); font-size: 1.06rem; max-width: 34em; }
/* Auto-fit grid rather than flex: three across on desktop, reflowing to two on narrow
   screens without ever squeezing "$500K to $100M+" (which is nowrap) past the edge.
   Flex with equal columns forced three across at every width and overflowed on mobile. */
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(172px, 1fr)); gap: 22px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-stat { min-width: 0; }
/* 1.4rem, not 1.5rem: "$500K to $100M+" is nowrap and needed 183px at 1.5rem, which made
   three columns exceed the strip. Measured clean at every width from 360 to 1440. */
.hero-stat .n { font-family: var(--serif); font-size: 1.4rem; white-space: nowrap; font-weight: 700; color: var(--cyan-400); line-height: 1; }
.hero-stat .l { font-size: .7rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: .45rem; line-height: 1.35; text-wrap: balance; }
/* Clarifies that 50% and 80% are sequential, not cumulative, since the two stats sit
   side by side above. Scoped as .hero .hero-stepup because .hero p would otherwise win
   on specificity and force body size on it. */
.hero .hero-stepup { margin-top: 18px; max-width: 44em; font-size: .84rem; line-height: 1.55; color: rgba(255,255,255,.74); }
.hero .hero-stepup strong { color: #fff; font-weight: 700; }

/* Page hero (interior pages) */
.page-hero { position: relative; background: var(--navy-800); color: #fff; padding: 76px 0 68px; overflow: hidden; }
.page-hero.has-photo::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(100deg, rgba(9,32,53,.93) 0%, rgba(11,42,69,.84) 55%, rgba(16,64,106,.7) 100%), url('../img/solution-bg.jpg');
  background-size: cover; background-position: center 40%;
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: .8rem; }
.page-hero p { color: rgba(255,255,255,.86); max-width: 46em; font-size: 1.05rem; }

/* ---------- Lead form card ---------- */
.form-card { background: var(--navy-600); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lift); }
.form-card h2 { color: #fff; font-size: 1.5rem; margin-bottom: 1.1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; font-family: var(--sans); font-size: .95rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid rgba(255,255,255,.35); border-radius: var(--radius);
  background: #fff; outline: none;
}
.form-card select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%2316202b' stroke-width='1.5'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 36px; }
.form-card input:focus, .form-card select:focus, .form-card textarea:focus { border-color: var(--cyan-400); box-shadow: 0 0 0 3px rgba(41,168,224,.28); }
.form-card ::placeholder { color: #7d8b99; }
.form-note { font-size: .74rem; line-height: 1.5; color: rgba(255,255,255,.75); margin: 12px 0 0; }

/* Cloudflare Turnstile widget, injected into every lead form by site.js.
   Kept narrow so it never forces horizontal scroll inside the dark form card. */
.cf-turnstile { margin: 16px 0 2px; max-width: 100%; overflow: hidden; }
.cf-turnstile iframe { max-width: 100%; }

/* Consent line under every lead form. Light context by default, inverted inside the navy card. */
.consent-note { font-size: .76rem; line-height: 1.55; color: var(--ink-soft); margin: 14px 0 0; }
.consent-note a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.consent-note a:hover { color: var(--navy-700); }
.form-card .consent-note { color: rgba(255,255,255,.78); }
.form-card .consent-note a { color: #fff; }
.form-card .consent-note a:hover { color: var(--cyan-400); }
.form-card .btn { margin-top: 4px; }

/* ---------- Steps band ---------- */
.steps { background: var(--navy-700); color: #fff; padding: 62px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; text-align: center; }
.steps-grid.steps-5 { grid-template-columns: repeat(5, 1fr); gap: 26px; }
.steps-grid.steps-5 h3 { font-size: 1rem; min-height: 2.5em; }
.steps-grid.steps-5 p { font-size: .88rem; }
.step-icon {
  width: 52px; height: 52px; margin: 0 auto 18px; border-radius: 50%;
  background: rgba(255,255,255,.14); display: grid; place-items: center;
}
.step-icon svg { width: 24px; height: 24px; stroke: #fff; }
.steps h3 { color: #fff; font-size: 1.1rem; margin-bottom: .5rem; }
.steps p { color: rgba(255,255,255,.82); font-size: .93rem; }

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

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-card); }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .95rem; color: var(--ink-soft); }
.card-icon {
  width: 40px; height: 40px; border-radius: var(--radius); background: var(--surface-tint);
  display: grid; place-items: center; margin-bottom: 16px;
}
.card-icon svg { width: 20px; height: 20px; stroke: var(--navy-700); }

.service-card h3 { color: var(--navy-700); font-size: 1.2rem; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 14px;
  font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan-500);
}
.service-card .card-link:hover { color: var(--navy-700); }
.service-card ul { margin: 12px 0 0; padding-left: 18px; font-size: .92rem; color: var(--ink-soft); }
.service-card li { margin-bottom: .3rem; }

.section-head { max-width: 40em; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); }

/* ---------- Why ABC list ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: .98rem; }
.check-list li:last-child { border-bottom: none; }
.check-list svg { flex: 0 0 20px; width: 20px; height: 20px; stroke: var(--cyan-500); margin-top: 3px; }
.section-navy .check-list li { border-bottom-color: rgba(255,255,255,.16); color: rgba(255,255,255,.9); }
.section-navy .check-list svg { stroke: var(--cyan-400); }
.section-navy .lede { color: rgba(255,255,255,.85); }

/* ---------- Terms table ---------- */
.terms { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.terms-row { display: grid; grid-template-columns: 220px 1fr; gap: 0; border-bottom: 1px solid var(--line); }
.terms-row:last-child { border-bottom: none; }
.terms-row:nth-child(odd) { background: var(--surface-alt); }
.terms-k { padding: 15px 22px; font-weight: 600; color: var(--navy-700); font-size: .95rem; }
.terms-v { padding: 15px 22px; font-size: .95rem; color: var(--ink-soft); }
.fineprint { font-size: .86rem; color: var(--ink-soft); margin-top: 18px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--serif); font-weight: 700; font-size: 1.02rem; color: var(--ink); padding: 18px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--sans); font-size: 1.35rem; font-weight: 400; color: var(--blue-500); line-height: 1; }
.faq details[open] summary::after { content: '\2013'; }
.faq details p { padding: 0 0 20px; font-size: .96rem; color: var(--ink-soft); max-width: 62em; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.bio {
  background: var(--navy-900); color: #fff; border-radius: 22px; padding: 34px 30px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-lift);
}
.bio-photo {
  width: 132px; height: 132px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255,255,255,.22); margin: 0 auto 20px;
}
.bio h3 { color: #fff; font-size: 1.5rem; text-transform: uppercase; letter-spacing: .02em; text-align: center; margin-bottom: .3rem; }
.bio .role {
  text-align: center; font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan-400); margin: 0 0 20px;
}
.bio p { font-size: .93rem; color: rgba(255,255,255,.82); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); }
.contact-form h2 { font-size: 1.6rem; margin-bottom: 1.2rem; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--navy-700); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: .96rem; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; outline: none;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(42,127,189,.16); }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-note { border-left: 3px solid var(--cyan); background: #f2f8fc; border-radius: 0 8px 8px 0;
  padding: 16px 20px; margin: 0 0 30px; font-size: .93rem; color: var(--ink-soft); line-height: 1.6; }
.contact-note strong { color: var(--navy-700); }
.contact-list { list-style: none; margin: 0 0 34px; padding: 0; }
.contact-list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-list svg { flex: 0 0 20px; width: 20px; height: 20px; stroke: var(--cyan-500); margin-top: 4px; }
.contact-list .k { font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 3px; }
.contact-list .v { font-family: var(--serif); font-size: 1.1rem; color: var(--navy-700); }
.office-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px 24px; }
.office { border-left: 3px solid var(--cyan-500); padding: 4px 0 4px 16px; }
.office h4 { font-size: .95rem; margin-bottom: .3rem; color: var(--navy-700); }
.office p { font-size: .9rem; color: var(--ink-soft); }
.hero-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.pill {
  display: inline-flex; align-items: center; gap: .55rem; padding: 11px 20px;
  border: 1px solid rgba(255,255,255,.4); border-radius: 999px; color: #fff;
  font-size: .86rem; font-weight: 600;
}
.pill:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.pill svg { width: 16px; height: 16px; stroke: var(--cyan-400); }

/* ---------- ABC Central ---------- */
.portal-note {
  border: 2px dashed var(--line); border-radius: var(--radius-lg); padding: 48px 32px; text-align: center; background: #fff;
}
.portal-note .card-icon { margin: 0 auto 18px; width: 56px; height: 56px; border-radius: 50%; }
.portal-note .card-icon svg { width: 26px; height: 26px; }
.portal-note p { max-width: 34em; margin: 0 auto; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy-900); color: #fff; text-align: center; padding: 72px 0; }
.cta-band h2 { color: #fff; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 26px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: #212529; color: rgba(255,255,255,.72); padding: 62px 0 0; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
.site-footer h4 { color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-family: var(--sans); margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: var(--cyan-400); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-logo { height: 58px; width: auto; margin-bottom: 18px; }
.footer-brandtext { font-size: .9rem; line-height: 1.6; }
.social { display: flex; gap: 12px; margin-bottom: 20px; }
.social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; }
.social a:hover { border-color: var(--cyan-400); background: rgba(41,168,224,.16); }
.social svg { width: 17px; height: 17px; }
.footer-contact { margin-bottom: 20px; }
.footer-contact div { margin-bottom: 6px; }
.footer-offices .office { border-left-color: rgba(41,168,224,.7); margin-bottom: 16px; }
.footer-offices .office h4 { color: #fff; letter-spacing: .06em; margin-bottom: .25rem; font-size: .78rem; }
.footer-offices .office p { color: rgba(255,255,255,.68); font-size: .86rem; }
.footer-bottom {
  margin-top: 48px; border-top: 1px solid rgba(255,255,255,.14); padding: 20px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
/* On narrow screens the disclaimer wraps, which stranded the separator and the
   Privacy Policy link on a line of their own. Drop the separator and give the link
   its own line cleanly. */
@media (max-width: 700px) {
  .footer-sep { display: none; }
  .footer-privacy { display: inline-block; margin-top: 8px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding: 68px 0; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 26px; }
  .steps-grid.steps-5 { grid-template-columns: repeat(3, 1fr); gap: 34px 24px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}

@media (max-width: 860px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 20px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-card); }
  .nav.is-open { display: flex; }
  .nav a.navlink { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav a.navlink:hover, .nav a.navlink.is-active { border-bottom-color: var(--line); }
  .nav .btn { margin-top: 14px; }
  .nav-toggle { display: block; }
  .site-header .wrap { position: relative; }
  .team-grid { grid-template-columns: 1fr; }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 60px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field-2 { grid-template-columns: 1fr; }
  .steps-grid, .steps-grid.steps-5, .cols-4 { grid-template-columns: 1fr; }
  .terms-row { grid-template-columns: 1fr; }
  .terms-k { padding-bottom: 0; }
  .terms-v { padding-top: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar { font-size: .68rem; letter-spacing: .08em; }
  .hero-stats { gap: 24px; }
}

/* ---------- Two-column check list ---------- */
.check-list.two-col { column-count: 2; column-gap: 44px; }
.check-list.two-col li { break-inside: avoid; }
.check-list.tight li { padding: 11px 0; font-size: .94rem; }

/* ---------- Product tiles ---------- */
.product-grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: 28px; align-items: start; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 30px 32px; box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.product-card.is-primary { border-color: var(--navy-700); border-top: 4px solid var(--navy-700); box-shadow: var(--shadow-lift); }
.product-tag {
  display: inline-block; align-self: flex-start; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--navy-700);
  padding: 6px 11px; border-radius: 3px; margin-bottom: 16px;
}
.product-tag.alt { background: #fff; color: var(--ink-soft); border: 1px solid var(--line); }
.product-card h3 { font-family: var(--serif); font-size: 1.42rem; color: var(--navy-900); margin: 0 0 6px; line-height: 1.25; }
.product-sub { font-size: .95rem; font-weight: 600; color: var(--cyan-500); margin: 0 0 16px; }
.product-card > p { font-size: .97rem; color: var(--ink-soft); margin: 0 0 18px; }
.product-line {
  font-family: var(--serif); font-weight: 700; color: var(--navy-700);
  font-size: 1.02rem; margin: 0 0 6px !important;
}
.product-fit { font-size: .92rem; color: var(--ink-soft); margin: 18px 0 24px !important; }
.product-fit strong { color: var(--navy-900); }
.product-card .btn { align-self: flex-start; margin-top: auto; }

/* ---------- Step-up block ---------- */
.stepup { background: var(--surface-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 20px; }
.stepup-row { display: grid; grid-template-columns: 108px 1fr; gap: 18px; align-items: start; }
.stepup-n { font-family: var(--serif); font-weight: 700; font-size: 1.24rem; color: var(--navy-700); line-height: 1.2; }
.stepup-t { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }
.stepup-t strong { color: var(--navy-900); }
.stepup-arrow { padding: 12px 0 12px 42px; color: var(--cyan-500); }
.stepup-arrow svg { width: 22px; height: 22px; }

/* ---------- Add-on strip ---------- */
.addon-strip {
  margin-top: 30px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--cyan-500);
  border-radius: var(--radius); padding: 24px 28px;
}
.addon-strip h3 { font-family: var(--serif); font-size: 1.12rem; color: var(--navy-900); margin: 0 0 8px; }
.addon-strip p { font-size: .94rem; color: var(--ink-soft); margin: 0; max-width: 78ch; }

/* ---------- Comparison table ---------- */
.compare-block { margin-top: 62px; }
.compare-hint { display: none; font-size: .82rem; color: var(--ink-soft); margin: 0 0 8px; }
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.compare { width: 100%; min-width: 760px; border-collapse: collapse; font-size: .92rem; }
.compare thead th {
  background: var(--navy-700); color: #fff; font-family: var(--serif); font-weight: 700;
  font-size: .98rem; text-align: left; padding: 16px 20px; vertical-align: bottom;
}
.compare thead th:first-child { width: 20%; background: var(--navy-800); }
.compare tbody th {
  text-align: left; font-weight: 700; color: var(--navy-900); padding: 14px 20px;
  background: var(--surface-alt); vertical-align: top; font-size: .9rem;
}
.compare tbody td { padding: 14px 20px; color: var(--ink-soft); vertical-align: top; line-height: 1.5; }
.compare tbody tr { border-top: 1px solid var(--line); }
.compare tbody td:nth-child(2) { background: rgba(41,168,224,.05); color: var(--ink); }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
  .check-list.two-col { column-count: 1; }
  .compare-hint { display: block; }
}
@media (max-width: 600px) {
  .stepup-row { grid-template-columns: 1fr; gap: 6px; }
  .stepup-arrow { padding-left: 0; }
  .addon-strip { padding: 20px 22px; }
}

/* ---------- Three-step process + call-first CTA ---------- */
.steps-grid.steps-3 { grid-template-columns: repeat(3, 1fr); gap: 34px; }
.steps-cta {
  margin-top: 54px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.18);
  text-align: center;
}
.steps-cta > p {
  font-family: var(--serif); font-weight: 700; color: #fff;
  font-size: 1.32rem; margin: 0 0 22px; line-height: 1.35;
}
.steps-cta .btn-lg { font-size: 1.02rem; padding: 17px 34px; display: inline-flex; align-items: center; gap: 11px; }
.steps-cta .btn-lg svg { width: 19px; height: 19px; }
.steps-cta-row { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.steps-cta-or {
  font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
}
.steps-cta-sub { font-size: .92rem; color: rgba(255,255,255,.72); margin: 20px 0 0 !important; font-family: var(--sans) !important; font-weight: 400 !important; }
.steps-cta-sub a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 860px) {
  .steps-grid.steps-3 { grid-template-columns: 1fr; }
  .steps-cta > p { font-size: 1.14rem; }
  .steps-cta-row { flex-direction: column; gap: 12px; }
  .steps-cta-row .btn-lg { width: 100%; justify-content: center; }
}

/* ---------- Contact: email or book ---------- */
.or-book { margin-top: 16px; }
.or-book-rule { display: flex; align-items: center; gap: 14px; color: var(--ink-soft); font-size: .84rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.or-book-rule::before, .or-book-rule::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.or-book .btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.or-book .btn svg { width: 17px; height: 17px; }
.hero-pills .pill svg { flex: none; }

/* required field marker */
.req { color: #29a8e0; font-weight: 700; }

/* ---------- Post-submit confirmation panel ---------- */
.form-success {
  margin-top: 16px; padding: 18px 20px; border-radius: var(--radius);
  background: rgba(41,168,224,.14); border: 1px solid rgba(41,168,224,.45);
}
.form-success .fs-title {
  margin: 0 0 6px; font-family: var(--serif); font-weight: 700;
  font-size: 1.02rem; color: #fff; line-height: 1.35;
}
.form-success .fs-body { margin: 0; font-size: .88rem; line-height: 1.55; color: rgba(255,255,255,.86); }
.form-success .fs-btn { margin-top: 14px; }
/* On light backgrounds (contact page) invert the text colors. */
.contact-form .form-success { background: rgba(41,168,224,.09); border-color: rgba(41,168,224,.4); }
.contact-form .form-success .fs-title { color: var(--navy-900); }
.contact-form .form-success .fs-body { color: var(--ink-soft); }
.form-intro { margin: -6px 0 20px; font-size: .93rem; line-height: 1.6; color: var(--ink-soft); }

/* ---------- Legal pages ---------- */
.legal-copy { max-width: 760px; margin: 0 auto; }
.legal-copy h2 { font-size: 1.25rem; color: var(--navy-900); margin: 2.2rem 0 .7rem; }
.legal-copy h2:first-of-type { margin-top: 0; }
.legal-copy p { color: var(--ink-soft); line-height: 1.75; margin: 0 0 1rem; }
.legal-copy ul { margin: 0 0 1rem; padding-left: 1.15rem; }
.legal-copy li { color: var(--ink-soft); line-height: 1.75; margin-bottom: .6rem; }
.legal-copy strong { color: var(--navy-900); }
.legal-copy a { color: var(--navy-700); text-decoration: underline; text-underline-offset: 2px; }
.legal-copy a:hover { color: var(--cyan-500); }
.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: #fff; }
