/* ============================================================
   Pluxflow Landing — styles
   Palette: #111827 ink · #0F1B2D navy · #7ED3FC sky · #38BDF8 blue
   Fonts: Schibsted Grotesk (display) · Hanken Grotesk (body)
   ============================================================ */

:root {
  --ink: #111827;
  --navy: #0F1B2D;
  --sky: #7ED3FC;
  --blue: #38BDF8;
  --text: #111827;
  --muted: #6B7280;
  --muted-light: #9CA3AF;
  --slate: #374151;
  --line: #EEF1F5;
  --line-strong: #E6EBF1;
  --surface: #F7F9FC;
  --pill-blue: #0B6E99;

  --font-display: 'Schibsted Grotesk', sans-serif;
  --font-body: 'Hanken Grotesk', -apple-system, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ---------- Buttons ---------- */
.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 10px;
  transition: transform .12s ease, opacity .12s ease;
}
.btn:hover { opacity: .92; transform: translateY(-1px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--sky { background: var(--sky); color: var(--navy); font-weight: 700; }
.btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid #D9E1EA; }
.btn--lg { font-size: 16px; padding: 15px 26px; border-radius: 12px; }
.btn--ghost.btn--lg { padding: 15px 24px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: inherit;
}
.brand__mark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}
.brand__bar { display: block; width: 5px; border-radius: 2px; }
.brand__bar--1 { height: 10px; background: var(--sky); }
.brand__bar--2 { height: 15px; background: var(--blue); }
.brand__bar--3 { height: 20px; background: var(--ink); }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
}
.nav__links a { color: var(--slate); text-decoration: none; }
.nav__links a:hover { color: var(--ink); }
.nav__actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex;
  background: #F1F5F9;
  border-radius: 8px;
  padding: 3px;
}
.lang-toggle__btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 11px;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
}
.lang-toggle__btn.is-active { background: var(--ink); color: #fff; }

/* mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 20px 26px calc(28px + env(safe-area-inset-bottom));
  background:
    radial-gradient(130% 80% at 85% -10%, rgba(126, 211, 252, .20), transparent 55%),
    radial-gradient(120% 70% at -10% 110%, rgba(56, 189, 248, .14), transparent 55%),
    var(--navy);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.nav__overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__overlay[hidden] { display: none; }
.nav__overlay.is-open[hidden] { display: flex; }
body.nav-open { overflow: hidden; }

.nav__overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__overlay .brand__name { color: #fff; }
.nav__overlay-close {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.nav__overlay-close:hover { background: rgba(255, 255, 255, .16); }
.nav__overlay-close:active { transform: scale(.94); }

.nav__overlay-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  counter-reset: navitem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin: 22px 0;
  padding: 18px 0;
}
.nav__overlay-link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 11vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s ease, color .15s ease;
}
.nav__overlay-link::before {
  counter-increment: navitem;
  content: "0" counter(navitem);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sky);
  opacity: .65;
}
.nav__overlay-link:hover,
.nav__overlay-link.is-active { color: var(--sky); }
.nav__overlay.is-open .nav__overlay-link { opacity: 1; transform: translateY(0); }
.nav__overlay.is-open .nav__overlay-link:nth-child(1) { transition-delay: .10s; }
.nav__overlay.is-open .nav__overlay-link:nth-child(2) { transition-delay: .16s; }
.nav__overlay.is-open .nav__overlay-link:nth-child(3) { transition-delay: .22s; }

.nav__overlay-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.lang-toggle--overlay {
  align-self: flex-start;
  background: rgba(255, 255, 255, .1);
}
.lang-toggle--overlay .lang-toggle__btn { color: #AFC2D6; }
.lang-toggle--overlay .lang-toggle__btn.is-active {
  background: var(--sky);
  color: var(--navy);
}
.nav__overlay-actions .btn { width: 100%; }

/* section padding utilities */
.section--tight-top { padding: 24px 40px 40px; }
.section--tight-bottom { padding: 20px 40px 60px; }

/* chart horizontal scroll */
.chart__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.chart__plot,
.fin-chart__plot {
  min-width: 480px;
}
.fin-compare__plot { min-width: 360px; }

/* ---------- Pills / eyebrows ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
}
.pill--sky {
  background: #EAF7FE;
  border: 1px solid #C9ECFB;
  color: var(--pill-blue);
  margin-bottom: 22px;
}
.pill--ghost {
  background: rgba(126, 211, 252, .12);
  border: 1px solid rgba(126, 211, 252, .3);
  color: var(--sky);
  margin-bottom: 20px;
}
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pill-blue);
  margin-bottom: 12px;
}

/* ---------- Section scaffolding ---------- */
.section { padding-top: 80px; padding-bottom: 80px; }
.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section__head--wide { max-width: 680px; margin-bottom: 40px; }
.section__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.section__sub { font-size: 16px; color: var(--muted); margin: 0; }

.band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, #F7FAFD 0%, #FFFFFF 100%); }
.hero__inner {
  padding-top: 72px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}
.hero__lead {
  font-size: 18px;
  line-height: 1.55;
  color: #4B5563;
  margin: 0 0 30px;
  max-width: 480px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Card mockup (shared) ---------- */
.card-mockup {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 60px rgba(17, 24, 39, .10);
}

/* Hero KPI mockup */
.kpi-row { display: flex; gap: 12px; margin-bottom: 14px; }
.kpi {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.kpi__label { font-size: 11px; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.kpi__value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.status-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}
.status-panel__title { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.status-panel__sub { font-size: 12px; color: var(--muted-light); margin-bottom: 16px; }
.status-list { display: flex; flex-direction: column; gap: 11px; }
.status-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 12px;
}
.status-row__label {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  white-space: nowrap;
}
.bar { display: block; height: 18px; border-radius: 5px; }
.bar--ink { background: var(--ink); }
.bar--navy { background: #1F2A3D; }
.bar--blue { background: var(--blue); }
.bar--sky { background: var(--sky); }
.bar--pale { background: #BEE7FB; }

/* ---------- Problem strip ---------- */
.strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip__inner {
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  flex-wrap: wrap;
}
.strip__muted { font-size: 15px; color: var(--muted); }
.strip__strong { font-size: 15px; font-weight: 700; color: var(--ink); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.step--dark { background: var(--navy); border-color: var(--navy); color: #fff; }
.step--dark .step__text { color: #AFC2D6; }
.step__num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 16px;
}
.step__num--sky { background: var(--sky); color: var(--navy); }
.step__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
}
.step__text { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ---------- Tiered emails ---------- */
.tiers {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}
.tiers__title { font-size: 13px; font-weight: 700; margin-bottom: 18px; color: var(--slate); }
.tiers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tier {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}
.tier--warn { border-color: #F4D9C4; }
.tier--danger { border-color: #F2C9C9; }
.tier__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.tier__tag {
  font-size: 12px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
}
.tier__tag--t0 { color: var(--pill-blue); background: #EAF7FE; }
.tier__tag--t1 { color: #475569; background: #EEF2F7; }
.tier__tag--t2 { color: #9A5B1E; background: #FBEEDF; }
.tier__tag--t3 { color: #B42318; background: #FBE3E1; }
.tier__when { font-size: 11px; color: var(--muted-light); }
.tier__name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.tier__quote { font-size: 12px; color: var(--muted); line-height: 1.5; }
.tier__tone { margin-top: 12px; font-size: 11px; font-weight: 600; }
.tier__tone--t0 { color: var(--pill-blue); }
.tier__tone--t1 { color: #475569; }
.tier__tone--t2 { color: #9A5B1E; }
.tier__tone--t3 { color: #B42318; }

/* ---------- Import options ---------- */
.import-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.import-card {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.import-card--dark {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.import-card__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at 80% 0%, rgba(126, 211, 252, .22), transparent 70%);
}
.import-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
}
.import-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #EEF2F7;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.import-card__icon--sky { background: var(--sky); color: var(--navy); font-weight: 800; }
.import-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  position: relative;
}
.import-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 20px;
  position: relative;
}
.import-card__text--muted { color: #AFC2D6; }
.import-card__note {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(126, 211, 252, .1);
  border: 1px solid rgba(126, 211, 252, .25);
  border-radius: 12px;
  font-size: 13px;
  color: #DCE6F1;
  position: relative;
}
.import-card__note strong { color: #fff; }

.badge {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
}
.badge--neutral { color: var(--muted); background: #F1F5F9; }
.badge--sky { color: var(--navy); background: var(--sky); }

/* checklists */
.checklist {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--slate);
}
.checklist--light { margin: 0; }
.checklist--light li { color: #fff; }
.checklist--lg li { font-size: 15px; }
.import-card--dark .checklist { margin: 0; }
.check { font-weight: 800; }
.check--green { color: #157347; }
.check--sky { color: var(--sky); }

/* ---------- Feature dark (AI agent) ---------- */
.feature-dark { background: var(--navy); color: #fff; }
.feature-dark__inner {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.feature-dark__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.feature-dark__lead {
  font-size: 16px;
  line-height: 1.6;
  color: #AFC2D6;
  margin: 0 0 24px;
  max-width: 440px;
}
.feature-dark__copy .checklist { gap: 12px; }

/* agent table */
.feature-dark__visual { min-width: 0; }
.agent-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.agent-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .3);
  min-width: 520px;
}
.agent-table__head {
  display: grid;
  grid-template-columns: 120px 1fr;
  background: #1B2A41;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.agent-table__head-emp { padding: 10px 14px; }
.agent-table__head-times {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 10px 0;
  color: #8DA2BC;
}
.agent-table__head-times span { text-align: center; }
.agent-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  border-bottom: 1px solid #F1F5F9;
  min-height: 48px;
}
.agent-row--last { border-bottom: none; }
.agent-row__name { padding: 0 14px; font-size: 13px; color: var(--ink); }
.agent-row__cells { padding: 6px 10px; }
.agent-row__cells--multi { display: flex; gap: 6px; }
.slot {
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  display: inline-block;
}
.slot--absent { background: #FBE3E1; color: #B42318; text-align: center; width: 100%; }
.slot--ok { background: #E6F9EF; color: #157347; border: 1px solid #BBEBCF; }
.slot--info { background: #EAF7FE; color: var(--pill-blue); border: 1px solid #C9ECFB; }
.slot--warn { background: #FEF7E0; color: #946C00; border: 1px solid #F5E4A8; width: fit-content; }

.agent-msg {
  background: #13233A;
  border: 1px solid rgba(126, 211, 252, .3);
  border-radius: 14px;
  padding: 18px;
  margin-top: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.agent-msg__avatar {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--sky);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
  font-family: var(--font-display);
}
.agent-msg > div { min-width: 0; }
.agent-msg__name { font-size: 13px; font-weight: 700; color: var(--sky); margin-bottom: 4px; }
.agent-msg__text { font-size: 13px; color: #DCE6F1; line-height: 1.55; }
.agent-msg__text strong { color: #fff; }
.agent-msg__ok { color: var(--sky); }

/* ---------- Week planning ---------- */
.week {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(17, 24, 39, .07);
}
.week__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}
.week__emp {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}
.week__views { display: flex; gap: 7px; }
.week__view {
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 7px;
  border: 1px solid var(--line-strong);
}
.week__view--active {
  font-weight: 700;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.week__days {
  display: grid;
  grid-template-columns: 54px repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
}
.week__corner { background: #FAFBFD; }
.week__day {
  text-align: center;
  padding: 12px 6px;
  background: #FAFBFD;
  border-left: 1px solid var(--line);
}
.week__day--today {
  background: #EAF7FE;
  border-left: 1px solid #C9ECFB;
  border-right: 1px solid #C9ECFB;
}
.week__dow { font-size: 12px; font-weight: 700; color: #475569; }
.week__day--today .week__dow { color: var(--pill-blue); }
.week__date { font-size: 11px; color: var(--muted-light); }
.week__day--today .week__date { color: #5689A0; }

.week__grid {
  display: grid;
  grid-template-columns: 54px repeat(5, 1fr);
  grid-template-rows: repeat(13, 34px);
  position: relative;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 33px,
    #F1F5F9 33px,
    #F1F5F9 34px
  );
}
.week__col { grid-row: 1 / 14; border-left: 1px solid var(--line); }
.week__col--today {
  background: #F5FBFE;
  border-left: 1px solid #C9ECFB;
  border-right: 1px solid #C9ECFB;
}
.week__time {
  grid-column: 1;
  font-size: 11px;
  color: var(--muted-light);
  padding: 2px 8px 0 0;
  text-align: right;
}
.evt {
  border-radius: 9px;
  margin: 3px;
  padding: 8px 9px;
  z-index: 2;
  overflow: hidden;
}
.evt__title { font-size: 12px; font-weight: 700; }
.evt__addr { font-size: 11px; line-height: 1.35; }
.evt__phone { font-size: 11px; }
.evt--green { background: #E6F9EF; border: 1px solid #9FE0BB; }
.evt--green .evt__title { color: #157347; }
.evt--green .evt__addr { color: #5C8A6E; }
.evt--green .evt__phone { color: #85A892; }
.evt--amber { background: #FEF7E0; border: 1px solid #F0D98A; }
.evt--amber .evt__title { color: #946C00; }
.evt--amber .evt__addr { color: #9C8330; }
.evt--red { background: #FBE3E1; border: 1px solid #EFB0AB; }
.evt--red .evt__title { color: #B42318; }
.evt--red .evt__addr { color: #B8736C; }

/* ---------- CEO dashboard ---------- */
.dash__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.dash__sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.dash__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #F4F7FA;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 22px;
}
.dash__tab {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 9px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.dash__tab--active { font-weight: 700; background: var(--ink); color: #fff; }
.dash__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.dash-kpi {
  background: #EAF7FE;
  border: 1px solid #C9ECFB;
  border-radius: 14px;
  padding: 18px;
}
.dash-kpi__label { font-size: 13px; color: #5689A0; margin-bottom: 8px; }
.dash-kpi__hint { font-size: 11px; color: #85A2B5; margin-bottom: 6px; margin-top: -4px; }
.dash-kpi__value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.chart { border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.chart__title { font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.chart__body { display: grid; grid-template-columns: 34px 1fr; gap: 10px; }
.chart__yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted-light);
  text-align: right;
  height: 200px;
  padding-bottom: 18px;
}
.chart__bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  align-items: end;
  height: 200px;
  border-bottom: 1px solid var(--line-strong);
}
.chart__bar { background: var(--blue); border-radius: 5px 5px 0 0; }
.chart__bar--empty { background: var(--line-strong); }
.chart__labels {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  margin-top: 8px;
  font-size: 10px;
  color: var(--muted-light);
  text-align: center;
}

/* ---------- Comparison ---------- */
.compare {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
}
.compare__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid #F1F5F9;
}
.compare__row--last { border-bottom: none; }
.compare__row--head { background: var(--surface); border-bottom: 1px solid var(--line); }
.compare__feature { padding: 15px 24px; font-size: 14px; }
.compare__row--head .compare__feature {
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.compare__us, .compare__them { padding: 15px; text-align: center; }
.compare__us { background: #F5FBFE; }
.compare__row--head .compare__us {
  padding: 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  background: #EAF7FE;
}
.compare__row--head .compare__them {
  padding: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.compare__yes { color: #157347; font-weight: 800; }
.compare__no { color: #C9CFD8; font-weight: 800; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; }
.footer__inner { padding-top: 72px; padding-bottom: 72px; }
.footer__cta {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.footer__title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.footer__lead { font-size: 16px; color: #AFC2D6; margin: 0 0 26px; }
.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  font-size: 13px;
  color: #8DA2BC;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   Sub-pages (Récupération / Planning / Dashboards)
   ============================================================ */

/* active nav link */
.nav__links a.is-active { color: var(--ink); font-weight: 700; }

/* eyebrow / pill on dark sections */
.eyebrow--sky { color: var(--sky); }

/* ---------- Centered page hero ---------- */
.page-hero { background: linear-gradient(180deg, #F7FAFD 0%, #FFFFFF 100%); }
.page-hero__inner {
  padding-top: 72px;
  padding-bottom: 48px;
  text-align: center;
}
.page-hero .pill { margin-bottom: 22px; }
.page-hero__title {
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 auto 18px;
  max-width: 780px;
}
.page-hero__lead {
  font-size: 18px;
  line-height: 1.55;
  color: #4B5563;
  margin: 0 auto;
  max-width: 580px;
}
.page-hero__cta {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

/* ---------- Client board (Récupération) ---------- */
.board {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
}
.board__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.board__sub { font-size: 14px; color: var(--muted); margin: 0 0 24px; }
.board__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.board-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.board-card__label { font-size: 14px; color: var(--slate); margin-bottom: 4px; }
.board-card__hint { font-size: 12px; color: var(--muted-light); margin-bottom: 14px; line-height: 1.4; }
.board-card__value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.board-card__value--danger { color: #B42318; }

/* ---------- Email ladder (Récupération) ---------- */
.ladder-section { background: var(--navy); color: #fff; }
.ladder-section__inner { padding-top: 80px; padding-bottom: 80px; }
.ladder-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.ladder-head__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.ladder-head__sub { font-size: 16px; color: #AFC2D6; margin: 0; }
.ladder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }

.email {
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .3);
}
.email__head { background: var(--surface); border-bottom: 1px solid var(--line); padding: 16px 22px; }
.email__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.email__tag { font-size: 12px; font-weight: 800; color: #9A5B1E; background: #FBEEDF; padding: 3px 9px; border-radius: 6px; }
.email__auto { font-size: 12px; color: var(--muted-light); }
.email__to { font-size: 13px; color: var(--muted); }
.email__subject { font-size: 14px; font-weight: 700; margin-top: 4px; }
.email__body { padding: 22px; font-size: 14px; line-height: 1.7; color: var(--slate); }
.email__body p { margin: 0 0 12px; }
.email__body p:last-child { margin: 0; color: var(--muted); }

.ladder { display: flex; flex-direction: column; gap: 12px; }
.ladder-row {
  background: #13233A;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ladder-row--warn { border-color: rgba(240, 178, 122, .3); }
.ladder-row--danger { background: rgba(255, 138, 138, .08); border-color: rgba(255, 138, 138, .3); }
.ladder-row__tag {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  width: 34px;
}
.ladder-row__tag--t0 { color: var(--sky); }
.ladder-row__tag--t1 { color: #9DB4CC; }
.ladder-row__tag--t2 { color: #F0B27A; }
.ladder-row__tag--t3 { color: #FF8A8A; }
.ladder-row__body { flex: 1; }
.ladder-row__name { font-size: 15px; font-weight: 700; }
.ladder-row__quote { font-size: 13px; color: #8DA2BC; }
.ladder-row__when { font-size: 12px; color: #8DA2BC; }

/* ---------- Day view (Planning) ---------- */
.dayview {
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(17, 24, 39, .07);
}
.dayview__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.dayview__nav, .dayview__views { display: flex; gap: 8px; }
.dv-btn {
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  color: var(--muted);
  padding: 7px 13px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
}
.dv-btn--active { color: var(--pill-blue); border: 1.5px solid var(--sky); }
.dv-view { font-size: 12px; font-weight: 600; color: var(--muted); padding: 7px 13px; border-radius: 8px; }
.dv-view--active { font-weight: 700; background: var(--ink); color: #fff; }
.dayview__hours {
  display: grid;
  grid-template-columns: 150px repeat(13, 1fr);
  background: #1B2A41;
  color: #fff;
}
.dayview__hours-emp { padding: 11px 16px; font-size: 11px; font-weight: 700; }
.dayview__hour { padding: 11px 0; font-size: 11px; font-weight: 600; color: #8DA2BC; text-align: center; }
.dayview__rows { position: relative; }
.dayview__lines {
  position: absolute;
  top: 0; bottom: 0; left: 150px; right: 0;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  pointer-events: none;
}
.dayview__lines span { border-left: 1px solid #F4F6F9; }
.dv-row {
  display: grid;
  grid-template-columns: 150px repeat(13, 1fr);
  align-items: center;
  border-bottom: 1px solid #F1F5F9;
  min-height: 64px;
}
.dv-row--last { border-bottom: none; }
.dv-row__name { padding: 0 16px; font-size: 14px; color: var(--ink); }
.dv-block { padding: 5px; z-index: 1; }
.dv-block--full { padding: 6px; }
.dv-appt { border-radius: 9px; padding: 7px 9px; width: fit-content; }
.dv-appt__title { font-size: 12px; font-weight: 700; }
.dv-appt__addr { font-size: 11px; }
.dv-appt--green { background: #E6F9EF; border: 1px solid #9FE0BB; }
.dv-appt--green .dv-appt__title { color: #157347; }
.dv-appt--green .dv-appt__addr { color: #5C8A6E; }
.dv-appt--amber { background: #FEF7E0; border: 1px solid #F0D98A; }
.dv-appt--amber .dv-appt__title { color: #946C00; }
.dv-appt--amber .dv-appt__addr { color: #9C8330; }
.dv-appt--red { background: #FBE3E1; border: 1px solid #EFB0AB; }
.dv-appt--red .dv-appt__title { color: #B42318; }
.dv-appt--red .dv-appt__addr { color: #B8736C; }
.dv-status { border-radius: 9px; font-size: 13px; font-weight: 600; padding: 11px; text-align: center; }
.dv-status--absent { background: #FBE3E1; color: #B42318; }
.dv-status--leave { background: #EEF1F5; color: var(--muted); text-align: right; padding-right: 32%; }

/* ---------- Status / absence legend (Planning) ---------- */
.legend-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.legend-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.legend-card__swatch { width: 20px; height: 20px; border-radius: 6px; margin-bottom: 12px; }
.legend-card__swatch--green { background: #E6F9EF; border: 1px solid #9FE0BB; }
.legend-card__swatch--amber { background: #FEF7E0; border: 1px solid #F0D98A; }
.legend-card__swatch--red { background: #FBE3E1; border: 1px solid #EFB0AB; }
.legend-card__swatch--grey { background: #EEF1F5; border: 1px solid #D9E1EA; }
.legend-card__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.legend-card__text { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ---------- KPI overview (Dashboards) ---------- */
.kpi-overview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kpi-card {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(17, 24, 39, .04);
}
.kpi-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.kpi-card__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.kpi-card__icon--neutral { background: #EEF2F7; color: var(--slate); }
.kpi-card__icon--sky { background: #EAF7FE; color: var(--pill-blue); font-weight: 800; font-size: 15px; }
.kpi-card__icon--amber { background: #FBEEDF; color: #9A5B1E; font-size: 15px; }
.kpi-card__tag { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: var(--muted); }
.kpi-card__value {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.kpi-card__note { font-size: 13px; color: var(--muted-light); }

/* ---------- Analytics (Dashboards) ---------- */
.analytics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.analytics-card {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 6px 18px rgba(17, 24, 39, .04);
}
.analytics-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 2px;
}
.analytics-card__sub { font-size: 13px; color: var(--muted-light); margin: 0 0 22px; }
.status-list--wide .status-row { grid-template-columns: 130px 1fr; }
.bar--steel { background: #27486B; }
.bar-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-left: 142px;
  font-size: 11px;
  color: var(--muted-light);
}

.pie { display: flex; align-items: center; gap: 26px; }
.pie__circle { width: 160px; height: 160px; border-radius: 50%; flex: 0 0 auto; }
.pie__legend { display: flex; flex-direction: column; gap: 14px; }
.pie__item { display: flex; align-items: center; gap: 10px; }
.pie__dot { width: 12px; height: 12px; border-radius: 3px; flex: 0 0 auto; }
.pie__name { font-size: 14px; font-weight: 700; }
.pie__val { font-size: 12px; color: var(--muted-light); }
.pie__bar { margin-top: 22px; display: flex; height: 14px; border-radius: 7px; overflow: hidden; }
.pie__bar span { display: block; }

/* ---------- CEO financial dashboard (Dashboards) ---------- */
.fin-section { background: var(--navy); color: #fff; }
.fin-section__inner { padding-top: 80px; padding-bottom: 80px; }
.fin-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.fin-head__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.fin-head__sub { font-size: 16px; color: #AFC2D6; margin: 0; }
.fin-card {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
}
.fin-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fin-chart { border: 1px solid var(--line); border-radius: 14px; padding: 22px; }
.fin-chart__title { font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.fin-chart__body { display: grid; grid-template-columns: 34px 1fr; gap: 10px; }
.fin-yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted-light);
  text-align: right;
  height: 170px;
  padding-bottom: 18px;
}
.fin-bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  align-items: end;
  height: 170px;
  border-bottom: 1px solid var(--line-strong);
}
.fin-bars span { background: var(--blue); border-radius: 4px 4px 0 0; }
.fin-bars span.is-empty { background: var(--line-strong); }
.fin-xaxis {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  margin-top: 8px;
  font-size: 9px;
  color: var(--muted-light);
  text-align: center;
}
.fin-legend { display: flex; gap: 16px; margin-bottom: 18px; font-size: 12px; color: var(--muted); }
.fin-legend span { display: flex; align-items: center; gap: 6px; }
.fin-legend i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.fin-compare {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: end;
  height: 184px;
  border-bottom: 1px solid var(--line-strong);
}
.fin-compare__pair { display: flex; gap: 3px; align-items: end; height: 100%; }
.fin-compare__pair span { flex: 1; border-radius: 3px 3px 0 0; }
.fin-compare__xaxis {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 8px;
  font-size: 10px;
  color: var(--muted-light);
  text-align: center;
}
.is-2026 { background: var(--blue); }
.is-2025 { background: #1F2A3D; }

/* ---------- Simple metric grid (Dashboards) ---------- */
.metric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.metric {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.metric__label { font-size: 14px; color: var(--slate); margin-bottom: 14px; }
.metric__value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.metric__value--danger { color: #B42318; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner,
  .feature-dark__inner { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; }
  .tiers__grid { grid-template-columns: 1fr 1fr; }
  .import-grid { grid-template-columns: 1fr; }
  .dash__kpis { grid-template-columns: 1fr; }
  .board__grid,
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .ladder-grid,
  .analytics,
  .fin-charts { grid-template-columns: 1fr; }
  .kpi-overview,
  .legend-grid { grid-template-columns: 1fr 1fr; }
  .page-hero__title { font-size: 40px; }
}

@media (max-width: 640px) {
  .container { padding-left: 20px; padding-right: 20px; }
  .section { padding-top: 48px; padding-bottom: 48px; }
  .section--tight-top { padding: 24px 20px 32px; }
  .section--tight-bottom { padding: 16px 20px 48px; }
  .nav__inner.container { padding-left: 20px; padding-right: 20px; }
  .hero__inner { padding-top: 48px; padding-bottom: 48px; }
  .hero__title { font-size: 36px; }
  .section__title,
  .feature-dark__title,
  .footer__title { font-size: 28px; }
  .hero__cta { flex-wrap: wrap; }
  .hero__cta .btn { flex: 1; }
  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .card-mockup { padding: 16px; }
  .dash-kpi__value { font-size: 24px; }
  .status-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .status-row__label { text-align: left; }
  .status-list--wide .status-row { grid-template-columns: 1fr; }
  .tiers__grid { grid-template-columns: 1fr; }
  .week { overflow-x: auto; }
  .week__days,
  .week__grid { min-width: 620px; }
  .compare { overflow-x: auto; }
  .compare__row { min-width: 520px; }
  .footer__bar { flex-direction: column; align-items: flex-start; }
  .board__grid,
  .metric-grid,
  .kpi-overview,
  .legend-grid { grid-template-columns: 1fr; }
  .page-hero__title { font-size: 32px; }
  .ladder-head__title,
  .fin-head__title { font-size: 26px; }
  .dayview { overflow-x: auto; }
  .dayview__hours,
  .dayview__rows { min-width: 760px; }
  .pie { flex-direction: column; align-items: flex-start; }
  .bar-axis { padding-left: 0; }

  /* Replacement-agent schedule: shrink to fit instead of scrolling */
  .agent-table-wrap { overflow-x: visible; }
  .agent-table { min-width: 0; }
  .agent-table__head,
  .agent-row { grid-template-columns: 88px 1fr; }
  .agent-table__head { font-size: 10px; }
  .agent-table__head-emp { padding: 9px 10px; }
  .agent-table__head-times { padding: 9px 0; }
  .agent-row { min-height: 44px; }
  .agent-row__name { padding: 0 10px; font-size: 12px; line-height: 1.25; }
  .agent-row__cells { padding: 6px 8px; }
  .agent-row__cells--multi { flex-direction: column; gap: 5px; }
  .slot { font-size: 11px; padding: 6px 9px; }
  .agent-msg { padding: 14px; gap: 11px; }
  .agent-msg__avatar { width: 30px; height: 30px; }
}

/* ============================================================
   FAQ (added in SEO pass)
   ============================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 20px;
}
.faq__item[open] { border-color: var(--line-strong); }
.faq__q {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
  padding: 16px 28px 16px 0;
  position: relative;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--pill-blue);
  transition: transform .2s ease;
}
.faq__item[open] .faq__q::after { content: "−"; }
.faq__a {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  padding: 0 0 18px;
}

/* ============================================================
   Footer columns (added in SEO pass)
   ============================================================ */
.footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__about {
  font-size: 14px;
  line-height: 1.6;
  color: #AFC2D6;
  margin: 6px 0 0;
  max-width: 360px;
}
.footer__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8DA2BC;
  margin: 0 0 4px;
}
.footer__col a {
  font-size: 14px;
  color: #DCE6F1;
  text-decoration: none;
}
.footer__col a:hover { color: var(--sky); }
.footer__col span { font-size: 14px; color: #AFC2D6; }

@media (max-width: 768px) {
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .faq__q { font-size: 16px; }
}
