/* ==========================================================================
   Lekito Marketing — lekito.css
   Design tokens extracted from the original lekitomarketing.com brand.
   Single stylesheet for the whole site. No framework, no build step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand
     --blue is the text-bearing primary: every pairing below meets WCAG AA.
     --blue-bright is the original brand tone, kept for DECORATIVE use only
     (blob tints, favicon, theme-color). Never put text on --blue-bright:
     white on it is 4.25:1 and fails AA for body copy. */
  --blue:        #125FC4;   /* white text on this = 6.07:1  AA pass  */
  --blue-bright: #1877F0;   /* decorative only — no text on this      */
  --blue-700:    #0D4A9E;   /* gradient end, white text = 8.43:1      */
  --blue-600:    #0F5FCC;   /* links on white = 5.95:1                */
  --blue-400:    #2F8FD0;   /* large-text accent on white = 3.52:1    */
  --blue-200:    #AFD4EC;   /* tints and borders — never text         */
  --blue-100:    #D6EAFB;   /* eyebrow on blue bands = 4.92:1         */
  --blue-50:     #EAF3FD;

  /* Neutrals */
  --ink:         #232323;
  --body:        #373737;
  --muted:       #5F6773;   /* 5.10:1 on --blue-50, the lightest tint */
  --line:        #E4E8EE;
  --surface:     #F4F6F9;
  --surface-2:   #F0F0F0;
  --white:       #FFFFFF;

  /* Type */
  --font-head: 'Raleway', 'Segoe UI', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --fs-display: clamp(2.25rem, 1.35rem + 3.6vw, 4rem);
  --fs-h1:      clamp(2rem, 1.35rem + 2.6vw, 3.25rem);
  --fs-h2:      clamp(1.65rem, 1.25rem + 1.6vw, 2.5rem);
  --fs-h3:      clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
  --fs-lead:    clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  --fs-body:    1.0625rem;
  --fs-sm:      0.9375rem;
  --fs-xs:      0.8125rem;

  /* Space */
  --gutter:     clamp(1.25rem, 4vw, 2.5rem);
  --section-y:  clamp(3.5rem, 7vw, 6.5rem);
  --maxw:       1160px;
  --maxw-text:  68ch;

  /* Shape */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Elevation */
  --sh-sm: 0 1px 2px rgba(16,32,56,.06), 0 2px 6px rgba(16,32,56,.05);
  --sh:    0 2px 6px rgba(16,32,56,.06), 0 12px 28px rgba(16,32,56,.08);
  --sh-lg: 0 4px 12px rgba(16,32,56,.08), 0 28px 64px rgba(16,32,56,.14);
  --sh-blue: 0 10px 30px rgba(24,119,240,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 .6em;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 1.0625rem; font-weight: 700; letter-spacing: 0; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blue-700); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .5em; }
li:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* Band backgrounds — the alternating blue/white rhythm of the brand */
.band-blue {
  background: var(--blue);
  color: rgba(255,255,255,.95);
  position: relative;
  overflow: hidden;
}
.band-blue h1, .band-blue h2, .band-blue h3, .band-blue h4 { color: #fff; }
/* Inline links invert on blue — buttons keep their own colours. */
.band-blue a:not([class*="btn"]) { color: #fff; }

.band-deep {
  background: linear-gradient(160deg, var(--blue) 0%, #1055B4 58%, var(--blue-700) 100%);
  color: rgba(255,255,255,.95);
  position: relative;
  overflow: hidden;
}
.band-deep h1, .band-deep h2, .band-deep h3 { color: #fff; }

/* Light cards sitting ON a blue band keep dark text — otherwise the band's
   white heading colour makes their headings invisible against the white card. */
.band-blue .step h3, .band-deep .step h3,
.band-blue .card:not(.card--glass) h3, .band-deep .card:not(.card--glass) h3 { color: var(--ink); }
.band-blue .step p, .band-deep .step p,
.band-blue .card:not(.card--glass) .card__body,
.band-deep .card:not(.card--glass) .card__body { color: var(--muted); }
.band-blue .card:not(.card--glass) a:not([class*="btn"]),
.band-deep .card:not(.card--glass) a:not([class*="btn"]) { color: var(--blue-600); }

.band-soft { background: var(--surface); }
.band-tint { background: var(--blue-50); }

/* Organic blob shapes — the signature motif from the original site */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.blob--tl {
  width: 520px; height: 520px;
  top: -290px; left: -170px;
  background: rgba(255,255,255,.11);
}
.blob--tl2 {
  width: 340px; height: 340px;
  top: -140px; left: 130px;
  background: rgba(214,234,251,.18);
}
.blob--br {
  width: 620px; height: 620px;
  bottom: -400px; right: -220px;
  background: rgba(255,255,255,.08);
}
.section > .wrap { position: relative; z-index: 1; }

/* Grids */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

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

/* Split (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--flip .split__media { order: 2; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 2.25rem; }
  .split--flip .split__media { order: 0; }
}

/* --------------------------------------------------------------------------
   4. TYPE HELPERS
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 1rem;
}
.band-blue .eyebrow, .band-deep .eyebrow, .hero .eyebrow { color: var(--blue-100); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--muted);
  max-width: var(--maxw-text);
}
.band-blue .lead, .band-deep .lead { color: rgba(255,255,255,.92); }

.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

.prose { max-width: var(--maxw-text); }
.prose h2 { margin-top: 2.25em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75em; }

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: .01em;
  line-height: 1;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--blue); color: #fff; box-shadow: var(--sh-blue); }
.btn--primary:hover { background: var(--blue-600); color: #fff; box-shadow: 0 14px 36px rgba(24,119,240,.34); }

.btn--light { background: #fff; color: var(--blue-600); box-shadow: 0 8px 24px rgba(8,32,72,.18); }
.btn--light:hover { background: #fff; color: var(--blue-700); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue-600); }

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

.btn--sm { padding: .7rem 1.25rem; font-size: var(--fs-xs); }

.btn-row { display: flex; flex-wrap: wrap; gap: .875rem; margin-top: 2rem; }
.section-head--center .btn-row { justify-content: center; }

/* --------------------------------------------------------------------------
   6. HEADER / NAV
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--sh-sm); border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand__logo { height: 42px; width: auto; display: block; }
@media (max-width: 480px) { .brand__logo { height: 34px; } }

.nav__menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu li { margin: 0; }
.nav__link {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--body);
  text-decoration: none;
  padding: .55rem .875rem;
  border-radius: var(--r-sm);
  transition: color .16s var(--ease), background-color .16s var(--ease);
}
.nav__link:hover { color: var(--blue); background: var(--blue-50); }
.nav__link[aria-current="page"] { color: var(--blue); font-weight: 700; }

.nav__cta { flex-shrink: 0; }
/* The in-menu CTA is for the mobile drawer only; the header has its own. */
.nav__menu > li:last-child { display: none; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line);
  border-radius: var(--r-sm); cursor: pointer; padding: 0;
}
.nav__toggle span {
  display: block; position: relative;
  width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease), background-color .2s var(--ease);
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 940px) {
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .nav__menu > li:last-child { display: block; }
  .nav__menu {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh);
    padding: .75rem var(--gutter) 1.5rem;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .nav__menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__link { padding: .875rem .5rem; font-size: 1.0625rem; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav__menu li:last-child .nav__link { border-bottom: 0; }
  .nav__menu .btn { margin-top: 1rem; width: 100%; }
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(158deg, var(--blue) 0%, #1157B6 55%, var(--blue-700) 100%);
  color: rgba(255,255,255,.95);
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 { color: #fff; font-size: var(--fs-display); margin-bottom: .5em; }
.hero .lead { color: rgba(255,255,255,.92); font-size: clamp(1.0625rem, 1rem + .4vw, 1.3125rem); }
.hero__media { position: relative; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 520px; margin-inline: auto; width: 100%; }
}

/* Compact hero for inner pages */
.hero--page { padding-block: clamp(3rem, 6vw, 4.75rem); }
.hero--page .hero__grid { grid-template-columns: 1fr; max-width: 820px; }
.hero--page h1 { font-size: var(--fs-h1); }

/* Trust strip under hero */
.trustbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding-block: 1.5rem;
}
.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem clamp(1.25rem, 4vw, 3rem);
}
.trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--muted);
}
.trustbar__item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--blue); }

/* --------------------------------------------------------------------------
   8. CARDS
   -------------------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--sh-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  display: flex;
  flex-direction: column;
}
.card p:last-child { margin-bottom: 0; }
a.card, .card--link { text-decoration: none; color: inherit; }
a.card:hover, .card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
  border-color: var(--blue-200);
  color: inherit;
}
.card h3 { margin-bottom: .5rem; }
.card__body { color: var(--muted); font-size: var(--fs-sm); flex: 1; }
.card__more {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.25rem;
  font-family: var(--font-head); font-weight: 700; font-size: var(--fs-sm);
  color: var(--blue-600);
}
.card__more svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
a.card:hover .card__more svg { transform: translateX(4px); }

.icon-badge {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r);
  background: var(--blue-50);
  color: var(--blue);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.icon-badge svg { width: 26px; height: 26px; }
.band-blue .icon-badge, .band-deep .icon-badge { background: rgba(255,255,255,.14); color: #fff; }

/* Glass card on blue bands */
.card--glass {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  box-shadow: none;
  color: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.card--glass .card__body { color: rgba(255,255,255,.92); }

/* --------------------------------------------------------------------------
   9. STEPS / PROCESS
   -------------------------------------------------------------------------- */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 1.25rem; }
.steps--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .steps--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps--4 { grid-template-columns: 1fr; } }

.step {
  counter-increment: step;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.75rem clamp(1.25rem, 2.5vw, 1.75rem);
  margin: 0;
  position: relative;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--blue-400);
  display: block;
  margin-bottom: .75rem;
}
.step h3 { font-size: 1.0625rem; margin-bottom: .4rem; }
.step p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* --------------------------------------------------------------------------
   10. FEATURE LIST (checkmarks)
   -------------------------------------------------------------------------- */
.checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .875rem; }
.checklist li {
  position: relative;
  padding-left: 2rem;
  margin: 0;
  font-size: var(--fs-sm);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: .28em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23125FC4' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}
.band-blue .checklist li::before, .band-deep .checklist li::before {
  background-color: rgba(255,255,255,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.checklist--2 { grid-template-columns: 1fr 1fr; gap: .875rem 2rem; }
@media (max-width: 620px) { .checklist--2 { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   11. STAT / FACT ROW
   -------------------------------------------------------------------------- */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 720px) { .facts { grid-template-columns: 1fr; } }
.fact {
  border-left: 3px solid var(--blue-200);
  padding-left: 1.25rem;
}
.band-deep .fact, .band-blue .fact { border-left-color: rgba(255,255,255,.35); }
.fact__k {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  color: var(--ink);
  line-height: 1.1;
  display: block;
  letter-spacing: -0.02em;
}
.band-deep .fact__k, .band-blue .fact__k { color: #fff; }
.fact__v { font-size: var(--fs-sm); color: var(--muted); margin-top: .35rem; display: block; }
.fact__k a { display: inline-block; padding-block: .25rem; }
.band-deep .fact__v, .band-blue .fact__v { color: rgba(255,255,255,.92); }

/* --------------------------------------------------------------------------
   12. ACCORDION (FAQ)
   -------------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: #fff;
  margin-bottom: .875rem;
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq details[open] { border-color: var(--blue-200); box-shadow: var(--sh-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 3.25rem 1.25rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute;
  right: 1.5rem; top: 50%;
  width: 12px; height: 12px;
  margin-top: -6px;
  border-right: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq__a { padding: 0 1.5rem 1.5rem; color: var(--muted); font-size: var(--fs-sm); }
.faq__a p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   13. FORMS
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 1.125rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.125rem; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: .4rem; }
.field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--ink);
}
.field .req { color: var(--blue); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .8rem .9rem;
  width: 100%;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { min-height: 150px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237D7D7D' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; background-size: 16px; padding-right: 2.5rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,119,240,.15);
}
.field__hint { font-size: var(--fs-xs); color: var(--muted); }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: .25rem; flex-shrink: 0; accent-color: var(--blue); }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

.form__note { font-size: var(--fs-xs); color: var(--muted); }
.form__status { display: none; padding: 1rem 1.25rem; border-radius: var(--r-sm); font-size: var(--fs-sm); }
.form__status.is-ok  { display: block; background: #E9F7EF; color: #14612F; border: 1px solid #B7E4C7; }
.form__status.is-err { display: block; background: #FDECEC; color: #8A1C1C; border: 1px solid #F5C2C2; }

/* --------------------------------------------------------------------------
   14. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 16ch; margin-inline: auto; }
.cta-band .lead { margin-inline: auto; }

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  font-size: var(--fs-sm);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand .brand__logo { height: 46px; }
.footer__brand p { margin-top: 1.25rem; max-width: 34ch; line-height: 1.6; }

.footer__h {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}
.footer__list { list-style: none; margin: 0; padding: 0; }
.footer__list li { margin-bottom: .25rem; }
/* Generous tap targets on touch devices without changing visual rhythm */
.footer__list a { display: inline-block; padding-block: .4rem; }

address.footer__addr { font-style: normal; line-height: 1.65; }
address.footer__addr strong { color: #fff; font-weight: 600; display: block; margin-bottom: .4rem; }

.footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.72);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: .25rem 1.25rem; list-style: none; margin: 0; padding: 0; }
.footer__legal li { margin: 0; }
.footer__legal a { display: inline-block; padding-block: .4rem; }

/* --------------------------------------------------------------------------
   16. UTILITIES
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }

/* Scroll-reveal (progressive enhancement — visible by default if JS is off) */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* Breadcrumbs */
.crumbs { font-size: var(--fs-xs); color: rgba(255,255,255,.92); margin-bottom: 1rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: '/'; margin-right: .4rem; opacity: .55; }
.crumbs a { color: #fff; text-decoration: underline; text-underline-offset: 3px; display: inline-block; padding-block: .3rem; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* Legal page typography */
.legal-body { max-width: 780px; }
.legal-body h2 { font-size: 1.375rem; margin-top: 2.5em; }
.legal-body h3 { font-size: 1.0625rem; margin-top: 1.75em; }
.legal-body p, .legal-body li { font-size: var(--fs-sm); }
.legal-meta {
  background: var(--blue-50);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1rem 1.25rem;
  font-size: var(--fs-sm);
  margin-bottom: 2.5rem;
}
.legal-meta p { margin: 0; }

/* Print */
@media print {
  .site-header, .site-footer, .btn, .nav__toggle { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .band-blue, .band-deep, .hero { background: none !important; color: #000 !important; }
  .band-blue h1, .band-deep h1, .hero h1 { color: #000 !important; }
}
