/* ==========================================================================
   LincolnLogic - site stylesheet
   Sections: 1 tokens · 2 base · 3 type · 4 buttons · 5 layout · 6 header
   7 hero · 8 cards · 9 stats · 10 process · 11 quotes · 12 logos
   13 CTA · 14 footer · 15 forms · 16 prose · 17 misc · 18 responsive
   ========================================================================== */

/* -------------------------------------------------- 1. tokens ----------- */
:root {
  --ll-ink: #1b3a5f;
  --ll-navy: #17304d;
  --ll-navy-soft: #2d5c92;
  /* Large dark panels (hero, page hero, navy bands, CTA). Kept separate from
     --ll-navy so surfaces can be lightened without washing out heading type. */
  --ll-surface: #234a78;
  --ll-blue: #1a72d6;
  --ll-blue-dark: #1863b8;
  --ll-blue-soft: #e8f1fc;
  --ll-gold: #e6b14a;
  --ll-gold-dark: #b7842a;
  --ll-slate: #5a6c83;
  --ll-slate-light: #7c8ca1;
  --ll-mist: #f6fafd;
  --ll-line: #e5edf6;
  --ll-line-strong: #c6d4e6;
  --ll-white: #ffffff;

  --ll-shell: 1200px;
  --ll-gutter: clamp(20px, 4vw, 32px);
  --ll-radius: 16px;
  --ll-radius-sm: 10px;
  --ll-radius-lg: 24px;

  --ll-shadow-sm: 0 1px 2px rgba(35, 74, 120, 0.05), 0 2px 8px rgba(35, 74, 120, 0.045);
  --ll-shadow-md: 0 12px 28px rgba(35, 74, 120, 0.09);
  --ll-shadow-lg: 0 26px 60px rgba(27, 58, 95, 0.16);

  --ll-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --ll-font-head: "Manrope", var(--ll-font-body);

  --ll-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--ll-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ll-slate);
  background: var(--ll-white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--ll-blue); text-decoration: none; }
a:hover { color: var(--ll-blue-dark); }

:focus-visible {
  outline: 3px solid var(--ll-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.ll-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ll-surface);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}
.ll-skip:focus { left: 0; color: #fff; }

.ll-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;
}

/* -------------------------------------------------- 3. typography ------- */
h1, h2, h3, h4, h5 {
  font-family: var(--ll-font-head);
  color: var(--ll-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.15rem, 1.35rem + 3.1vw, 3.75rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem); }
h4 { font-size: 1.1rem; }

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

.ll-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ll-font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ll-blue);
  margin: 0 0 14px;
  /* keep heading-tag eyebrows the same height as paragraph ones */
  line-height: inherit;
}
.ll-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--ll-gold);
  border-radius: 2px;
}
.ll-eyebrow--light { color: var(--ll-gold); }

.ll-lead {
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  line-height: 1.6;
  color: var(--ll-slate);
}

.ll-section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.ll-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.ll-section__head--center .ll-eyebrow::before { display: none; }

/* -------------------------------------------------- 4. buttons ---------- */
.ll-btn {
  --btn-bg: var(--ll-blue);
  --btn-fg: #fff;
  --btn-border: var(--ll-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ll-font-head);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.18s var(--ll-ease), box-shadow 0.18s var(--ll-ease),
    background-color 0.18s var(--ll-ease), color 0.18s var(--ll-ease),
    border-color 0.18s var(--ll-ease);
  white-space: nowrap;
}
.ll-btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(29, 111, 208, 0.28);
}
.ll-btn .ll-icon { width: 18px; height: 18px; }

.ll-btn--gold { --btn-bg: var(--ll-gold); --btn-border: var(--ll-gold); --btn-fg: var(--ll-ink); }
.ll-btn--gold:hover { box-shadow: 0 10px 22px rgba(224, 168, 60, 0.35); }

.ll-btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ll-navy);
  --btn-border: var(--ll-line-strong);
}
.ll-btn--ghost:hover {
  --btn-border: var(--ll-blue);
  --btn-fg: var(--ll-blue);
  box-shadow: none;
}

.ll-btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-border: rgba(255, 255, 255, 0.4);
}
.ll-btn--ghost-light:hover {
  --btn-bg: rgba(255, 255, 255, 0.1);
  --btn-border: #fff;
  box-shadow: none;
}

.ll-btn--sm { padding: 11px 20px; font-size: 0.9rem; }
.ll-btn--block { width: 100%; }

.ll-textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ll-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ll-blue);
}
.ll-textlink .ll-icon { width: 16px; height: 16px; transition: transform 0.18s var(--ll-ease); }
.ll-textlink:hover .ll-icon { transform: translateX(4px); }

/* -------------------------------------------------- 5. layout ----------- */
.ll-shell {
  width: 100%;
  max-width: var(--ll-shell);
  margin-inline: auto;
  padding-inline: var(--ll-gutter);
}

.ll-section { padding-block: clamp(60px, 7.5vw, 104px); }
.ll-section--tight { padding-block: clamp(44px, 5vw, 68px); }
.ll-section--mist { background: var(--ll-mist); }
.ll-section--navy { background: var(--ll-surface); color: rgba(255, 255, 255, 0.78); }
.ll-section--navy h2,
.ll-section--navy h3 { color: #fff; }

.ll-grid { display: grid; gap: clamp(18px, 2.2vw, 26px); }
.ll-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ll-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ll-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ll-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.ll-split--wide-left { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }

.ll-icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.ll-icon--filled { fill: currentColor; stroke: none; }

.ll-iconbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ll-blue-soft);
  color: var(--ll-blue);
  flex: none;
  transition: background-color 0.2s var(--ll-ease), color 0.2s var(--ll-ease);
}
.ll-iconbox .ll-icon { width: 26px; height: 26px; }
.ll-iconbox--gold { background: rgba(224, 168, 60, 0.16); color: var(--ll-gold-dark); }
.ll-iconbox--light { background: rgba(255, 255, 255, 0.12); color: #fff; }

/* Decorative panel used wherever an editor has not uploaded an image yet. */
.ll-media {
  position: relative;
  border-radius: var(--ll-radius-lg);
  overflow: hidden;
  background: linear-gradient(140deg, var(--ll-surface) 0%, var(--ll-blue-dark) 60%, #3d95ec 100%);
  aspect-ratio: 4 / 3;
  box-shadow: var(--ll-shadow-lg);
}
.ll-media img { width: 100%; height: 100%; object-fit: cover; }
.ll-media--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.ll-media__badge {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--ll-font-head);
  font-weight: 700;
  font-size: 0.85rem;
}

/* -------------------------------------------------- 6. header ----------- */
.ll-announce {
  background: var(--ll-surface);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  text-align: center;
  padding: 9px var(--ll-gutter);
}
.ll-announce a { color: var(--ll-gold); font-weight: 600; }

.ll-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--ll-ease), box-shadow 0.2s var(--ll-ease);
}
.ll-header.is-stuck {
  border-bottom-color: var(--ll-line);
  box-shadow: 0 4px 18px rgba(35, 74, 120, 0.05);
}

.ll-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}

.ll-logo { display: inline-flex; align-items: center; gap: 11px; color: var(--ll-navy); }
.ll-logo__mark { width: 38px; height: 38px; flex: none; display: block; border-radius: 10px; }
.ll-logo__wordmark { height: 21px; width: auto; flex: none; }
.ll-logo__word {
  font-family: var(--ll-font-head);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
  color: inherit;
}
.ll-logo__word span { color: var(--ll-blue); }
.ll-logo--light { color: #fff; }
.ll-logo--light .ll-logo__word span { color: var(--ll-gold); }

.ll-nav { margin-left: auto; }
.ll-nav__list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.ll-nav__item { position: relative; }

.ll-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--ll-font-head);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--ll-navy);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.15s var(--ll-ease), background-color 0.15s var(--ll-ease);
}
.ll-nav__link:hover,
.ll-nav__link.is-active { color: var(--ll-blue); background: var(--ll-blue-soft); }
.ll-nav__link .ll-icon { width: 14px; height: 14px; transition: transform 0.2s var(--ll-ease); }
.ll-nav__item.is-open > .ll-nav__link .ll-icon { transform: rotate(180deg); }

.ll-nav__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 330px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius);
  box-shadow: var(--ll-shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s var(--ll-ease), transform 0.18s var(--ll-ease), visibility 0.18s;
}
.ll-nav__item.is-open > .ll-nav__panel { opacity: 1; visibility: visible; transform: translateY(0); }

.ll-nav__panel-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--ll-radius-sm);
  color: var(--ll-navy);
  transition: background-color 0.15s var(--ll-ease);
}
.ll-nav__panel-link:hover { background: var(--ll-mist); color: var(--ll-navy); }
.ll-nav__panel-link .ll-iconbox { width: 38px; height: 38px; border-radius: 10px; }
.ll-nav__panel-link .ll-iconbox .ll-icon { width: 20px; height: 20px; }
.ll-nav__panel-title { display: block; font-family: var(--ll-font-head); font-weight: 700; font-size: 0.95rem; }
.ll-nav__panel-desc { display: block; font-size: 0.84rem; color: var(--ll-slate-light); line-height: 1.45; }

/* Wide, grouped "What we do" panel - four pillars side by side. Anchored to
   the right of its trigger so it can never run off the viewport edge. */
.ll-nav__panel--wide { min-width: min(620px, calc(100vw - 48px)); left: auto; right: 0; }
.ll-nav__cols { column-count: 2; column-gap: 14px; }
.ll-nav__group { break-inside: avoid; display: block; margin-bottom: 10px; }
.ll-nav__group-head {
  display: block;
  margin: 6px 12px 4px;
  font-family: var(--ll-font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ll-slate-light);
}
.ll-nav__group-head:hover { color: var(--ll-blue); }
.ll-nav__panel--wide .ll-nav__panel-link { align-items: center; padding: 7px 12px; }
.ll-nav__panel--wide .ll-iconbox { width: 30px; height: 30px; border-radius: 8px; }
.ll-nav__panel--wide .ll-iconbox .ll-icon { width: 16px; height: 16px; }

.ll-nav__panel-all {
  display: block;
  margin-top: 6px;
  padding: 11px 12px;
  border-top: 1px solid var(--ll-line);
  font-family: var(--ll-font-head);
  font-weight: 700;
  font-size: 0.9rem;
}

.ll-header__actions { display: flex; align-items: center; gap: 14px; }
.ll-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ll-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ll-navy);
}
.ll-header__phone:hover { color: var(--ll-blue); }
.ll-header__phone .ll-icon { width: 18px; height: 18px; color: var(--ll-blue); }

.ll-burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ll-line);
  border-radius: 10px;
  background: #fff;
  color: var(--ll-navy);
  cursor: pointer;
}
.ll-burger .ll-icon { width: 22px; height: 22px; }
.ll-burger__close { display: none; }
.ll-burger.is-open .ll-burger__open { display: none; }
.ll-burger.is-open .ll-burger__close { display: block; }

/* -------------------------------------------------- 7. hero ------------- */
.ll-hero {
  position: relative;
  overflow: hidden;
  background: var(--ll-surface);
  color: rgba(255, 255, 255, 0.8);
  padding-block: clamp(64px, 8vw, 116px);
}
.ll-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 78% 18%, rgba(29, 111, 208, 0.55) 0%, transparent 62%),
    radial-gradient(45% 60% at 12% 88%, rgba(224, 168, 60, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.ll-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 80% at 50% 30%, #000 0%, transparent 78%);
  pointer-events: none;
}
.ll-hero > * { position: relative; z-index: 1; }

.ll-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.ll-hero h1 { color: #fff; }
.ll-hero__sub {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.22rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
  margin-bottom: 32px;
}
.ll-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.ll-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.ll-hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.ll-hero__trust .ll-icon { width: 17px; height: 17px; color: var(--ll-gold); }

/* Right-hand panel: shown when no hero image is uploaded. */
.ll-hero__panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--ll-radius-lg);
  padding: clamp(22px, 3vw, 32px);
  backdrop-filter: blur(10px);
  box-shadow: var(--ll-shadow-lg);
}
.ll-hero__panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.ll-hero__panel-head strong { color: #fff; font-family: var(--ll-font-head); font-size: 1rem; }
.ll-hero__panel-head small { display: block; color: rgba(255, 255, 255, 0.6); font-size: 0.82rem; }

.ll-hero__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.ll-hero__metric { text-align: center; }
.ll-hero__metric b {
  display: block;
  font-family: var(--ll-font-head);
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.ll-hero__metric span { font-size: 0.76rem; line-height: 1.35; color: rgba(255, 255, 255, 0.62); display: block; }

.ll-hero__checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.ll-hero__checks li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; color: rgba(255, 255, 255, 0.82); }
.ll-hero__checks .ll-icon { width: 18px; height: 18px; color: var(--ll-gold); flex: none; margin-top: 3px; }

.ll-hero__image { border-radius: var(--ll-radius-lg); overflow: hidden; box-shadow: var(--ll-shadow-lg); }

/* Compact hero for inner pages */
.ll-pagehero {
  background: var(--ll-surface);
  color: rgba(255, 255, 255, 0.78);
  padding-block: clamp(48px, 6vw, 82px);
  position: relative;
  overflow: hidden;
}
.ll-pagehero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 80% at 85% 20%, rgba(29, 111, 208, 0.5) 0%, transparent 65%);
}
.ll-pagehero > * { position: relative; z-index: 1; }
.ll-pagehero h1 { color: #fff; max-width: 20ch; }
.ll-pagehero__sub { max-width: 60ch; font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem); color: rgba(255, 255, 255, 0.76); }
.ll-pagehero--wide h1 { max-width: 28ch; }

.ll-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.ll-breadcrumb a { color: rgba(255, 255, 255, 0.8); }
.ll-breadcrumb a:hover { color: #fff; }
.ll-breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: 0.5; }

/* -------------------------------------------------- 8. cards ------------ */
.ll-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 2.4vw, 30px);
  background: #fff;
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius);
  box-shadow: var(--ll-shadow-sm);
  transition: transform 0.22s var(--ll-ease), box-shadow 0.22s var(--ll-ease),
    border-color 0.22s var(--ll-ease);
  height: 100%;
}
.ll-card h3 { margin: 0; }
.ll-card p { color: var(--ll-slate); font-size: 0.97rem; margin: 0; }
.ll-card__link { margin-top: auto; padding-top: 6px; }

a.ll-card:hover,
.ll-card--hover:hover {
  transform: translateY(-5px);
  box-shadow: var(--ll-shadow-md);
  border-color: var(--ll-line-strong);
}
a.ll-card:hover .ll-iconbox { background: var(--ll-blue); color: #fff; }
a.ll-card { color: inherit; }

.ll-card--flat { box-shadow: none; background: transparent; border-color: transparent; padding: 0; }

.ll-card__media {
  margin: calc(-1 * clamp(22px, 2.4vw, 30px)) calc(-1 * clamp(22px, 2.4vw, 30px)) 4px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ll-surface), var(--ll-blue));
  border-radius: var(--ll-radius) var(--ll-radius) 0 0;
}
.ll-card__media img { width: 100%; height: 100%; object-fit: cover; }

.ll-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ll-slate-light);
}
.ll-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--ll-blue-soft);
  color: var(--ll-blue-dark);
  font-family: var(--ll-font-head);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.ll-chip--gold { background: rgba(224, 168, 60, 0.16); color: var(--ll-gold-dark); }
.ll-chip--light { background: rgba(255, 255, 255, 0.14); color: #fff; }

/* Feature list used on service / industry detail pages */
.ll-featurelist { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.ll-featurelist li { display: flex; gap: 16px; align-items: flex-start; }
.ll-featurelist h3 { margin: 0 0 4px; font-family: var(--ll-font-head); color: var(--ll-navy); font-size: 1.1rem; }
.ll-featurelist p { margin: 0; font-size: 0.95rem; }

.ll-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.ll-checklist li { display: flex; gap: 12px; align-items: flex-start; }
.ll-checklist .ll-icon { width: 20px; height: 20px; color: var(--ll-blue); flex: none; margin-top: 3px; }

/* -------------------------------------------------- 9. stats ------------ */
.ll-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.ll-stat { text-align: center; padding: 8px; }
.ll-stat b {
  display: block;
  font-family: var(--ll-font-head);
  font-size: clamp(2.1rem, 1.6rem + 2vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 10px;
}
.ll-stat b em { font-style: normal; color: var(--ll-gold); }
.ll-stat span { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); line-height: 1.45; display: block; }

.ll-stats--light .ll-stat b { color: var(--ll-navy); }
.ll-stats--light .ll-stat span { color: var(--ll-slate); }

/* -------------------------------------------------- 10. process --------- */
.ll-steps { display: grid; gap: clamp(18px, 2.4vw, 26px); counter-reset: step; }
.ll-steps--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.ll-step {
  position: relative;
  padding: clamp(22px, 2.4vw, 30px);
  background: #fff;
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius);
  counter-increment: step;
}
.ll-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ll-navy);
  color: #fff;
  font-family: var(--ll-font-head);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.ll-step__duration {
  font-family: var(--ll-font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ll-gold-dark);
  display: block;
  margin-bottom: 6px;
}
.ll-step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.ll-step p { font-size: 0.95rem; margin: 0; }
.ll-step + .ll-step::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 42px;
  width: 12px;
  height: 2px;
  background: var(--ll-line-strong);
}

/* -------------------------------------------------- 11. quotes ---------- */
.ll-quote {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius);
  height: 100%;
}
.ll-quote__mark { width: 34px; height: 34px; color: var(--ll-gold); }
.ll-quote blockquote {
  margin: 0;
  font-family: var(--ll-font-head);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ll-navy);
  font-weight: 600;
}
.ll-quote__author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.ll-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ll-navy);
  color: #fff;
  font-family: var(--ll-font-head);
  font-weight: 700;
  font-size: 0.95rem;
}
.ll-avatar--lg { width: 84px; height: 84px; font-size: 1.5rem; }
.ll-quote__author b { display: block; font-family: var(--ll-font-head); color: var(--ll-navy); font-size: 0.97rem; }
.ll-quote__author span { font-size: 0.86rem; color: var(--ll-slate-light); }

/* -------------------------------------------------- 12. logo strip ------ */
.ll-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
}
.ll-logos__item {
  font-family: var(--ll-font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ll-slate-light);
  opacity: 0.85;
  transition: opacity 0.2s var(--ll-ease), color 0.2s var(--ll-ease);
}
.ll-logos__item:hover { opacity: 1; color: var(--ll-navy); }
.ll-logos__item img { max-height: 34px; width: auto; filter: grayscale(1); opacity: 0.7; }
.ll-logos__label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ll-slate-light);
  margin-bottom: 26px;
}

/* -------------------------------------------------- 13. CTA band -------- */
.ll-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--ll-surface) 0%, var(--ll-navy-soft) 55%, var(--ll-blue-dark) 100%);
  color: rgba(255, 255, 255, 0.82);
  padding-block: clamp(52px, 6vw, 84px);
}
.ll-cta::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 168, 60, 0.24) 0%, transparent 66%);
}
.ll-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.ll-cta h2 { color: #fff; margin-bottom: 10px; max-width: 20ch; }
.ll-cta p { max-width: 52ch; margin: 0; }
.ll-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* -------------------------------------------------- 14. footer ---------- */
.ll-footer { background: var(--ll-ink); color: rgba(255, 255, 255, 0.62); padding-top: clamp(52px, 6vw, 76px); font-size: 0.94rem; }
.ll-footer a { color: rgba(255, 255, 255, 0.72); }
.ll-footer a:hover { color: #fff; }

.ll-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 46px;
}
.ll-footer__blurb { margin: 20px 0 24px; max-width: 38ch; line-height: 1.6; }
.ll-footer h2 {
  font-family: var(--ll-font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 18px;
}
.ll-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }

.ll-footer__contact { display: grid; gap: 12px; }
.ll-footer__contact a,
.ll-footer__contact span { display: flex; gap: 11px; align-items: flex-start; }
.ll-footer__contact .ll-icon { width: 18px; height: 18px; color: var(--ll-gold); flex: none; margin-top: 3px; }

.ll-social { display: flex; gap: 10px; }
.ll-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background-color 0.18s var(--ll-ease), border-color 0.18s var(--ll-ease);
}
.ll-social a:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); }
.ll-social .ll-icon { width: 19px; height: 19px; }

.ll-footer__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.45);
}
.ll-footer__bar ul { display: flex; flex-wrap: wrap; gap: 20px; }

/* -------------------------------------------------- 15. forms ----------- */
.ll-formcard {
  background: #fff;
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius-lg);
  padding: clamp(24px, 3.2vw, 40px);
  box-shadow: var(--ll-shadow-md);
}

.ll-form { display: grid; gap: 18px; }
.ll-form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.ll-field { display: grid; gap: 7px; }
.ll-field label {
  font-family: var(--ll-font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ll-navy);
}
.ll-field__req { color: var(--ll-gold-dark); }

.ll-field__input {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ll-navy);
  background: var(--ll-mist);
  border: 1.5px solid var(--ll-line);
  border-radius: var(--ll-radius-sm);
  padding: 13px 15px;
  transition: border-color 0.16s var(--ll-ease), background-color 0.16s var(--ll-ease),
    box-shadow 0.16s var(--ll-ease);
}
.ll-field__input:focus {
  outline: none;
  background: #fff;
  border-color: var(--ll-blue);
  box-shadow: 0 0 0 4px rgba(29, 111, 208, 0.14);
}
.ll-field__input--textarea { resize: vertical; min-height: 132px; line-height: 1.6; }
.ll-field__input--select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355677e' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.ll-field__help { font-size: 0.84rem; color: var(--ll-slate-light); }
.ll-field__errors { margin: 0; padding: 0; list-style: none; font-size: 0.86rem; color: #c0392b; }
.ll-field.has-error .ll-field__input { border-color: #c0392b; background: #fdf3f2; }

.ll-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.ll-alert {
  padding: 14px 18px;
  border-radius: var(--ll-radius-sm);
  border: 1px solid;
  font-size: 0.94rem;
}
.ll-alert--error { background: #fdf3f2; border-color: #e8b4ae; color: #96261a; }
.ll-alert--success { background: #eef8f1; border-color: #a9d8ba; color: #1e6b39; }

/* -------------------------------------------------- 16. prose ----------- */
.ll-prose { font-size: 1.03rem; line-height: 1.75; color: var(--ll-slate); }
.ll-prose > *:first-child { margin-top: 0; }
.ll-prose > *:last-child { margin-bottom: 0; }
.ll-prose h2 { font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.85rem); margin: 1.9em 0 0.6em; }
.ll-prose h3 { font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem); margin: 1.7em 0 0.5em; }
.ll-prose h4 { margin: 1.5em 0 0.4em; }
.ll-prose ul, .ll-prose ol { margin: 0 0 1.2em; padding-left: 1.35em; }
.ll-prose li { margin-bottom: 0.5em; }
.ll-prose li::marker { color: var(--ll-blue); }
.ll-prose a { text-decoration: underline; text-underline-offset: 3px; }
.ll-prose blockquote {
  margin: 1.7em 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--ll-gold);
  font-family: var(--ll-font-head);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ll-navy);
}
.ll-prose img { border-radius: var(--ll-radius); margin: 1.6em 0; }
.ll-prose hr { border: 0; border-top: 1px solid var(--ll-line); margin: 2.4em 0; }
.ll-prose table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: 0.95rem; }
.ll-prose th, .ll-prose td { padding: 12px 14px; border: 1px solid var(--ll-line); text-align: left; }
.ll-prose th { background: var(--ll-mist); font-family: var(--ll-font-head); color: var(--ll-navy); }
.ll-prose code {
  background: var(--ll-mist);
  border: 1px solid var(--ll-line);
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 0.9em;
}

/* -------------------------------------------------- 17. misc ------------ */
.ll-accordion { border-top: 1px solid var(--ll-line); }
.ll-accordion__item { border-bottom: 1px solid var(--ll-line); }
.ll-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--ll-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ll-navy);
}
.ll-accordion__trigger .ll-icon { width: 20px; height: 20px; color: var(--ll-blue); flex: none; transition: transform 0.2s var(--ll-ease); }
.ll-accordion__item.is-open .ll-accordion__trigger .ll-icon { transform: rotate(180deg); }
.ll-accordion__body { display: none; padding-bottom: 24px; max-width: 78ch; }
.ll-accordion__item.is-open .ll-accordion__body { display: block; }

.ll-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  list-style: none;
  padding: 0;
}
.ll-pagination a,
.ll-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--ll-line);
  font-family: var(--ll-font-head);
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--ll-navy);
}
.ll-pagination a:hover { border-color: var(--ll-blue); color: var(--ll-blue); }
.ll-pagination .is-current { background: var(--ll-navy); border-color: var(--ll-navy); color: #fff; }
.ll-pagination .is-disabled { opacity: 0.4; }

.ll-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.ll-filters a {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--ll-line);
  font-family: var(--ll-font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ll-navy);
}
.ll-filters a:hover { border-color: var(--ll-blue); color: var(--ll-blue); }
.ll-filters a.is-active { background: var(--ll-navy); border-color: var(--ll-navy); color: #fff; }

.ll-empty {
  text-align: center;
  padding: clamp(48px, 7vw, 88px) 24px;
  border: 1px dashed var(--ll-line-strong);
  border-radius: var(--ll-radius-lg);
  background: var(--ll-mist);
}
.ll-empty h3 { margin-bottom: 8px; }

.ll-office {
  padding: 24px;
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius);
  background: #fff;
  height: 100%;
}
.ll-office h3 { font-size: 1.1rem; margin-bottom: 6px; }
.ll-office address { font-style: normal; font-size: 0.94rem; line-height: 1.6; margin-bottom: 12px; white-space: pre-line; }
.ll-office__meta { font-size: 0.88rem; color: var(--ll-slate-light); display: grid; gap: 4px; }

.ll-person { text-align: center; }
.ll-person .ll-avatar { margin: 0 auto 16px; }
.ll-person h3 { font-size: 1.08rem; margin-bottom: 2px; }
.ll-person__role { font-size: 0.88rem; color: var(--ll-blue); font-weight: 600; margin-bottom: 10px; }
.ll-person p { font-size: 0.93rem; }

.ll-articlemeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.ll-sidebar-card {
  position: sticky;
  top: 100px;
  padding: 26px;
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius);
  background: var(--ll-mist);
}
.ll-sidebar-card h3 { font-size: 1.05rem; }

/* -------------------------------------------------- 18. responsive ------ */
@media (max-width: 1080px) {
  .ll-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ll-steps--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ll-step + .ll-step::before { display: none; }
  .ll-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .ll-header__inner { min-height: 68px; }
  .ll-burger { display: inline-flex; }
  .ll-header__phone { display: none; }

  .ll-nav {
    position: fixed;
    inset: 68px 0 0;
    background: #fff;
    padding: 20px var(--ll-gutter) 40px;
    overflow-y: auto;
    display: none;
    border-top: 1px solid var(--ll-line);
  }
  .ll-nav.is-open { display: block; }
  .ll-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
  .ll-nav__link { justify-content: space-between; width: 100%; padding: 14px 12px; font-size: 1.05rem; }

  .ll-nav__panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 12px;
    background: transparent;
  }
  .ll-nav__item.is-open > .ll-nav__panel { display: block; }
  .ll-nav__panel-desc { display: none; }
  .ll-nav__panel--wide { min-width: 0; right: auto; }
  .ll-nav__cols { column-count: 1; }

  .ll-nav__cta { margin-top: 18px; display: grid; gap: 12px; }

  .ll-hero__grid,
  .ll-split,
  .ll-split--wide-left { grid-template-columns: minmax(0, 1fr); }
  .ll-hero__panel { order: -1; }

  .ll-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ll-sidebar-card { position: static; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .ll-grid--2,
  .ll-grid--3,
  .ll-grid--4,
  .ll-steps--4 { grid-template-columns: minmax(0, 1fr); }
  .ll-form__row { grid-template-columns: minmax(0, 1fr); }
  .ll-footer__grid { grid-template-columns: minmax(0, 1fr); }
  .ll-hero__actions .ll-btn,
  .ll-cta__actions .ll-btn { width: 100%; }
  .ll-hero__metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ll-footer__bar { flex-direction: column; align-items: flex-start; }
}
