/* =============================================================
   Neonet Digital — Brand System
   Editorial, tradesperson-direct, mobile-first
   ============================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Design Tokens ---------- */
:root {
  --navy: #16293D;
  --navy-700: #1E3550;
  --navy-900: #0C1A2A;
  --teal: #4A9B93;
  --teal-dark: #3B7F78;
  --teal-light: #6FB8B1;
  --bg: #F7F4EE;
  --bg-alt: #EFEBE2;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-muted: #6E6E6E;
  --rule: #E5E1D8;
  --white: #FFFFFF;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1240px;
  --container-narrow: 880px;
  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(22,41,61,0.04), 0 2px 8px rgba(22,41,61,0.04);
  --shadow-md: 0 4px 14px rgba(22,41,61,0.08), 0 10px 32px rgba(22,41,61,0.06);
  --shadow-lg: 0 20px 50px rgba(22,41,61,0.12);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 160ms;
  --t: 260ms;
  --t-slow: 480ms;
}

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  font-feature-settings: "ss01", "cv11";
}
::selection { background: var(--teal); color: var(--white); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 450;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.08;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
h1 { font-size: clamp(2.4rem, 5.6vw + 0.4rem, 4.6rem); font-weight: 400; letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 3.4vw + 0.8rem, 3.2rem); }
h3 { font-size: clamp(1.4rem, 1.2vw + 1rem, 1.85rem); }
h4 { font-size: 1.25rem; font-family: var(--sans); font-weight: 600; letter-spacing: -0.01em; }

p { max-width: 62ch; }
p.lead {
  font-size: clamp(1.05rem, 0.6vw + 0.95rem, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow--navy { color: var(--navy); }
.eyebrow--white { color: var(--teal-light); }

.numeral {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--teal);
  font-size: clamp(2.2rem, 2.4vw + 1.2rem, 3rem);
  line-height: 1;
  display: inline-block;
  letter-spacing: -0.02em;
}
.numeral--big {
  font-size: clamp(3.8rem, 5vw + 2rem, 6.4rem);
}

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

.section { padding: clamp(64px, 8vw, 120px) 0; }
.section--tight { padding: clamp(48px, 6vw, 88px) 0; }
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--alt { background: var(--bg-alt); }

.grid { display: grid; gap: clamp(24px, 3vw, 40px); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.rule { height: 1px; background: var(--rule); border: 0; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: -0.005em;
  transition: transform var(--t-fast) var(--ease),
              background var(--t) var(--ease),
              color var(--t) var(--ease),
              border-color var(--t) var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(74,155,147,0.35);
}
.btn--primary:hover { background: var(--teal-dark); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--ghost-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn--lg { padding: 20px 34px; font-size: 1.05rem; }
.btn-arrow { transition: transform var(--t) var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.link-arrow:hover { color: var(--teal); border-color: var(--teal); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,244,238,0.88);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), color var(--t) var(--ease);
}
.site-header.is-scrolled {
  background: var(--navy);
  color: var(--white);
  border-bottom-color: var(--navy-700);
}
.site-header.is-scrolled .nav-link { color: var(--white); }
.site-header.is-scrolled .nav-link:hover { color: var(--teal-light); }
.site-header.is-scrolled .logo-dark { display: none; }
.site-header.is-scrolled .logo-light { display: block; }
.site-header.is-scrolled .nav-phone { color: var(--white); }
.site-header.is-scrolled .nav-toggle span { background: var(--white); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  min-height: 72px;
}
.nav-brand { display: flex; align-items: center; }
.nav-brand svg, .nav-brand img { height: 36px; width: auto; }
.logo-light { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color var(--t) var(--ease);
}
.nav-link:hover { color: var(--teal); }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--teal);
}

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
.nav-phone svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-drawer.is-open ~ .nav-links,
  .nav-drawer { display: block; }
}

.mobile-drawer {
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--navy);
  color: var(--white);
  padding: 32px 28px;
  transform: translateY(-110%);
  transition: transform var(--t-slow) var(--ease);
  z-index: 90;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateY(0); }
.mobile-drawer ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-drawer a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 1.6rem;
  border-bottom: 1px solid var(--navy-700);
}
.mobile-drawer a:hover { color: var(--teal-light); }
.mobile-drawer .drawer-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.mobile-drawer .drawer-cta .btn { justify-content: center; }

/* Trial page minimal header */
.site-header--minimal .nav-links,
.site-header--minimal .nav-toggle,
.site-header--minimal .nav-actions .btn { display: none; }
.site-header--minimal .nav-phone { display: inline-flex !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-headline {
  font-size: clamp(2.6rem, 5.6vw + 0.4rem, 5rem);
  line-height: 0.98;
  margin-bottom: 22px;
  letter-spacing: -0.028em;
}
.hero-headline em {
  font-style: italic;
  color: var(--teal);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(1.05rem, 0.5vw + 1rem, 1.2rem);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 48ch;
  line-height: 1.55;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.88rem;
  color: var(--ink-muted);
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip .dot {
  width: 5px; height: 5px; background: var(--teal);
  border-radius: 50%; display: inline-block;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(22,41,61,0.06), rgba(22,41,61,0.35));
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(247,244,238,0.95);
  border-radius: var(--radius);
  padding: 14px 18px;
  backdrop-filter: blur(8px);
  font-size: 0.88rem;
  line-height: 1.35;
  max-width: 260px;
  z-index: 2;
}
.hero-badge strong { display: block; color: var(--navy); margin-bottom: 4px; }

/* ---------- Credibility bar ---------- */
.cred-bar {
  background: var(--navy);
  color: var(--white);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--navy-700);
  border-bottom: 1px solid var(--navy-700);
  position: relative;
}
.cred-bar::before,
.cred-bar::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.cred-bar::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.cred-bar::after  { right: 0; background: linear-gradient(to left, var(--navy), transparent); }
.cred-track {
  display: inline-flex;
  gap: 56px;
  animation: scrollX 32s linear infinite;
  padding-right: 56px;
}
.cred-track span {
  font-size: 1.02rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  display: inline-flex;
  align-items: center;
  gap: 20px;
  letter-spacing: -0.005em;
}
.cred-track span::after {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,155,147,0.18);
  display: inline-block;
  margin-left: 20px;
}
.cred-track .cred-hl {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--teal-light);
  letter-spacing: -0.015em;
}
@keyframes scrollX {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.cred-bar:hover .cred-track { animation-play-state: paused; }

/* ---------- Section intro ---------- */
.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 4vw, 64px);
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Problem / Columns ---------- */
.columns-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; }
.column .numeral { display: block; margin-bottom: 18px; }
.column h3 { margin-bottom: 12px; font-size: 1.35rem; }
.column p { color: var(--ink-soft); line-height: 1.55; font-size: 0.98rem; }

.closer-line {
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 1.8vw + 0.8rem, 2rem);
  line-height: 1.25;
  color: var(--navy);
  margin: clamp(48px, 6vw, 80px) auto 0;
  max-width: 26ch;
  font-style: italic;
  font-weight: 400;
}

/* ---------- Founder block ---------- */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 880px) { .founder { grid-template-columns: 1fr; } }
.founder-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-copy .eyebrow { margin-bottom: 14px; }
.founder-copy h2 { margin-bottom: 24px; }
.founder-copy p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.05rem; line-height: 1.65; max-width: 52ch; }
.founder-copy p:first-of-type {
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(1.35rem, 1vw + 1.1rem, 1.7rem);
  line-height: 1.35;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 26px;
}
.founder-sig {
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--navy);
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  transition: background var(--t) var(--ease);
}
.service-card:hover { background: var(--white); }
.service-card .svc-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--teal);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.4rem; }
.service-card p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.55; margin-bottom: 22px; }
.service-card .link-arrow { margin-top: auto; align-self: flex-start; }

/* ---------- Numbered list (why us) ---------- */
.why-list { display: grid; gap: 28px; max-width: 760px; margin: 0 auto; }
.why-item {
  display: grid;
  grid-template-columns: minmax(88px, auto) 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.why-item:last-child { border-bottom: 1px solid var(--rule); }
.why-item .numeral { font-size: 2.4rem; line-height: 0.9; margin-top: 2px; white-space: nowrap; }
.why-list--centered .numeral { justify-self: center; text-align: center; }
.why-item h3 { font-family: var(--sans); font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; margin-bottom: 8px; color: var(--navy); }
.why-item p { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(28px, 3vw, 48px); }
.step {
  position: relative;
  padding-top: 8px;
}
.step-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 4vw + 1rem, 4.5rem);
  color: var(--teal);
  line-height: 0.9;
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }

.steps--centered .step { text-align: center; }
.steps--centered .step p { margin-left: auto; margin-right: auto; max-width: 38ch; }

/* ---------- Results cards ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.result-card .tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.result-card .metric {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 2vw + 1.2rem, 2.8rem);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.result-card .quote {
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.55;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  margin-top: auto;
}

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 26px 56px 26px 0;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.2rem);
  font-weight: 500;
  color: var(--navy);
  position: relative;
  cursor: pointer;
  transition: color var(--t) var(--ease);
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--teal); }
.faq-q::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px; height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-75%) rotate(45deg);
  transition: transform var(--t) var(--ease);
}
.faq-item.is-open .faq-q::after { transform: translateY(-25%) rotate(-135deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.faq-a-inner {
  padding: 0 0 28px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-a-inner p + p { margin-top: 12px; }

/* ---------- Big CTA ---------- */
.big-cta {
  background: var(--navy);
  color: var(--white);
  padding: clamp(72px, 10vw, 140px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,155,147,0.35), transparent 70%);
  filter: blur(40px);
}
.big-cta h2 {
  font-size: clamp(2.2rem, 3.4vw + 1rem, 3.6rem);
  max-width: 18ch;
  margin: 0 auto 20px;
  color: var(--white);
}
.big-cta p { color: rgba(255,255,255,0.8); max-width: 50ch; margin: 0 auto 32px; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 28px;
  border-top: 1px solid var(--navy-700);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand svg, .footer-brand img { height: 36px; width: auto; margin-bottom: 20px; display: block; }
.footer-brand p { font-size: 0.95rem; line-height: 1.55; max-width: 38ch; }
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--t) var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--navy-700);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); margin-left: 20px; }
.footer-bottom a:first-of-type { margin-left: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 48px);
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 22px; }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
@media (max-width: 560px) { .form-row--split { grid-template-columns: 1fr; gap: 0; } }
@media (max-width: 560px) { .form-row--split .form-row { margin-bottom: 22px; } }
.form-row label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-row .req { color: var(--teal); margin-left: 2px; }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  background: var(--bg);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: var(--teal);
  background: var(--white);
}
input.is-invalid, select.is-invalid, textarea.is-invalid {
  border-color: #C84A4A;
  background: #FDF4F4;
}
textarea { resize: vertical; min-height: 110px; }
.form-error {
  display: none;
  color: #B13A3A;
  font-size: 0.85rem;
  margin-top: 6px;
}
.form-row.has-error .form-error { display: block; }

.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}
.radio-group label {
  display: block;
  padding: 12px 14px;
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: all var(--t) var(--ease);
  font-weight: 500;
  background: var(--bg);
  margin-bottom: 0;
}
.radio-group input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.radio-group input[type="radio"]:checked + span,
.radio-group label:has(input:checked) { border-color: var(--teal); color: var(--navy); background: var(--white); }

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0; width: 0;
}
.form-submit { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.form-submit small { color: var(--ink-muted); font-size: 0.85rem; }

.form-success {
  display: none;
  background: #E9F5F3;
  border: 1px solid var(--teal);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); margin: 0 auto; max-width: 42ch; }

/* ---------- Offer / Landing bits ---------- */
.offer-hero {
  padding: clamp(80px, 10vw, 130px) 0 clamp(50px, 6vw, 80px);
  background: radial-gradient(80% 60% at 80% 0%, rgba(74,155,147,0.08), transparent 60%), var(--bg);
}
.offer-hero .eyebrow { margin-bottom: 22px; }
.offer-hero h1 { max-width: 18ch; margin-bottom: 22px; }
.offer-hero .lead { margin-bottom: 28px; }
.offer-bullets {
  display: grid;
  gap: 10px;
  margin: 0 0 32px;
  max-width: 640px;
}
.offer-bullets li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 1rem;
  color: var(--ink);
  padding: 6px 0;
}
.offer-bullets .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Stat block (big numbers) */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
  padding: clamp(40px, 5vw, 72px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat .numeral--big { display: block; margin-bottom: 10px; }
.stat h4 { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.stat p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; }

/* Include checklist */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px 40px;
}
.included-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
}
.included-item .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}
.included-item h4 { margin-bottom: 4px; font-size: 1.02rem; }
.included-item p { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.55; margin: 0; }

/* Fit lists */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 720px) { .fit-grid { grid-template-columns: 1fr; gap: 32px; } }
.fit-col h3 { margin-bottom: 20px; }
.fit-col.positive h3 { color: var(--navy); }
.fit-col.negative h3 { color: var(--ink-soft); }
.fit-col ul { display: grid; gap: 14px; }
.fit-col li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
  padding: 6px 0;
}
.fit-col .ico {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}
.fit-col.positive .ico { background: var(--teal); color: var(--white); }
.fit-col.negative .ico { background: transparent; border: 1.5px solid #C2BDB1; color: #8E8879; }

/* Promise block */
.promise {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.promise::before {
  content: "";
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 4px;
  background: var(--teal);
}
.promise .eyebrow { margin-bottom: 18px; }
.promise h2 { color: var(--white); margin-bottom: 22px; max-width: 18ch; }
.promise p { color: rgba(255,255,255,0.82); font-size: 1.05rem; line-height: 1.7; max-width: 54ch; margin-bottom: 14px; }
.promise .founder-sig { color: var(--teal-light); margin-top: 20px; }

/* Safety net */
.safety-net {
  padding: clamp(56px, 6vw, 88px) 0;
  text-align: center;
  background: var(--bg-alt);
}
.safety-net h2 { max-width: 18ch; margin: 0 auto 16px; }
.safety-net p { max-width: 48ch; margin: 0 auto 32px; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.6; }
.safety-net .phone-line { margin-top: 22px; font-size: 1rem; color: var(--ink-soft); }
.safety-net .phone-line a { font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--teal); }

/* ---------- Industry cards ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.industry-card .trade {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.industry-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.industry-card .stat-line {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 10px;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 72px);
}
@media (max-width: 840px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info .block { margin-bottom: 28px; }
.contact-info .label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.contact-info .value {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.contact-info .value a { border-bottom: 1px solid var(--rule); }
.contact-info .value a:hover { color: var(--teal); border-color: var(--teal); }
.contact-info p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.55; max-width: 42ch; }

/* ---------- Legal pages ---------- */
.legal-body { max-width: 760px; margin: 0 auto; padding: clamp(60px, 8vw, 100px) 24px; }
.legal-body h1 { margin-bottom: 12px; }
.legal-body .eyebrow { margin-bottom: 14px; }
.legal-body .updated { color: var(--ink-muted); margin-bottom: 40px; font-size: 0.92rem; }
.legal-body h2 { margin: 40px 0 14px; font-size: 1.55rem; }
.legal-body h3 { margin: 28px 0 10px; font-family: var(--sans); font-weight: 600; font-size: 1.1rem; color: var(--navy); }
.legal-body p, .legal-body li {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 1rem;
}
.legal-body ul { padding-left: 20px; margin-bottom: 20px; list-style: disc; }
.legal-body a { color: var(--teal); border-bottom: 1px solid var(--rule); }

/* ---------- Services (long-scroll) ---------- */
.service-block {
  padding: clamp(56px, 6vw, 100px) 0;
  border-top: 1px solid var(--rule);
}
.service-block:first-of-type { border-top: 0; }
.service-block .service-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 860px) { .service-block .service-inner { grid-template-columns: 1fr; } }
.service-block .eyebrow { margin-bottom: 14px; }
.service-block h2 { margin-bottom: 18px; }
.service-block .promise-line {
  font-family: var(--serif);
  color: var(--teal);
  font-size: 1.15rem;
  margin-bottom: 22px;
  font-style: italic;
  max-width: 36ch;
}
.service-block p { color: var(--ink-soft); margin-bottom: 14px; line-height: 1.65; }
.service-block .checklist { display: grid; gap: 14px; margin: 24px 0; }
.service-block .checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.5;
}
.service-block .checklist .ico {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; margin-top: 2px;
  flex-shrink: 0;
}
.service-block .fit-line {
  display: inline-block;
  background: var(--bg-alt);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 12px;
}
.service-block .aside {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.service-block .aside h4 { margin-bottom: 10px; font-family: var(--serif); font-weight: 400; font-size: 1.2rem; color: var(--navy); }
.service-block .aside p { font-size: 0.95rem; margin-bottom: 20px; }

/* Service sticky nav */
.services-nav {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 72px;
  z-index: 50;
  margin-bottom: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.services-nav-inner {
  display: flex;
  gap: 28px;
  padding: 16px 0;
  white-space: nowrap;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.services-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  flex-shrink: 0;
}
.services-nav a:hover { color: var(--teal); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .cred-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 0 var(--radius) 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
