:root {
  --ink: #0e1b22;
  --ink-soft: #16262e;
  --paper: #f1f4f2;
  --surface: #ffffff;
  --mint: #3ed9b4;
  --mint-deep: #12b896;
  --steel: #5b6b72;
  --line: rgba(14, 27, 34, 0.12);
  --line-light: rgba(241, 244, 242, 0.16);
  --radius-sm: 4px;
  --radius-md: 10px;
  --display: "Bricolage Grotesque", sans-serif;
  --body-font: "IBM Plex Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --shell: 1220px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }

h1 { font-size: clamp(34px, 5.6vw, 58px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 20px; }
h2 em, h3 em { font-style: italic; color: var(--mint-deep); font-weight: 700; }
.fleet-copy h2 em { color: var(--mint); }

p { color: var(--steel); }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 22px; }

.section-lead { font-size: 17px; max-width: 62ch; margin-top: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-mint { background: var(--mint); color: var(--ink); }
.btn-mint:hover { background: var(--mint-deep); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--ink-soft); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--mint-deep); color: var(--mint-deep); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  padding: 13px 4px;
  position: relative;
}
.btn-text::after {
  content: "";
  position: absolute;
  left: 4px; bottom: 8px;
  width: calc(100% - 30px);
  height: 1.5px;
  background: var(--mint-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.btn-text:hover::after { transform: scaleX(1); }

/* ---------- Top bar ---------- */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.top-bar-in { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 20px; }
.brand-mark img { height: 35px; width: auto; }
.main-nav { display: none; }
.main-nav a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); position: relative; }
.top-bar-actions { display: flex; align-items: center; gap: 14px; }
.btn-desktop-only { display: none; }

.nav-toggle {
  width: 40px; height: 40px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 38%;
  overflow: hidden;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(14,27,34,0.95) 6%, rgba(14,27,34,0.82) 34%, rgba(14,27,34,0.42) 66%, rgba(14,27,34,0.12) 100%),
    linear-gradient(0deg, rgba(14,27,34,0.9) 0%, rgba(14,27,34,0.1) 46%);
}
.hero-in { position: relative; z-index: 1; padding: 150px 0 56px; }
.hero-copy { max-width: 640px; }
.hero h1 { color: var(--paper); }
.hero h1 em { font-style: italic; color: var(--mint); font-weight: 600; }
.hero-lead { font-size: 17.5px; max-width: 50ch; margin: 20px 0 34px; color: rgba(241, 244, 242, 0.78); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-bottom: 40px; }

.btn-ghost-light {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; color: var(--paper);
  background: transparent; border: 1.5px solid rgba(241, 244, 242, 0.4);
  padding: 12px 24px; border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost-light:hover { border-color: var(--mint); background: rgba(62, 217, 180, 0.1); }

.hero-readout {
  display: flex; gap: 0;
  background: rgba(241, 244, 242, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(241, 244, 242, 0.16);
  border-radius: var(--radius-md);
  padding: 22px 8px;
  max-width: 560px;
}
.hero-readout .hero-stat {
  flex: 1;
  display: flex; flex-direction: column; gap: 5px;
  padding: 0 22px;
  border-right: 1px solid rgba(241, 244, 242, 0.18);
  text-align: center;
}
.hero-readout .hero-stat:last-child { border-right: none; }
.hero-readout .num { font-family: var(--mono); font-weight: 600; font-size: 21px; color: var(--mint); }
.hero-readout .label { font-size: 11.5px; color: rgba(241, 244, 242, 0.72); }

/* ---------- Stat band ---------- */
.stat-band {
  background: var(--ink);
  background-image: repeating-linear-gradient(115deg, rgba(62, 217, 180, 0.05) 0px, rgba(62, 217, 180, 0.05) 1px, transparent 1px, transparent 64px);
  padding: 46px 0;
}
.stat-band-in { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.stat-block { display: flex; flex-direction: column; gap: 6px; }
.stat-block .num { font-family: var(--mono); font-weight: 600; color: var(--mint); font-size: clamp(28px, 4vw, 38px); }
.stat-block .label { font-size: 13px; color: rgba(241, 244, 242, 0.68); }

/* ---------- Services ---------- */
.services { padding: 84px 0 72px; }
.services-grid { display: grid; gap: 18px; margin-top: 42px; }
.svc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 22px 44px -26px rgba(14, 27, 34, 0.28); border-color: transparent; }
.svc i { font-size: 30px; color: var(--mint-deep); }
.svc-b i, .svc-d i { color: var(--ink); }
.svc h3 { margin-top: 2px; }
.svc p { font-size: 14.5px; flex-grow: 1; }
.svc-link { font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; }

/* ---------- About ---------- */
.about { padding: 72px 0; background: var(--surface); }
.about-in { display: grid; gap: 40px; }
.about-media img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; border-radius: 12px 12px 56px 12px; }
.check-list { display: flex; flex-direction: column; gap: 16px; margin: 26px 0 28px; }
.check-list li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-soft); align-items: flex-start; }
.check-list i { color: var(--mint-deep); font-size: 19px; flex-shrink: 0; margin-top: 2px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-row span {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em;
  padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--steel);
}

/* ---------- Process ---------- */
.process { padding: 78px 0; }
.process-grid { display: grid; gap: 30px; margin-top: 44px; position: relative; }
.step { position: relative; padding-top: 4px; }
.step-num { font-family: var(--mono); font-size: 14px; color: var(--mint-deep); font-weight: 600; }
.step h3 { margin: 10px 0 8px; font-size: 19px; }
.step p { font-size: 14.5px; }

/* ---------- Fleet ---------- */
.fleet {
  background: linear-gradient(128deg, var(--ink) 0%, var(--ink) 55%, #0c3931 100%);
  padding: 76px 0;
}
.fleet-in { display: grid; gap: 40px; }
.fleet-copy h2 { color: var(--paper); margin-bottom: 16px; }
.fleet-copy p { color: rgba(241, 244, 242, 0.72); font-size: 16px; margin-bottom: 30px; max-width: 52ch; }
.fleet-ticket {
  background: rgba(241, 244, 242, 0.04);
  border: 1px dashed rgba(241, 244, 242, 0.28);
  border-radius: var(--radius-md);
  padding: 30px 26px;
}
.ticket-head { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mint); margin-bottom: 18px; }
.fleet-ticket ul { display: flex; flex-direction: column; gap: 16px; }
.fleet-ticket li { display: flex; gap: 12px; align-items: flex-start; color: rgba(241, 244, 242, 0.88); font-size: 14.5px; }
.fleet-ticket i { color: var(--mint); font-size: 19px; flex-shrink: 0; margin-top: 1px; }

/* ---------- Cases ---------- */
.cases { padding: 82px 0; background: var(--surface); }
.cases-grid { display: grid; gap: 22px; margin-top: 40px; }
.case { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.case img { height: 190px; object-fit: cover; width: 100%; }
.case dl { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.case dl > div { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); padding-bottom: 9px; }
.case dl > div:last-child { border-bottom: none; padding-bottom: 0; }
.case dt { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--steel); flex-shrink: 0; }
.case dd { font-size: 13.5px; color: var(--ink); text-align: right; }

/* ---------- Contact CTA ---------- */
.contact-cta { padding: 84px 0 90px; }
.contact-cta-in { display: grid; gap: 40px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 32px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.contact-list i { color: var(--mint-deep); font-size: 19px; }
.no-link { cursor: default; user-select: text; }

.contact-locate {
  position: relative;
  border-radius: var(--radius-md);
  background: var(--ink);
  min-height: 260px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  overflow: hidden;
}
.locate-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(241, 244, 242, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(241, 244, 242, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
}
.locate-pin { position: relative; width: 52px; height: 52px; border-radius: 50%; background: var(--mint); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 10px rgba(62, 217, 180, 0.14); }
.locate-pin i { font-size: 26px; color: var(--ink); }
.contact-locate p { position: relative; font-family: var(--mono); font-size: 13px; color: var(--paper); letter-spacing: 0.03em; }

/* ---------- Footer ---------- */
.site-foot { background: var(--ink); color: rgba(241, 244, 242, 0.7); padding-top: 68px; }
.foot-in { display: grid; gap: 40px; padding-bottom: 50px; }
.foot-in { grid-template-columns: 1fr; }
.foot-brand img { height: 32px; margin-bottom: 16px; }
.foot-brand p { font-size: 14px; max-width: 34ch; color: rgba(241, 244, 242, 0.6); }
.foot-col h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mint); margin-bottom: 16px; font-weight: 500; }
.foot-col ul { display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: 14px; color: rgba(241, 244, 242, 0.68); }
.foot-col a:hover { color: var(--mint); }
.foot-bottom { border-top: 1px solid var(--line-light); padding: 22px 0; }
.foot-bottom-in { display: flex; flex-direction: column; gap: 8px; font-size: 12.5px; color: rgba(241, 244, 242, 0.5); }

/* ---------- Cookie bar ---------- */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: var(--surface); border-top: 1px solid var(--line); box-shadow: 0 -14px 40px -20px rgba(14, 27, 34, 0.3); }
.cookie-bar-in { max-width: var(--shell); margin: 0 auto; padding: 20px 22px; display: flex; flex-direction: column; gap: 16px; }
.cookie-bar-in p { font-size: 13.5px; color: var(--ink-soft); }
.cookie-bar-in a { color: var(--mint-deep); font-weight: 600; }
.cookie-bar-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.cookie-modal { position: fixed; inset: 0; z-index: 210; background: rgba(14, 27, 34, 0.55); display: flex; align-items: flex-end; justify-content: center; padding: 20px; }
.cookie-modal-card { background: var(--surface); border-radius: var(--radius-md); padding: 32px 28px; max-width: 480px; width: 100%; max-height: 86vh; overflow-y: auto; }
.cookie-modal-card h3 { margin-bottom: 10px; }
.cookie-modal-card > p { font-size: 13.5px; margin-bottom: 22px; }
.cookie-option { padding: 16px 0; border-top: 1px solid var(--line); }
.cookie-option-head { display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: 14.5px; margin-bottom: 6px; }
.cookie-option p { font-size: 13px; }
.cookie-modal-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

.switch { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; background: var(--line); border-radius: 999px; transition: background 0.2s ease; cursor: pointer; }
.switch span::before { content: ""; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: var(--surface); border-radius: 50%; transition: transform 0.2s ease; }
.switch input:checked + span { background: var(--mint-deep); }
.switch input:checked + span::before { transform: translateX(18px); }
.switch-locked span { opacity: 0.6; cursor: not-allowed; }

.cookie-bar[hidden], .cookie-modal[hidden] { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 700px) {
  .stat-band-in { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: 1.25fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-in { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot-bottom-in { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-bar-in { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-bar-in p { flex: 1; }
}

@media (min-width: 1040px) {
  .main-nav { display: flex; align-items: center; gap: 34px; }
  .btn-desktop-only { display: inline-flex; }
  .nav-toggle { display: none; }

  .about-in { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
  .fleet-in { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-cta-in { grid-template-columns: 1fr 0.8fr; align-items: center; }
  .foot-in { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

@media (max-width: 1039px) {
  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 74px; left: 0; right: 0; bottom: 0;
    background: var(--paper);
    padding: 10px 22px;
    gap: 0;
    z-index: 95;
    overflow-y: auto;
  }
  .main-nav.is-open a { padding: 16px 4px; border-bottom: 1px solid var(--line); }
}
.crumb { font-family: var(--mono); font-size: 12px; color: var(--steel); margin-bottom: 18px; }
.crumb a { color: var(--steel); }
.crumb a:hover { color: var(--mint-deep); }
.crumb-light { color: rgba(241, 244, 242, 0.68); }
.crumb-light a { color: rgba(241, 244, 242, 0.68); }
.crumb-light a:hover { color: var(--mint); }

.hero-lead-alt { font-size: 17px; max-width: 56ch; margin: 18px 0 30px; color: var(--steel); }
.hero-lead-light { color: rgba(241, 244, 242, 0.78); }

h1 em { font-style: italic; color: var(--mint-deep); font-weight: 700; }
.signal-hero h1 em, .banner-hero h1 em, .split-panel-hero h1 em { color: var(--mint); }

.main-nav a.active { color: var(--ink); }
.main-nav a.active::after { width: 100%; }
.main-nav.is-open a.active { color: var(--mint-deep); }

.page-hero-split { padding: 150px 0 76px; background: var(--surface); }
.page-hero-split-in { display: grid; gap: 44px; }
.hero-split-copy { max-width: 520px; }
.hero-split-media { position: relative; }
.hero-split-media img { width: 100%; border-radius: 14px 14px 14px 56px; box-shadow: 0 30px 60px -30px rgba(14, 27, 34, 0.35); aspect-ratio: 4 / 4.4; object-fit: cover; }
.price-flag { position: absolute; left: -14px; bottom: -18px; background: var(--ink); color: var(--paper); padding: 14px 20px; border-radius: var(--radius-sm); display: flex; flex-direction: column; gap: 2px; box-shadow: 0 20px 40px -18px rgba(14, 27, 34, 0.5); }
.price-flag span { font-size: 11px; color: rgba(241, 244, 242, 0.6); }
.price-flag strong { font-family: var(--mono); font-size: 22px; color: var(--mint); }

.detail-layout { padding: 78px 0; }
.detail-layout-in { display: grid; gap: 40px; }
.detail-body p { margin-bottom: 16px; font-size: 15.5px; color: var(--steel); }
.detail-aside { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px 26px; align-self: start; }
.detail-aside h4 { font-size: 21px; margin-bottom: 8px; }
.detail-aside > p { font-size: 13.5px; margin-bottom: 20px; }
.price-tag-alt { font-family: var(--mono); font-size: 14px; color: var(--steel); margin-bottom: 22px; }
.price-tag-alt strong { display: block; font-size: 30px; color: var(--ink); font-family: var(--display); }
.btn-block { width: 100%; justify-content: center; }
.mini-features-alt { display: grid; gap: 14px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.mini-features-alt div { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-soft); }
.mini-features-alt i { color: var(--mint-deep); font-size: 18px; flex-shrink: 0; }

.symptom-section { padding: 0 0 84px; background: var(--surface); }
.symptom-grid { display: grid; gap: 18px; margin-top: 40px; }
.symptom-card { background: var(--paper); border-radius: var(--radius-md); padding: 26px; }
.sym-tag { display: inline-block; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.sym-tag-b { color: var(--mint-deep); margin-top: 14px; }
.sym-title { font-family: var(--display); font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.symptom-card > p:last-child { font-size: 13.5px; color: var(--steel); }

.cta-band { background: var(--ink); padding: 68px 0; }
.cta-band-in { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-band h2 { color: var(--paper); margin-bottom: 14px; }
.cta-band h2 em { color: var(--mint); }
.cta-band p { color: rgba(241, 244, 242, 0.7); margin-bottom: 28px; }

.signal-hero { background: var(--ink); padding: 150px 0 72px; overflow: hidden; }
.signal-hero-in { display: grid; gap: 40px; align-items: center; }
.signal-copy { max-width: 520px; }
.signal-hero h1 { color: var(--paper); }
.signal-visual { position: relative; background: rgba(241, 244, 242, 0.04); border: 1px solid rgba(241, 244, 242, 0.12); border-radius: var(--radius-md); padding: 28px; }
.signal-wave { width: 100%; height: auto; display: block; }
.signal-readout { margin-top: 18px; display: flex; align-items: center; gap: 14px; }
.signal-readout span { font-family: var(--mono); font-size: 15px; font-weight: 600; color: var(--mint); background: rgba(62, 217, 180, 0.12); padding: 4px 10px; border-radius: 4px; }
.signal-readout p { font-size: 13px; color: rgba(241, 244, 242, 0.7); }

.electro-split { padding: 78px 0; background: var(--surface); }
.electro-split-in { display: grid; gap: 36px; align-items: center; }
.electro-media img { width: 100%; border-radius: var(--radius-md); object-fit: cover; aspect-ratio: 4 / 3.2; }
.electro-copy h2 { margin-bottom: 24px; }
.micro-steps { display: flex; flex-direction: column; gap: 20px; }
.micro-steps > div { display: flex; gap: 16px; }
.micro-steps span { font-family: var(--mono); font-weight: 600; color: var(--mint-deep); background: var(--paper); border: 1px solid var(--line); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 13px; }
.micro-steps p { font-size: 14.5px; color: var(--ink-soft); }

.banner-hero { position: relative; min-height: 56vh; display: flex; align-items: flex-end; background-size: cover; background-position: center; }
.banner-hero-scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(14, 27, 34, 0.92) 8%, rgba(14, 27, 34, 0.4) 68%, rgba(14, 27, 34, 0.14) 100%); }
.banner-hero-in { position: relative; z-index: 1; padding: 58px 0; max-width: 620px; }
.banner-hero h1 { color: var(--paper); }

.selfcheck-section { padding: 78px 0; background: var(--surface); }
.selfcheck-grid { display: grid; gap: 18px; margin-top: 40px; }
.selfcheck-tile { background: var(--paper); border-radius: var(--radius-md); padding: 32px 24px; text-align: center; }
.selfcheck-tile i { font-size: 30px; color: var(--mint-deep); margin-bottom: 14px; display: inline-block; }
.selfcheck-tile p { font-size: 14px; color: var(--ink-soft); }

.split-panel-hero { display: grid; grid-template-columns: 1fr; }
.split-panel-copy { background: var(--ink); display: flex; align-items: center; padding: 150px 0 64px; }
.split-panel-inner { max-width: 480px; margin: 0 auto; padding: 0 22px; }
.split-panel-hero h1 { color: var(--paper); }
.split-panel-media { min-height: 320px; }
.split-panel-media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px; }

.fleet-detail { background: var(--ink); padding: 78px 0; }
.fleet-detail-in { display: grid; gap: 40px; }
.fleet-detail-copy h2 { color: var(--paper); margin-bottom: 18px; }
.fleet-detail-copy h2 em { color: var(--mint); }
.fleet-detail-copy p { color: rgba(241, 244, 242, 0.72); margin-bottom: 16px; font-size: 15.5px; }

.fleet-types { padding: 78px 0 92px; }
.fleet-types-in { text-align: center; }
.fleet-types-in h2 { margin-bottom: 28px; }
.tag-row-center { justify-content: center; margin-bottom: 32px; }

.type-hero { padding: 160px 0 60px; background: var(--surface); }
.type-hero h1 { max-width: 16ch; }
.type-hero .hero-lead-alt { margin-top: 22px; }

.team-banner img { width: 100%; height: 320px; object-fit: cover; display: block; }

.team-section { padding: 78px 0; }
.team-grid { display: grid; gap: 20px; margin-top: 40px; }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px 24px; position: relative; }
.team-exp { position: absolute; top: 24px; right: 24px; font-family: var(--mono); font-size: 11px; color: var(--mint-deep); background: var(--paper); padding: 4px 10px; border-radius: 999px; }
.team-card h3 { font-size: 21px; margin: 6px 0 4px; padding-right: 70px; }
.team-role { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--steel); margin-bottom: 12px; }
.team-card > p:last-child { font-size: 14px; color: var(--ink-soft); }

.quote-section { padding: 0 0 78px; background: var(--surface); }
.quote-section-in { display: grid; gap: 36px; align-items: center; }
.quote-media img { width: 100%; border-radius: var(--radius-md); object-fit: cover; aspect-ratio: 4 / 3.4; }
.quote-copy p { font-family: var(--display); font-size: clamp(19px, 2.4vw, 25px); font-weight: 500; font-style: italic; color: var(--ink); line-height: 1.4; margin-bottom: 18px; }
.quote-copy cite { font-family: var(--mono); font-size: 12.5px; color: var(--mint-deep); font-style: normal; }

.faq-hero { padding: 150px 0 60px; background: var(--surface); }
.faq-hero .hero-lead-alt { margin-bottom: 32px; }
.faq-search { display: flex; align-items: center; gap: 12px; max-width: 460px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 18px; }
.faq-search i { color: var(--steel); font-size: 18px; }
.faq-search input { flex: 1; border: none; background: none; font-family: var(--body-font); font-size: 14.5px; color: var(--ink); outline: none; }
.faq-search input::placeholder { color: var(--steel); }

.faq-wrap { padding: 20px 0 78px; }
.faq-wrap-in { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 44px; }
.faq-group h2 { font-size: 22px; margin-bottom: 18px; }
.faq-item { border-top: 1px solid var(--line); padding: 18px 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { font-weight: 600; font-size: 15.5px; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--mono); font-size: 20px; color: var(--mint-deep); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 14.5px; color: var(--steel); margin-top: 14px; }

@media (min-width: 700px) {
  .symptom-grid { grid-template-columns: repeat(2, 1fr); }
  .selfcheck-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1040px) {
  .page-hero-split-in { grid-template-columns: 1fr 0.85fr; align-items: center; }
  .detail-layout-in { grid-template-columns: 1.4fr 0.6fr; align-items: start; gap: 56px; }
  .symptom-grid { grid-template-columns: repeat(4, 1fr); }
  .signal-hero-in { grid-template-columns: 1.05fr 0.95fr; }
  .electro-split-in { grid-template-columns: 0.9fr 1.1fr; }
  .selfcheck-grid { grid-template-columns: repeat(4, 1fr); }
  .split-panel-hero { grid-template-columns: 1fr 1fr; min-height: 78vh; }
  .split-panel-copy { padding: 0; }
  .fleet-detail-in { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-section-in { grid-template-columns: 0.8fr 1.2fr; }
}
.contact-hero { padding: 150px 0 60px; background: var(--surface); }
.contact-hero-in { display: grid; gap: 40px; }
.contact-hero-copy { max-width: 480px; }
.contact-hero-number { background: var(--ink); border-radius: var(--radius-md); padding: 32px 28px; display: flex; flex-direction: column; gap: 8px; }
.chn-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(241, 244, 242, 0.6); }
.chn-value { font-family: var(--mono); font-size: clamp(26px, 4vw, 34px); font-weight: 600; color: var(--mint); }
.chn-sub { font-size: 13px; color: rgba(241, 244, 242, 0.68); }

.contact-main { padding: 0 0 92px; }
.contact-main-in { display: grid; gap: 40px; }
.form-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 34px 30px; }
.form-panel h2 { margin-bottom: 6px; }
.form-panel-lead { font-size: 13.5px; color: var(--steel); margin-bottom: 26px; }
.form-row { display: grid; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.form-input, .form-textarea { width: 100%; font-family: var(--body-font); font-size: 14.5px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); color: var(--ink); transition: border-color 0.2s ease; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--mint-deep); background: var(--surface); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-input.is-invalid, .form-textarea.is-invalid { border-color: #e0574c; }
.form-error { display: none; font-size: 12.5px; color: #e0574c; margin-top: 6px; }
.form-error.is-visible { display: block; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }

.thanks-modal { position: fixed; inset: 0; z-index: 220; background: rgba(14, 27, 34, 0.6); align-items: center; justify-content: center; padding: 20px; display: flex; }
.thanks-modal[hidden] { display: none; }
.thanks-modal-card { background: var(--surface); border-radius: var(--radius-md); padding: 40px 34px; max-width: 400px; width: 100%; text-align: center; }
.thanks-icon { width: 58px; height: 58px; border-radius: 50%; background: rgba(62, 217, 180, 0.14); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.thanks-icon i { font-size: 28px; color: var(--mint-deep); }
.thanks-modal-card h3 { margin-bottom: 10px; }
.thanks-modal-card p { font-size: 14px; margin-bottom: 26px; }

.legal-hero { padding: 150px 0 50px; background: var(--surface); }
.legal-wrap { padding: 0 0 92px; }
.legal-wrap-in { max-width: 760px; margin: 0 auto; }
.legal-wrap-in h2 { font-size: 22px; margin: 40px 0 14px; }
.legal-wrap-in h2:first-child { margin-top: 0; }
.legal-wrap-in p { font-size: 15px; color: var(--steel); }

@media (min-width: 700px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1040px) {
  .contact-hero-in { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
  .contact-main-in { grid-template-columns: 1.3fr 0.7fr; align-items: start; }
}