/* ============================================================
   B2B SYSTEMS GROUP — Marketing site design system
   Navy primary · Teal accent · light / off-white canvas.
   Borrows Shopifi-system restraint, pill buttons, whitespace.
   ============================================================ */

/* Font loaded via <link> in each HTML head for non-render-blocking performance */
:root {
  /* ---------- Surface ---------- */
  --ground:        #ffffff;
  --ground-off:    #f6f8fa;   /* cool off-white */
  --ground-tint:   #eef3f7;   /* faint navy-tinted block */
  --navy:          #0b2a4a;   /* primary brand */
  --navy-700:      #0a2540;
  --navy-900:      #061626;   /* dark sections / footer */

  /* ---------- Accent ---------- */
  --teal:          #0e9e8e;
  --teal-600:      #0b897b;
  --teal-700:      #097063;
  --teal-tint:     #e6f7f4;
  --teal-tint-2:   #d4efea;

  /* ---------- Text ---------- */
  --ink:           #0c2233;   /* headings */
  --body:          #475a68;   /* body copy */
  --muted:         #6c7c8a;   /* captions, meta */
  --on-dark:       #ffffff;
  --on-dark-soft:  #aebcc8;

  /* ---------- Lines ---------- */
  --hairline:      #e7ecf1;
  --hairline-2:    #dbe3ea;

  /* ---------- Radius ---------- */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 9999px;

  /* ---------- Elevation ---------- */
  --shadow-sm: 0 1px 2px rgba(12,34,51,.04), 0 1px 3px rgba(12,34,51,.06);
  --shadow-md: 0 4px 12px rgba(12,34,51,.06), 0 2px 4px rgba(12,34,51,.04);
  --shadow-lg: 0 18px 40px -12px rgba(11,42,74,.18), 0 6px 14px rgba(12,34,51,.06);
  --shadow-card: 0 1px 0 var(--hairline), 0 8px 24px -16px rgba(11,42,74,.20);

  /* ---------- Layout ---------- */
  --container: 1160px;
  --reading: 760px;
  --nav-h: 68px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--body);
  background: var(--ground);
  -webkit-text-size-adjust: 100%;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 4px; }

/* ============================================================
   TYPE SCALE
   ============================================================ */
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal-600);
  display: inline-flex; align-items: center; gap: 8px;
}
.h1 {
  font-size: clamp(2.5rem, 1.6rem + 3.6vw, 4.25rem);
  font-weight: 680; line-height: 1.04; letter-spacing: -0.022em;
  color: var(--ink); text-wrap: balance;
}
.h2 {
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.85rem);
  font-weight: 660; line-height: 1.08; letter-spacing: -0.02em;
  color: var(--ink); text-wrap: balance;
}
.h3 {
  font-size: clamp(1.25rem, 1.1rem + .5vw, 1.4rem);
  font-weight: 640; line-height: 1.22; letter-spacing: -0.012em;
  color: var(--ink);
}
.h4 {
  font-size: 1.0625rem; font-weight: 620; line-height: 1.3;
  letter-spacing: -0.008em; color: var(--ink);
}
.lead {
  font-size: clamp(1.075rem, 1rem + .45vw, 1.3rem);
  font-weight: 400; line-height: 1.55; color: var(--body);
  text-wrap: pretty;
}
.body-lg { font-size: 1.0625rem; line-height: 1.62; }
.small { font-size: .9375rem; line-height: 1.55; }
.micro { font-size: .8125rem; line-height: 1.5; color: var(--muted); }
.ink { color: var(--ink); }
.muted { color: var(--muted); }
.teal { color: var(--teal-600); }
strong { font-weight: 600; color: var(--ink); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; }
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-off { background: var(--ground-off); }
.section-tint { background: var(--ground-tint); }
.divider { border: 0; border-top: 1px solid var(--hairline); margin: 0; }

.grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.stack-sm > * + * { margin-top: 12px; }
.stack > * + * { margin-top: 20px; }
.stack-lg > * + * { margin-top: 32px; }
.center { text-align: center; }
.measure { max-width: 640px; }
.measure-lg { max-width: 720px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-head { max-width: 680px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head .lead { margin-top: 18px; }

/* ============================================================
   BUTTONS  (pill is the only button shape)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 16px; font-weight: 540; line-height: 1; letter-spacing: -0.006em;
  padding: 14px 26px; min-height: 48px;
  border-radius: var(--r-pill); border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: #11365b; border-color: #11365b; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary:active { background: var(--navy-700); transform: translateY(0); }
.btn-teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-600); border-color: var(--teal-600); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--hairline-2); }
.btn-outline:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn-on-dark { background: #fff; color: var(--navy); border-color: #fff; }
.btn-on-dark:hover { background: transparent; color: #fff; transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; min-height: 54px; font-size: 17px; }
.btn-sm { padding: 10px 18px; min-height: 40px; font-size: 15px; }

/* quiet text link with arrow — the secondary action */
.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 16px; font-weight: 540; color: var(--teal-600);
  transition: gap .18s ease, color .18s ease;
}
.textlink svg { width: 17px; height: 17px; transition: transform .18s ease; }
.textlink:hover { color: var(--teal-700); }
.textlink:hover svg { transform: translateX(3px); }

/* risk-reversal microline (sits near every CTA) */
.risk {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .9375rem; color: var(--muted); font-weight: 450;
}
.risk svg { width: 17px; height: 17px; color: var(--teal); flex: none; }
.risk strong { color: var(--body); font-weight: 600; }

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--ground); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: 28px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card-hover:hover { border-color: var(--hairline-2); box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.icon-tile {
  width: 44px; height: 44px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal-tint); color: var(--teal-700);
  border: 1px solid var(--teal-tint-2);
}
.icon-tile svg { width: 22px; height: 22px; }

/* service card */
.service-card { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.service-card .h4 { margin-top: 2px; }
.service-card p { color: var(--body); font-size: .98rem; }
.service-card .textlink { margin-top: auto; font-size: 15px; }

/* industry card — lead (prominent) */
.industry-card {
  display: flex; flex-direction: column; gap: 14px; height: 100%;
  padding: 30px; position: relative; overflow: hidden;
}
.industry-card .kicker { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--teal-600); }
.industry-card p { color: var(--body); font-size: .98rem; }
.industry-served {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: var(--ground); border: 1px solid var(--hairline);
  border-radius: var(--r-md);
}
.industry-served .h4 { font-size: 1rem; }

/* problem list */
.problem-list { display: grid; gap: 14px; }
.problem-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; background: var(--ground); border: 1px solid var(--hairline);
  border-radius: var(--r-md);
}
.problem-item .dot { color: #c0492f; flex: none; margin-top: 1px; }
.problem-item .dot svg { width: 20px; height: 20px; }
.problem-item span { color: var(--ink); font-weight: 500; font-size: 1.0625rem; }

/* check list */
.check-list { display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--body); }
.check-list li svg { width: 20px; height: 20px; color: var(--teal); flex: none; margin-top: 1px; }
.check-list.tight { gap: 10px; }

/* numbered steps */
.steps { display: grid; gap: 22px; counter-reset: step; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step .num {
  flex: none; width: 36px; height: 36px; border-radius: var(--r-pill);
  background: var(--navy); color: #fff; font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center;
}
.step h4 { margin-bottom: 4px; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.quote-card {
  background: var(--ground); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: 36px; display: flex; flex-direction: column; gap: 22px;
  box-shadow: var(--shadow-card);
}
.quote-card .stars { display: flex; gap: 3px; color: var(--teal); }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote {
  margin: 0; font-size: 1.18rem; line-height: 1.5; color: var(--ink);
  font-weight: 460; letter-spacing: -0.01em;
}
.quote-card .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote-card .who .avatar {
  width: 46px; height: 46px; border-radius: var(--r-pill); flex: none;
  background: var(--navy); color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 16px; letter-spacing: .02em;
}
.quote-card .who .name { font-weight: 600; color: var(--ink); font-size: .98rem; }
.quote-card .who .role { font-size: .875rem; color: var(--muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 4px; font-size: 1.15rem; font-weight: 560; color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-q .chev { flex: none; color: var(--muted); transition: transform .25s ease; }
.faq-q .chev svg { width: 22px; height: 22px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--teal-600); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 4px 26px; color: var(--body); max-width: 760px; font-size: 1.0625rem; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.price-card {
  background: var(--ground); border: 1px solid var(--hairline-2);
  border-radius: var(--r-lg); padding: 32px; display: flex; flex-direction: column; gap: 22px;
  position: relative;
}
.price-card.featured {
  border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), var(--shadow-lg);
  background: linear-gradient(180deg, var(--teal-tint) 0%, var(--ground) 220px);
}
.price-badge {
  position: absolute; top: -13px; left: 32px; white-space: nowrap;
  background: var(--teal); color: #fff; font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--r-pill);
}
.price-amount { display: flex; align-items: baseline; gap: 6px; }
.price-amount .start { font-size: .85rem; color: var(--muted); font-weight: 500; }
.price-amount .num { font-size: 2.75rem; font-weight: 680; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.price-amount .per { font-size: .95rem; color: var(--muted); font-weight: 500; }
.price-card .plan-name { font-size: 1.25rem; font-weight: 640; color: var(--ink); }
.price-card .plan-desc { font-size: .95rem; color: var(--body); }

/* configurator */
.config { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 880px) { .config { grid-template-columns: 1fr; } }
.config-panel { background: var(--ground); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 28px; }
.opt-group + .opt-group { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--hairline); }
.opt-group h4 { margin-bottom: 14px; }
.opt {
  display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; cursor: default;
}
.opt .box {
  width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--hairline-2);
  flex: none; margin-top: 1px; display: inline-flex; align-items: center; justify-content: center;
  color: #fff; background: var(--ground); transition: all .15s ease;
}
.opt .box svg { width: 14px; height: 14px; opacity: 0; }
.opt.on .box { background: var(--teal); border-color: var(--teal); }
.opt.on .box svg { opacity: 1; }
.opt .opt-label { font-weight: 540; color: var(--ink); font-size: 1rem; }
.opt .opt-meta { font-size: .85rem; color: var(--muted); }
.opt .opt-price { margin-left: auto; font-size: .9rem; color: var(--muted); font-weight: 500; white-space: nowrap; }

.estimate-card {
  background: var(--navy-900); color: #fff; border-radius: var(--r-lg); padding: 30px;
  position: sticky; top: 90px;
}
.estimate-card .est-row { display: flex; flex-direction: column; gap: 4px; padding: 18px 0; }
.estimate-card .est-row + .est-row { border-top: 1px solid rgba(255,255,255,.12); }
.estimate-card .est-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--on-dark-soft); }
.estimate-card .est-val { font-size: 2rem; font-weight: 680; letter-spacing: -0.02em; }
.estimate-card .est-val .s { font-size: .8rem; font-weight: 500; color: var(--on-dark-soft); letter-spacing: 0; }
.estimate-card .est-sub { font-size: .85rem; color: var(--on-dark-soft); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.scrolled { border-bottom-color: var(--hairline); box-shadow: 0 1px 0 rgba(12,34,51,.02); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 680; color: var(--ink); font-size: 1.05rem; letter-spacing: -0.02em; }
.brand .logo-slot {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: var(--navy); color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; letter-spacing: -0.02em;
}
.brand small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--body); padding: 8px 12px; border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--ground-off); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); cursor: pointer; }
.nav-toggle svg { width: 26px; height: 26px; }

.mobile-menu { display: none; }
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu {
    display: block; position: fixed; inset: var(--nav-h) 0 0; z-index: 49;
    background: var(--ground); padding: 24px; overflow-y: auto;
    transform: translateX(100%); transition: transform .26s ease; visibility: hidden;
  }
  .mobile-menu.open { transform: translateX(0); visibility: visible; }
  .mobile-menu a { display: block; padding: 16px 8px; font-size: 1.2rem; font-weight: 560; color: var(--ink); border-bottom: 1px solid var(--hairline); }
  .mobile-menu .btn { width: 100%; margin-top: 24px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero-copy { padding: clamp(48px, 6vw, 88px) 0; }
.hero-copy .h1 { margin: 20px 0 22px; }
.hero-copy .lead { max-width: 540px; }
.hero-copy .cta-row { margin-top: 34px; }
.hero-copy .risk { margin-top: 22px; }

.hero-visual { position: relative; }
.device {
  background: var(--ground); border: 1px solid var(--hairline-2);
  border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden;
}
.device-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--hairline); background: var(--ground-off); }
.device-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--hairline-2); }
.device-bar .url { margin-left: 10px; font-size: 12px; color: var(--muted); background: #fff; border: 1px solid var(--hairline); border-radius: 6px; padding: 4px 12px; }

/* floating proof toast — the one restrained motion moment */
.toast {
  position: absolute; background: var(--ground); border: 1px solid var(--hairline-2);
  border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 14px 16px;
  display: flex; gap: 12px; align-items: center; max-width: 290px;
}
.toast .t-icon { width: 38px; height: 38px; border-radius: 10px; flex: none; display: inline-flex; align-items: center; justify-content: center; }
.toast .t-icon svg { width: 20px; height: 20px; }
.toast .t-title { font-size: .9rem; font-weight: 600; color: var(--ink); }
.toast .t-sub { font-size: .8rem; color: var(--muted); }
.toast-1 { top: 16%; left: -34px; }
.toast-2 { bottom: 12%; right: -28px; }
@media (max-width: 1100px) { .toast-1 { left: 10px; } .toast-2 { right: 8px; } }
@media (max-width: 480px) { .toast { transform: scale(.9); } .toast-1 { left: -8px; } .toast-2 { right: -6px; } }

@media (prefers-reduced-motion: no-preference) {
  .toast-1 { animation: floaty 6s ease-in-out infinite; }
  .toast-2 { animation: floaty 7s ease-in-out .8s infinite; }
  @keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
}

/* ============================================================
   STAT / TRUST STRIP
   ============================================================ */
.trust-strip { display: flex; flex-wrap: wrap; gap: 14px 36px; align-items: center; }
.trust-item { display: inline-flex; align-items: center; gap: 10px; color: var(--body); font-size: .95rem; font-weight: 500; }
.trust-item svg { width: 19px; height: 19px; color: var(--teal); flex: none; }

/* ============================================================
   CTA BANNER (dark)
   ============================================================ */
.cta-banner { background: var(--navy-900); color: #fff; border-radius: var(--r-xl); padding: clamp(48px, 6vw, 80px); text-align: center; position: relative; overflow: hidden; }
.cta-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 140% at 50% -20%, rgba(14,158,142,.22), transparent 60%); pointer-events: none; }
.cta-banner .h2 { color: #fff; position: relative; }
.cta-banner .risk { color: var(--on-dark-soft); position: relative; }
.cta-banner .risk strong { color: #fff; }
.cta-banner .cta-row { position: relative; justify-content: center; margin-top: 28px; }

/* AI callout strip */
.ai-strip {
  background: var(--navy-900); color: #fff; border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px); display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center;
}
@media (max-width: 720px) { .ai-strip { grid-template-columns: 1fr; gap: 18px; } }
.ai-strip .ai-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(14,158,142,.18); color: var(--teal); display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(14,158,142,.3); }
.ai-strip .ai-icon svg { width: 28px; height: 28px; }
.ai-strip h3 { color: #fff; }
.ai-strip p { color: var(--on-dark-soft); margin-top: 6px; font-size: 1.0625rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: var(--on-dark-soft); padding: 72px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr 1fr; } }
.footer .brand { color: #fff; }
.footer .brand small { color: var(--on-dark-soft); }
.footer-blurb { font-size: .92rem; line-height: 1.6; color: var(--on-dark-soft); max-width: 300px; margin-top: 18px; }
.footer-col h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; font-weight: 600; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .9rem; color: var(--on-dark-soft); padding: 5px 0; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-contact { display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: .9rem; }
.footer-contact a { color: #fff; font-weight: 500; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); display: inline-flex; align-items: center; justify-content: center; color: var(--on-dark-soft); transition: all .15s ease; }
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.footer-social svg { width: 18px; height: 18px; }
.footer-legal { font-size: .85rem; color: var(--on-dark-soft); }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-head { padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.page-head .h1 { margin-bottom: 22px; }
.page-head .lead { max-width: 680px; }

/* pricing footer band on service pages */
.price-footer {
  background: var(--ground-off); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: 28px 30px; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 20px;
}
.price-footer .pf-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--teal-600); font-weight: 600; margin-bottom: 8px; }
.price-footer .pf-text { color: var(--ink); font-weight: 500; max-width: 620px; }

/* image slot defaults */
image-slot { display: block; width: 100%; }
.media-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--hairline); background: var(--ground-off); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: .07s; }
  .reveal-d2 { transition-delay: .14s; }
  .reveal-d3 { transition-delay: .21s; }
}

/* utility */
.flow > * + * { margin-top: var(--flow, 24px); }
.tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 500;
  color: var(--teal-700); background: var(--teal-tint); border: 1px solid var(--teal-tint-2);
  padding: 5px 12px; border-radius: var(--r-pill);
}
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--ground); border: 1px solid var(--hairline);
  border-radius: var(--r-lg); padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-card);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field + .field { margin-top: 20px; }
.field label { font-size: .9rem; font-weight: 560; color: var(--ink); }
.field .req { color: var(--teal-600); }
.input, .select, .textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink);
  background: var(--ground); border: 1px solid var(--hairline-2);
  border-radius: var(--r-md); padding: 13px 15px; min-height: 50px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--muted); }
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-tint);
}
.textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236c7c8a' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px;
}
.contact-meta { display: flex; flex-wrap: wrap; gap: 12px 32px; }
.contact-meta a { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 540; }
.contact-meta svg { width: 19px; height: 19px; color: var(--teal); }

/* founder block */
.founder { display: flex; gap: 20px; align-items: flex-start; }
.founder .photo {
  width: 96px; height: 96px; border-radius: var(--r-md); flex: none; overflow: hidden;
  border: 1px solid var(--hairline);
}
.founder .name { font-size: 1.2rem; font-weight: 640; color: var(--ink); }
.founder .title { color: var(--teal-600); font-weight: 540; font-size: .95rem; margin-top: 2px; }
.founder .bio-space { color: var(--muted); font-size: .9rem; margin-top: 12px; font-style: italic; }
