/* ============================================================
   AN Wholesale — Site Stylesheet
   Palette: Navy #10243E | Teal #00A6A6 | Amber #F4A62A
            Background #F5F7F9 | Text #26313D
   ============================================================ */

:root {
  --navy: #10243E;
  --navy-2: #16304F;
  --navy-3: #0B1A2E;
  --teal: #00A6A6;
  --teal-dark: #008C8C;
  --teal-soft: #E0F4F4;
  --amber: #F4A62A;
  --amber-soft: #FDF1DC;
  --bg: #F5F7F9;
  --white: #FFFFFF;
  --text: #26313D;
  --text-soft: #55636F;
  --line: #DDE4EA;
  --ok: #2FA36B;
  --warn: #F4A62A;
  --crit: #D94B4B;
  --idle: #8A96A3;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 2px 6px rgba(16, 36, 62, 0.06), 0 10px 28px rgba(16, 36, 62, 0.08);
  --shadow-sm: 0 1px 3px rgba(16, 36, 62, 0.08);
  --font-head: "Manrope", "Inter", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.3rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.02rem; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

ul.plain { list-style: none; }

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

section { padding: 84px 0; }
section.tight { padding: 56px 0; }

.section-head {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.13rem;
  color: var(--text-soft);
  margin-top: 14px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none !important;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); }

.btn-ghost { border-color: rgba(255, 255, 255, 0.45); color: #fff; background: transparent; }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-amber { background: var(--amber); color: var(--navy-3); }
.btn-amber:hover { filter: brightness(1.06); }

/* ---------- Header ---------- */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 2px 14px rgba(11, 26, 46, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
.brand-mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.22rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.brand-name span { color: var(--teal); }
.brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #93A3B5;
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 0.94rem;
  font-weight: 600;
  color: #C6D2DE;
  padding: 9px 14px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.main-nav a.active { color: #fff; background: rgba(0, 166, 166, 0.22); }
.main-nav a.nav-cta {
  background: var(--teal);
  color: #fff;
  margin-left: 10px;
}
.main-nav a.nav-cta:hover { background: var(--teal-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(155deg, var(--navy-3) 0%, var(--navy) 55%, #12345A 100%);
  color: #DCE5EE;
  padding: 96px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(0, 166, 166, 0.14), transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(244, 166, 42, 0.07), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .accent { color: var(--teal); }

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(0, 166, 166, 0.4);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 22px;
  background: rgba(0, 166, 166, 0.08);
}
.hero-tagline .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  animation: pulse 2.2s infinite;
}

.hero p.hero-sub {
  font-size: 1.14rem;
  line-height: 1.7;
  color: #B9C7D4;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-points {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-points div {
  font-size: 0.86rem;
  color: #9FB0C0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-points svg { width: 16px; height: 16px; flex: 0 0 auto; }

/* ---------- Hero diagram ---------- */

.hero-diagram {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 18px;
  backdrop-filter: blur(4px);
}

.flow-line {
  stroke: var(--teal);
  stroke-width: 1.6;
  fill: none;
  stroke-dasharray: 6 7;
  animation: dashflow 1.6s linear infinite;
  opacity: 0.85;
}
.flow-line.slow { animation-duration: 2.4s; opacity: 0.55; }

@keyframes dashflow {
  to { stroke-dashoffset: -13; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.node-pulse { animation: pulse 2.4s ease-in-out infinite; }

/* ---------- Cards ---------- */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card h3 { margin: 16px 0 10px; }
.card p { color: var(--text-soft); font-size: 0.96rem; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-soft);
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon.amber { background: var(--amber-soft); }
.card-icon.navy { background: #E4EAF1; }

.problem-card { border-top: 3px solid var(--crit); }
.problem-card .card-icon { background: #FBEAEA; }

/* ---------- Solution feature list ---------- */

.feature-list { list-style: none; margin-top: 14px; }
.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 9px;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--teal-soft) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23008C8C" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/9px no-repeat;
}

.card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: 18px;
}

/* ---------- Status badges ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 13px;
}
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; }
.badge-dev { background: var(--teal-soft); color: var(--teal-dark); }
.badge-dev::before { background: var(--teal); }
.badge-planned { background: #EBEFF3; color: #5C6B7A; }
.badge-planned::before { background: var(--idle); }
.badge-custom { background: var(--amber-soft); color: #A66A0D; }
.badge-custom::before { background: var(--amber); }
.badge-ok { background: #E3F3EB; color: #1F7A4D; }
.badge-ok::before { background: var(--ok); }

/* ---------- Integration chips ---------- */

.chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.chip svg { width: 22px; height: 22px; flex: 0 0 auto; }

/* ---------- Steps (How it works) ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  background: var(--teal);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: 0.93rem; color: var(--text-soft); }

/* ---------- Dashboard mock ---------- */

.dash-wrap {
  background: var(--navy-3);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 24px 60px rgba(11, 26, 46, 0.35);
  border: 1px solid #1E3A5C;
}
.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.dash-title {
  font-family: var(--font-head);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-title .live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ok);
  animation: pulse 2s infinite;
}
.dash-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.dash-filters span {
  font-size: 0.74rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: #9FB0C0;
  border: 1px solid #2A4568;
  border-radius: 999px;
  padding: 4px 12px;
}
.dash-filters span.on { background: rgba(0, 166, 166, 0.18); color: var(--teal); border-color: rgba(0, 166, 166, 0.45); }

.dash-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
.dash-tile {
  background: var(--navy-2);
  border: 1px solid #23405F;
  border-radius: 10px;
  padding: 16px;
}
.dash-tile .k {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8A9BAD;
  font-family: var(--font-head);
  font-weight: 600;
  margin-bottom: 6px;
}
.dash-tile .v {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.dash-tile .v.warn { color: var(--amber); }
.dash-tile .v.crit { color: #E9807F; }
.dash-tile .v.ok { color: #5BC894; }
.dash-tile .t {
  font-size: 0.74rem;
  color: #7C8FA3;
  margin-top: 6px;
}

.dash-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; }
.dash-panel {
  background: var(--navy-2);
  border: 1px solid #23405F;
  border-radius: 10px;
  padding: 16px;
}
.dash-panel h5 {
  font-family: var(--font-head);
  color: #C8D5E2;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid #21395655;
  font-size: 0.83rem;
  color: #AEBDCC;
}
.dash-row:first-of-type { border-top: none; }
.dash-row .id { font-family: "IBM Plex Mono", Consolas, monospace; color: #7FD4D4; font-size: 0.78rem; }
.status-pill {
  font-size: 0.68rem;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}
.status-pill.ok { background: rgba(47, 163, 107, 0.16); color: #5BC894; }
.status-pill.warn { background: rgba(244, 166, 42, 0.14); color: var(--amber); }
.status-pill.crit { background: rgba(217, 75, 75, 0.16); color: #E9807F; }
.status-pill.idle { background: rgba(138, 150, 163, 0.16); color: #A9B5C1; }

.bar-row { margin-bottom: 12px; }
.bar-row .bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #AEBDCC;
  margin-bottom: 5px;
}
.bar-track { height: 7px; background: #1B334F; border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 4px; background: var(--teal); }
.bar-fill.warn { background: var(--amber); }
.bar-fill.crit { background: var(--crit); }

.dash-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 18px;
  font-style: italic;
}

/* ---------- Split sections ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }

/* ---------- Benefits ---------- */

.benefit-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
.benefit-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px 16px 52px;
  position: relative;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 0.97rem;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center/13px no-repeat;
}

/* ---------- Timeline (development approach) ---------- */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.timeline-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.timeline-item .tl-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: 0.88rem; color: var(--text-soft); }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(140deg, var(--navy-3), var(--navy) 60%, #143255);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  color: #C9D6E2;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 0%, rgba(0, 166, 166, 0.16), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { max-width: 640px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-3);
  color: #93A3B5;
  padding: 64px 0 0;
  margin-top: 84px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 44px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: #93A3B5; }
.footer-grid a:hover { color: var(--teal); text-decoration: none; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; }
.footer-legal {
  border-top: 1px solid #1B3350;
  padding: 22px 0;
  font-size: 0.8rem;
  color: #5F7188;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Page hero (subpages) ---------- */

.page-hero {
  background: linear-gradient(150deg, var(--navy-3), var(--navy) 70%, #143255);
  color: #B9C7D4;
  padding: 76px 0 68px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 70% at 90% 10%, rgba(0, 166, 166, 0.13), transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; margin: 14px 0 16px; }
.page-hero p { max-width: 680px; font-size: 1.1rem; }
.page-hero .eyebrow { background: rgba(0, 166, 166, 0.15); color: var(--teal); }

/* ---------- Solution detail blocks ---------- */

.sol-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 34px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 100px;
}
.sol-block .sol-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.sol-block h2 { font-size: 1.7rem; }
.sol-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; margin-top: 22px; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
.form-field label .req { color: var(--crit); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 166, 166, 0.14);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.83rem; color: var(--text-soft); margin-top: 16px; }

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.93rem;
  background: var(--teal-soft);
  border: 1px solid #B5E4E4;
  color: #056565;
}
.form-status.show { display: block; }

/* ---------- Info / legal ---------- */

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-table th, .info-table td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  vertical-align: top;
}
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table th {
  font-family: var(--font-head);
  color: var(--navy);
  width: 240px;
  background: #FAFBFC;
  font-weight: 700;
}

.legal-section { max-width: 820px; margin: 0 auto 56px; scroll-margin-top: 100px; }
.legal-section h2 { margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--teal-soft); }
.legal-section h3 { margin: 26px 0 10px; }
.legal-section ul { margin: 0 0 1em 22px; }
.legal-section li { margin-bottom: 6px; color: var(--text-soft); }
.legal-section p { color: var(--text-soft); }

/* ---------- FAQ ---------- */

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  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-size: 1.4rem;
  color: var(--teal);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .flow-line, .node-pulse, .hero-tagline .dot, .dash-title .live { animation: none !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .grid-4, .steps, .timeline, .dash-tiles, .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .dash-body { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  section { padding: 60px 0; }
  .grid-2, .grid-3, .benefit-list, .form-grid, .sol-cols { grid-template-columns: 1fr; }
  .sol-block { padding: 30px 24px; }
  .form-card { padding: 28px 22px; }
  .cta-band { padding: 46px 26px; }

  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--navy-3);
    flex-direction: column;
    align-items: stretch;
    padding: 14px 5%;
    gap: 4px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 14px; }
  .main-nav a.nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
}

@media (max-width: 460px) {
  .grid-4, .steps, .timeline, .dash-tiles, .chip-grid, .footer-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
}
