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

:root {
  /* "Haven" — warm navy + sand + orange-tan, the friendly counterpart to the cold-blue "Fleet" palette */
  --ink: #132a52;
  --ink-2: #3d5170;
  --ink-3: #5f6f8a;
  --rule: #e6dccb;
  --rule-soft: #f1e9db;
  --paper: #ffffff;
  --paper-2: #faf3e9;
  --panel: #ffffff;
  --signal: #c96a2e;
  --signal-fill: #c96a2e;
  --signal-text: #a05424;
  --signal-ink: #ffffff;
  --signal-soft: #fbe8d7;
  --signal-on-dark: #e7a06c;
  --navy-band: #132a52;
  --star: #e0972f;
  --accordion-bg: #ffffff;
  --accordion-ink: #132a52;
  --accordion-ink-2: #3d5170;
  --accordion-accent: #c96a2e;

  /* legacy aliases kept so shared component CSS across sibling sites still resolves */
  --slate: #132a52;
  --slate-2: #ffffff;
  --slate-3: #faf3e9;
  --navy: #132a52;
  --navy-deep: #0b1a36;
  --navy-mid: #3d5170;
  --navy-line: #e6dccb;
  --brass: #c96a2e;
  --brass-light: #d68448;
  --brass-dark: #8c4a20;
  --bone: #ffffff;
  --bone-warm: #faf3e9;
  --ink-soft: #3d5170;
  --muted: #5f6f8a;
  --sea: #c96a2e;
  --amber: #a05424;
  --amber-dark: #8c4a20;
  --teal: #c96a2e;
  --line: #e6dccb;
  --line-soft: #f1e9db;
  --paper-alt: #faf3e9;

  --wrap: 1220px;
  --display: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --text: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --data: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --fs-xs: 13px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 17px;
  --fs-lg: 19px;
  --fs-xl: 21px;
  --fs-2xl: 23px;
  --tap: 52px;
  --gut: 18px;
  --r: 12px;
  --r-sm: 8px;
  --shadow: 0 6px 20px rgba(10,30,66,0.08);
  --shadow-lg: 0 18px 44px rgba(10,30,66,0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--text);
  color: var(--ink);
  background: var(--paper);
  font-size: var(--fs-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); margin: 0 0 .5em; line-height: 1.15; }
p { margin: 0 0 1em; color: var(--ink-2); }
ul { margin: 0; padding: 0; list-style: none; }
svg { width: 1.3em; height: 1.3em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 820px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--text); font-weight: 700; font-size: var(--fs-sm);
  padding: 0 22px; height: var(--tap); border-radius: var(--r-sm);
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  letter-spacing: .02em;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--ink); color: var(--signal-ink); }
.btn--primary:hover { background: var(--navy-deep); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: #fff; }
.btn--outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-white:hover { background: #fff; color: var(--ink); }
.btn--navy { background: var(--ink); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); }
.btn--block { width: 100%; }
.btn--sm { height: 42px; padding: 0 16px; font-size: var(--fs-xs); }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--ink); color: #cfd9ec; font-size: 12.5px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 38px; gap: 16px; }
.topbar__left { font-weight: 500; letter-spacing: .01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.topbar__right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.topbar__lang { position: relative; display: flex; align-items: center; gap: 6px; cursor: pointer; color: #cfd9ec; }
.topbar__lang select { background: transparent; color: #cfd9ec; border: none; font-size: 12.5px; font-family: var(--text); cursor: pointer; }
.topbar__lang select option { color: #0a1e42; }
.topbar__phone { display: flex; align-items: center; gap: 6px; color: #fff; font-weight: 700; }
.topbar__phone svg { width: 14px; height: 14px; }

/* ---------- Header ---------- */
.header { background: var(--paper); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 40; }
.header__inner { display: flex; align-items: center; gap: 24px; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; background: var(--ink);
  color: #fff; flex-shrink: 0;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__word { display: flex; flex-direction: column; line-height: 1.2; }
.brand__top { font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--ink); letter-spacing: .01em; }
.brand__bottom { font-family: var(--display); font-weight: 700; font-size: 12.5px; color: var(--signal-text); letter-spacing: .01em; }

.nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav__link { position: relative; font-weight: 600; font-size: 14.5px; color: var(--ink); padding: 8px 2px; display: flex; align-items: center; gap: 5px; }
.nav__link:hover { color: var(--signal-text); }
.nav__link svg { width: 12px; height: 12px; }
.nav__cta { flex-shrink: 0; }
.header__toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--paper); padding: 56px 0 60px; overflow: hidden; }
.hero__inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 40px; width: 100%; }
.hero__lead { width: 58%; max-width: 720px; flex-shrink: 0; }
.hero h1 { font-size: clamp(32px, 4.4vw, 50px); font-weight: 800; color: var(--ink); }

/* Icon/gradient placeholder panel in place of a real lifestyle photo — same visual weight as a hero photo slot */
.hero__panel { flex: 1; min-width: 0; aspect-ratio: 6/5; border-radius: var(--r); position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--ink) 0%, var(--brass-dark) 55%, var(--signal) 100%); }
.hero__panel-inner { position: absolute; inset: 0; display: grid; place-items: center; }
.hero__panel-inner svg { width: 30%; height: 30%; color: rgba(255,255,255,.9); stroke-width: 1.2; }
.hero__panel-grid { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); }
.hero__panel-grid span { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.22); }
.hero__panel-grid svg { width: 34%; height: 34%; }
.hero__sub { font-size: var(--fs-lg); font-weight: 600; color: var(--ink-2); margin-bottom: 14px; }
.hero__cats { font-size: var(--fs-sm); margin-bottom: 20px; }
.hero__cats a { color: var(--signal-text); font-weight: 700; }
.hero__cats a:not(:last-child)::after { content: " · "; color: var(--ink-3); font-weight: 400; }

.trustrow { display: flex; flex-wrap: wrap; gap: 18px 26px; margin: 0 0 26px; }
.trustrow li { display: flex; align-items: flex-start; gap: 8px; max-width: 220px; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.trustrow svg { width: 20px; height: 20px; color: var(--signal); flex-shrink: 0; margin-top: 1px; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }

.hero__urgent { font-family: var(--display); font-weight: 800; font-size: 16px; color: var(--ink); letter-spacing: .01em; margin-bottom: 2px; }
.hero__urgent-sub { color: var(--ink-3); font-size: 14px; margin: 0; }


/* ---------- Section shells ---------- */
.section { padding: 64px 0; }
.section--warm { background: var(--paper-2); }
.section--paper { background: var(--paper); }
.section__head { margin-bottom: 34px; }
.section__head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.section__head h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; }
.plate { font-size: 12.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--signal-text); margin-bottom: 8px; }
.lede { color: var(--ink-2); font-size: var(--fs-md); }

/* ---------- Down grid (9 cards) ---------- */
.downgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.downgrid li:nth-child(n+6) { grid-column: span 1; }
.downcard { display: block; background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 20px 16px; text-align: center; height: 100%; transition: box-shadow .15s ease, transform .15s ease; }
.downcard:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.downcard__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--signal-soft); color: var(--signal); margin-bottom: 12px; }
.downcard__icon svg { width: 26px; height: 26px; }
.downcard__label { display: block; font-weight: 700; font-size: 14.5px; color: var(--ink); margin-bottom: 4px; }
.downcard__note { display: block; font-size: 12.5px; color: var(--ink-3); margin-bottom: 12px; }
.downcard__thumb { height: 54px; border-radius: 7px; background: linear-gradient(135deg, var(--rule-soft), var(--rule)); display: flex; align-items: center; justify-content: center; color: var(--ink-3); }
.downcard__thumb svg { width: 22px; height: 22px; opacity: .5; }

.callbanner { margin-top: 34px; background: var(--signal-soft); border-radius: var(--r); padding: 20px 26px; display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; flex-wrap: wrap; }
.callbanner svg { width: 26px; height: 26px; color: var(--signal); }
.callbanner span { font-weight: 800; color: var(--ink); font-size: 15.5px; letter-spacing: .01em; }

/* ---------- Who we serve ---------- */
.servegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.servecard { position: relative; }
.servecard__panel { border-radius: var(--r); aspect-ratio: 16/10; background: linear-gradient(135deg, var(--ink), var(--signal)); display: grid; place-items: center; }
.servecard__panel svg { width: 46px; height: 46px; color: rgba(255,255,255,.75); }
.servecard__icon { width: 58px; height: 58px; border-radius: 50%; background: var(--signal); color: #fff; display: grid; place-items: center; border: 4px solid var(--paper); margin: -30px 0 14px 20px; position: relative; z-index: 1; box-shadow: var(--shadow); }
.servecard__icon svg { width: 26px; height: 26px; }
.servecard__body { padding: 0 6px; }
.servecard__body h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.servecard__body p { font-size: 13.5px; color: var(--ink-2); margin: 0; }

/* ---------- Callout row ---------- */
.calloutrow { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.callout { border-radius: var(--r); padding: 32px; }
.callout--blue { background: #eaf1fe; }
.callout--amber { background: #fdf3e2; }
.callout h2 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.callout > p { color: var(--ink-2); margin-bottom: 18px; }
.subcard { background: #fff; border-radius: var(--r-sm); padding: 18px 20px; margin-bottom: 18px; box-shadow: var(--shadow); }
.subcard h4 { font-size: 14px; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 8px; color: var(--ink); }
.subcard p { font-size: 13.5px; color: var(--ink-2); margin-bottom: 0; }
.subcard__note { font-size: 12px; color: #8a6a1c; font-style: italic; margin-top: 8px; margin-bottom: 0; }
.subcard__note--legal { color: #9a3b1c; }
.callout__bold { font-weight: 800; font-size: 15.5px; color: var(--ink); margin-bottom: 6px; }

/* ---------- Industries grid ---------- */
.indgrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px 16px; text-align: center; }
.indgrid li { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.indgrid__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--paper-2); border: 1px solid var(--rule); display: grid; place-items: center; color: var(--signal); }
.indgrid__icon svg { width: 22px; height: 22px; }
.indgrid span { font-size: 13px; font-weight: 600; color: var(--ink); }
.indgrid__also { text-align: center; color: var(--ink-3); font-size: 12.5px; margin-top: 26px; max-width: 760px; margin-left: auto; margin-right: auto; }

/* ---------- Trust strip (dark) ---------- */
.truststrip { background: var(--ink); padding: 52px 0; }
.truststrip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.truststrip__item { text-align: center; }
.truststrip__icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; margin: 0 auto 14px; color: #fff; }
.truststrip__icon svg { width: 24px; height: 24px; }
.truststrip__item h3 { color: #fff; font-size: 15.5px; font-weight: 800; margin-bottom: 6px; }
.truststrip__item p { color: #a9b8d6; font-size: 13px; margin: 0; }

/* ---------- Final CTA bar ---------- */
.finalcta { background: var(--signal-soft); padding: 30px 0; }
.finalcta__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.finalcta__text { display: flex; align-items: center; gap: 14px; }
.finalcta__text svg { width: 34px; height: 34px; color: var(--signal); flex-shrink: 0; }
.finalcta__text h2 { font-size: 20px; font-weight: 800; margin: 0; color: var(--ink); }
.finalcta__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.finalcta__actions .btn small { display: block; font-weight: 500; font-size: 10.5px; opacity: .85; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #b9c5de; padding: 56px 0 0; }
.footer__top { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.footer__tagline { color: #8fa0c4; font-size: 13px; margin: 4px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer h4 { color: #fff; font-size: 14px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; font-size: 13.5px; }
.footer ul a:hover { color: #fff; }
.footer__contactitem { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 13.5px; }
.footer__contactitem svg { width: 16px; height: 16px; color: var(--signal-on-dark); flex-shrink: 0; }
.footer__social { display: flex; gap: 12px; margin: 28px 0; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.footer__social a:hover { background: var(--signal); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: #8fa0c4; }
.footer__bottom a { margin-left: 16px; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Utility ---------- */
.callrule { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--paper-2); border-radius: var(--r); padding: 20px 26px; margin-top: 30px; flex-wrap: wrap; }
.callrule__txt { margin: 0; font-weight: 700; color: var(--ink); }

/* ---------- Form ---------- */
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.formcard { background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow); }
.fieldrow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-family: var(--data); font-size: var(--fs-xs); font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field select {
  width: 100%; min-height: 50px; padding: 12px 14px;
  font-family: var(--text); font-size: var(--fs-base); color: var(--ink);
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r-sm);
  transition: border-color .15s linear, box-shadow .15s linear;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--signal); box-shadow: 0 0 0 3px var(--signal-soft); }
.field__err { display: block; margin-top: 6px; font-size: var(--fs-xs); font-weight: 600; color: #b3261e; }
.formalt { margin: 20px 0 6px; font-family: var(--data); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.formnote { margin: 14px 0 0; font-size: var(--fs-xs); line-height: 1.6; color: var(--ink-3); }
.formok { margin: 0 0 18px; padding: 14px 16px; border-radius: var(--r-sm); background: var(--signal-soft); color: #12742f; font-family: var(--data); font-size: var(--fs-sm); font-weight: 600; }

/* ---------- Brand matrix ---------- */
.brandmatrix { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.brandgroup { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 22px 24px; }
.brandgroup h3 { font-size: 15.5px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.brandgroup__scope { font-size: 12px; color: var(--ink-3); font-style: italic; margin-bottom: 10px; }
.brandgroup__list { font-size: 13.5px; color: var(--ink-2); line-height: 1.7; margin: 0; }
.brandgroup--note { display: flex; flex-direction: column; justify-content: center; background: var(--paper-2); }
.brandmatrix__disclaimer { margin-top: 26px; padding: 16px 20px; border-radius: var(--r-sm); background: #fdf3e2; border: 1px solid #f0dcae; font-size: 13px; color: #6b4d10; line-height: 1.6; }

/* ---------- Maintenance plan ---------- */
.maintgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.maintcard { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 20px 18px; }
.maintcard__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--signal-soft); color: var(--signal); margin-bottom: 12px; }
.maintcard__icon svg { width: 22px; height: 22px; }
.maintcard h3 { font-size: 14.5px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.maintcard p { font-size: 12.5px; color: var(--ink-3); margin: 0; }
.maintplan__product { font-family: var(--data); font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--signal-text); text-transform: uppercase; margin-bottom: 6px; }
.maintplan__callout { margin-top: 30px; padding: 20px 24px; border-radius: var(--r); background: var(--paper-2); border: 1px solid var(--rule); display: flex; flex-wrap: wrap; align-items: center; gap: 20px; justify-content: space-between; }
.maintplan__callout p { margin: 0; font-size: 13.5px; color: var(--ink-2); max-width: 62ch; }

/* ---------- Process steps ---------- */
.processgrid { display: grid; gap: 34px; }
.processgrid__lead { max-width: 640px; margin: 0 auto; text-align: center; }
.processgrid__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.procstep { text-align: center; padding: 22px 14px; background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); }
.procstep__num { display: block; font-family: var(--data); font-size: 11px; font-weight: 700; color: var(--ink-3); letter-spacing: .06em; margin-bottom: 10px; }
.procstep__badge { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 50%; background: var(--signal-soft); color: var(--signal); }
.procstep__badge svg { width: 24px; height: 24px; stroke-width: 1.7; }
.procstep__label { display: block; font-family: var(--display); font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.procstep__text { display: block; font-size: 12px; color: var(--ink-3); }

/* ---------- Sticky mobile call bar ---------- */
.callbar { display: none; }
.callbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 56px; font-family: var(--data); font-size: var(--fs-sm); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.callbar__call { flex: 2; background: var(--ink); color: #fff; }
.callbar__call svg { width: 18px; height: 18px; stroke-width: 2.2; }
.callbar__alt { flex: 0.8; background: var(--signal-text); color: #fff; font-size: 11.5px; }

/* ---------- Lightshare relationship note ---------- */
.footer__lightshare { font-size: 12.5px; color: #a9b8d6; line-height: 1.7; max-width: 62ch; margin: 0 0 26px; }
.footer__lightshare a { color: var(--signal-on-dark); font-weight: 700; text-decoration: underline; }
.footer__lightshare a:hover { color: #fff; }

/* ---------- Senior-friendly callout grid (4 cards) ---------- */
.calloutgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.calloutcard { background: var(--paper); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.calloutcard__panel { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--ink), var(--brass-dark)); display: grid; place-items: center; color: rgba(255,255,255,.85); }
.calloutcard__panel svg { width: 44px; height: 44px; }
.calloutcard__body { padding: 22px 24px 26px; }
.calloutcard__body h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; letter-spacing: .01em; }
.calloutcard__body p { font-size: 13.5px; color: var(--ink-2); margin: 0; }

/* ---------- Scope boundary box ---------- */
.scopebox { margin-top: 30px; padding: 20px 24px; border-radius: var(--r); background: var(--signal-soft); border: 1px solid #f0d3b3; }
.scopebox p { margin: 0; font-size: 14px; color: #6b3a14; line-height: 1.6; }
.scopebox strong { color: #5a2f10; }

/* ---------- Appliance ecosystem ---------- */
.ecobox { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 24px 28px; margin-bottom: 30px; }
.ecobox h3 { font-size: 15px; font-weight: 800; letter-spacing: .02em; margin-bottom: 8px; color: var(--ink); }
.ecobox p { margin: 0; font-size: 13.5px; color: var(--ink-2); }
.ecogrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ecocard { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 22px 20px; display: flex; flex-direction: column; }
.ecocard__icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--signal-soft); color: var(--signal); margin-bottom: 14px; }
.ecocard__icon svg { width: 22px; height: 22px; }
.ecocard h3 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.ecocard p { font-size: 13px; color: var(--ink-2); margin-bottom: 14px; flex: 1; }
.ecocard__link { font-size: 12.5px; font-weight: 700; color: var(--signal-text); margin-top: auto; }
.ecocard__link:hover { text-decoration: underline; }
.ecocard__nolink { font-size: 12px; color: var(--ink-3); font-style: italic; margin-top: auto; }

/* ---------- Single callout box (licensed pro) ---------- */
.calloutbox { display: flex; gap: 22px; align-items: flex-start; background: var(--paper-2); border: 1px solid var(--rule); border-radius: var(--r); padding: 30px 32px; }
.calloutbox__icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: #fff; flex-shrink: 0; }
.calloutbox__icon svg { width: 26px; height: 26px; }
.calloutbox h2 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.calloutbox p { margin: 0; color: var(--ink-2); }

/* ---------- Detail block (walkthrough) ---------- */
.detail { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: start; }
.detail__lead h2 { font-size: clamp(22px, 2.6vw, 30px); }
.detail__cols { display: grid; gap: 20px; }
.detail__col { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 26px 28px; }
.detail__col h3 { font-family: var(--data); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--signal-text); margin-bottom: 14px; }
.detail__col ul { display: grid; gap: 10px; }
.detail__col li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); font-weight: 600; }
.detail__col li svg { width: 18px; height: 18px; color: var(--signal); flex-shrink: 0; }

/* ---------- Membership plan cards ---------- */
.plangrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plancard { position: relative; background: var(--paper); border: 1px solid var(--rule); border-radius: var(--r); padding: 30px 26px; display: flex; flex-direction: column; }
.plancard--featured { border-color: var(--signal); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.plancard__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--signal-text); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.plancard__head { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
.plancard__head h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.plancard__head p { font-size: 13px; color: var(--ink-3); margin: 0; }
.plancard__features { display: grid; gap: 11px; margin-bottom: 22px; flex: 1; }
.plancard__features li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--ink-2); }
.plancard__features li svg { width: 16px; height: 16px; color: var(--signal); flex-shrink: 0; margin-top: 2px; }
.plancard__price { font-family: var(--display); font-weight: 800; font-size: 16px; color: var(--ink); margin: 0 0 16px; }

.pricingprinciple { margin-top: 34px; padding: 18px 24px; border-radius: var(--r); background: var(--paper-2); border: 1px solid var(--rule); text-align: center; }
.pricingprinciple p { margin: 0; font-size: 13px; color: var(--ink-3); line-height: 1.6; }

/* ---------- Not automatically included ---------- */
.excludegrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 30px; max-width: 800px; margin: 0 auto; }
.excludegrid li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-2); font-weight: 600; }
.excludegrid li svg { width: 17px; height: 17px; color: var(--signal); flex-shrink: 0; }
.excludegrid__note { text-align: center; margin: 24px auto 0; max-width: 60ch; font-size: 13px; color: var(--ink-3); }

/* ---------- Member benefit pills ---------- */
.benefitpills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 36px; }
.benefitpills span { background: var(--signal-soft); color: var(--signal-text); font-size: 12.5px; font-weight: 700; padding: 9px 16px; border-radius: 999px; }

/* ---------- Final CTA band (dark navy) ---------- */
.finalcta--band { background: var(--ink); padding: 44px 0; }
.finalcta--band .finalcta__text h2 { color: #fff; font-size: 22px; }
.finalcta--band .finalcta__text p { color: #b9c5de; font-size: 13.5px; margin: 4px 0 0; }
.finalcta--band .finalcta__text svg { color: var(--signal-on-dark); }

/* ---------- Mission band ---------- */
.missionband { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 40px 0; }
.missionband__text { max-width: 860px; margin: 0 auto 14px; text-align: center; font-size: 15px; color: var(--ink-2); line-height: 1.7; }
.missionband__tagline { text-align: center; margin: 0; font-family: var(--display); font-weight: 800; letter-spacing: .04em; color: var(--ink); font-size: 15px; }

@media (max-width: 980px) {
  .calloutrow { grid-template-columns: 1fr; }
  .hero__inner { flex-direction: column; }
  .hero__lead { width: 100%; max-width: none; }
  .hero__panel { width: 100%; aspect-ratio: 16/9; }
  .downgrid { grid-template-columns: repeat(3, 1fr); }
  .servegrid { grid-template-columns: 1fr; }
  .indgrid { grid-template-columns: repeat(3, 1fr); }
  .truststrip__grid { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .header__toggle { display: block; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .formgrid { grid-template-columns: 1fr; }
  .brandmatrix { grid-template-columns: 1fr; }
  .maintgrid { grid-template-columns: repeat(2, 1fr); }
  .processgrid__steps { grid-template-columns: repeat(2, 1fr); }
  .calloutgrid { grid-template-columns: 1fr; }
  .ecogrid { grid-template-columns: repeat(2, 1fr); }
  .detail { grid-template-columns: 1fr; }
  .plangrid { grid-template-columns: 1fr; }
  .plancard--featured { transform: none; }
  .excludegrid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .fieldrow { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .downgrid { grid-template-columns: repeat(2, 1fr); }
  .indgrid { grid-template-columns: repeat(2, 1fr); }
  .truststrip__grid { grid-template-columns: 1fr; }
  .topbar__left { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .finalcta__inner { justify-content: center; text-align: center; }
  .maintgrid { grid-template-columns: 1fr; }
  .processgrid__steps { grid-template-columns: 1fr; }
  .ecogrid { grid-template-columns: 1fr; }
  body { padding-bottom: 56px; }
  .callbar { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; border-top: 1px solid var(--rule); }
}
