/* ============================================================
   Lancephase, base element styles & helpers
   Light, opt-in resets. Components rely on tokens above.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

/* Crisp text everywhere, grayscale antialiasing + legibility rendering. */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.lp {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lp h1, .lp h2, .lp h3, .lp h4 {
  font-family: var(--font-heading);
  color: var(--text-strong);
  letter-spacing: var(--ls-heading);
  line-height: var(--lh-snug);
  margin: 0;
}

/* Desktop nav links stay on one line, long labels (esp. German) must not wrap
   into a squished two-line bar. The breakpoint hands off to the mobile menu
   before the row runs out of room. */
nav[data-desktop-nav="1"] a { white-space: nowrap; }

/* Links never carry a default browser underline or blue, the design signals
   them with colour, weight and arrow affordances. Applied globally because the
   <body> has no .lp class, so the old .lp-scoped rule never took effect (which
   let the default underline leak onto text inside link-wrapped cards). */
a { color: inherit; text-decoration: none; }

::selection { background: var(--lp-blue-300); color: var(--lp-ink); }

/* Brand utility: uppercase eyebrow */
.lp-eyebrow {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--color-accent);
}

/* Visible keyboard focus for form controls. The inputs carry an inline
   `outline:none`, so the indicator is drawn with box-shadow (inline styles
   can't override it), guaranteeing one consistent, on-brand focus ring on
   every page (contact, quote modal, booking, checkout). */
input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-accent) 42%, transparent);
  border-color: var(--color-accent);
}

/* Smooth ring/border feedback + a subtle hover state on every field.
   Hover uses an inset ring (not border-color) so it lands even when the
   field's border is set via an inline style the stylesheet can't override. */
input, textarea, select { transition: box-shadow 0.18s var(--ease-out), border-color 0.18s var(--ease-out); }
input:hover:not(:focus),
textarea:hover:not(:focus),
select:hover:not(:focus) {
  box-shadow: inset 0 0 0 1px var(--border-strong);
}

/* ============================================================
   Page transitions, subtle enter / exit + thin loading bar.
   Loaded render-blocking in <head>, so the enter state paints
   before the first frame (no flash). The enter is an unconditional
   CSS animation that settles fully visible, content is never gated
   on a JS class, so no-JS users and crawlers always see it.
   ============================================================ */
#lp-site {
  animation: lp-page-enter 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes lp-page-enter {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* Exit: applied by JS to <main> (chrome stays put) just before navigating. */
.lp-leaving {
  animation: lp-page-leave 0.2s cubic-bezier(0.4, 0, 1, 1) forwards !important;
}
@keyframes lp-page-leave {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateY(-8px); }
}

/* Thin cyan navigation progress bar. */
.lp-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--color-accent), var(--lp-blue-300));
  box-shadow: 0 0 10px rgba(18, 145, 249, 0.55);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}
.lp-progress.is-active { opacity: 1; }
.lp-progress.is-progress { transform: scaleX(0.9); }

@media (prefers-reduced-motion: reduce) {
  #lp-site { animation: none !important; }
  .lp-leaving { animation: none !important; }
  .lp-progress { display: none !important; }
}

/* ============================================================
   PREMIUM EDITORIAL SYSTEM (v2 overhaul)
   Confident type scale + generous rhythm + card-free patterns,
   built on the brand: Tactic Sans (→ Clash Display) display,
   Helvetica Now body, #1291F9 / #75C6FC / ink / white.
   Unscoped (the <body> has no .lp class) so it applies everywhere.
   ============================================================ */

/* --- Type scale --- */
.lp-display {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(2.5rem, 5.6vw, 4.75rem);   /* 40 → 76px */
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--text-strong);
  margin: 0;
  text-wrap: balance;
}
.lp-display-2 {                                 /* centered / secondary-page heroes */
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);     /* 34 → 58px */
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin: 0;
  text-wrap: balance;
}
.lp-h2 {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(1.9rem, 3.6vw, 3rem);       /* 30 → 48px */
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  margin: 0;
  text-wrap: balance;
}
.lp-h3 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);    /* 20 → 26px */
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  margin: 0;
}
.lp-lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.2rem);  /* 17 → 19px */
  line-height: 1.6;
  color: var(--text-body);
  margin: 0;
  max-width: 60ch;
  text-wrap: pretty;
}
.lp-accent { color: var(--color-accent); }

/* --- Section rhythm (airy = premium, density ~3) --- */
.lp-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) 24px;
}
.lp-section--tight { padding-block: clamp(56px, 6vw, 84px); }
.lp-band {                                     /* full-bleed tinted band */
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--surface-subtle);
}
.lp-band--dark { background: var(--lp-gradient-dark); border-color: transparent; }
.lp-measure { max-width: 60ch; }

/* --- Kicker: a single named label, used sparingly (not per section) --- */
.lp-kick {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: clamp(15px, 1.6vw, 18px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 14px;
}
.lp-kick::before {
  content: none;
  width: 22px;
  height: 1.5px;
  background: var(--color-accent);
  display: inline-block;
}

/* --- Card-free editorial feature rows (replaces same-size card grids) --- */
.lp-rows { display: flex; flex-direction: column; }
.lp-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
  padding: clamp(28px, 3.4vw, 44px) 0;
  border-top: 1px solid var(--border-subtle);
}
.lp-row:last-child { border-bottom: 1px solid var(--border-subtle); }
.lp-row__num {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  letter-spacing: -0.02em;
  color: var(--color-accent);
}
@media (max-width: 760px) {
  .lp-row { grid-template-columns: 1fr; gap: 14px; }
}

/* --- Editorial stat strip (numbers breathe, no boxes) --- */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(24px, 3vw, 48px);
}
.lp-stat__n {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  font-size: clamp(2.25rem, 4.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-strong);
}
.lp-stat__l { margin-top: 10px; font-size: 14.5px; color: var(--text-muted); }

/* --- Soft accent glow used behind hero / CTA --- */
.lp-aura {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(18,145,249,0.16), rgba(18,145,249,0) 68%);
}

/* --- Scroll-reveal stagger via --i (enhances an already-visible default) --- */
@keyframes lp-rise-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
[data-reveal][data-shown="1"] .lp-stagger {
  animation: lp-rise-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: calc(var(--i, 0) * 0.07s);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal][data-shown="1"] .lp-stagger { animation: none !important; }
}

/* ============================================================
   CTA COMMAND BAND — shared final-conversion section (all pages).
   Theme-aware: routed through the --band-* aliases so the band
   always matches the page body — a flat navy that reads as part
   of the page in dark mode, a gentle light tonal break in light
   mode. Never a stranded dark panel on a light page.
   ============================================================ */
.cta-band { position: relative; overflow: hidden; background: var(--band-bg); border-top: 1px solid var(--band-line); }
.cta-inner { position: relative; max-width: var(--container-max); margin: 0 auto; padding: clamp(56px,7vw,96px) 24px; }
.cta-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,5vw,72px); align-items: start; }
.cta-h { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px,4vw,46px); line-height: 1.04; letter-spacing: -.02em; color: var(--band-ink); margin: 0 0 16px; text-wrap: balance; }
.cta-sub { font-size: clamp(15px,1.6vw,17px); line-height: 1.6; color: var(--band-muted); margin: 0; max-width: 46ch; }
.cta-trust { list-style: none; margin: clamp(26px,3vw,34px) 0 0; padding: clamp(22px,2.5vw,28px) 0 0; border-top: 1px solid var(--band-line); display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.cta-trust li { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; line-height: 1.4; color: var(--band-body); }
.cta-tick { flex: none; width: 19px; height: 19px; margin-top: 1px; border-radius: 50%; background: rgba(18,145,249,.16); display: inline-flex; align-items: center; justify-content: center; }
.cta-tick::before { content: ""; width: 5px; height: 9px; border-right: 2px solid var(--band-eyebrow); border-bottom: 2px solid var(--band-eyebrow); transform: translateY(-1px) rotate(45deg); }
.cta-group { margin-bottom: 20px; }
.cta-group:first-child { margin-top: 0; }
.cta-glabel { font-family: var(--font-heading); font-weight: 600; font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--band-muted); margin: 0 0 11px; }
.cta-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.cta-chip { font-family: var(--font-heading); font-weight: 500; font-size: 13.5px; padding: 9px 15px; border-radius: 999px; border: 1px solid var(--band-line-2); background: var(--band-chip-bg); color: var(--band-body); cursor: pointer; transition: border-color .25s, background .25s, color .25s, transform .1s; }
.cta-chip:hover { border-color: var(--color-accent); color: var(--band-ink); }
.cta-chip[aria-pressed="true"] { border-color: var(--color-accent); background: var(--color-accent); color: #fff; }
.cta-chip:active { transform: translateY(1px); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cta-btn { font-family: var(--font-heading); font-weight: 600; font-size: 15.5px; padding: 14px 26px; border-radius: var(--radius-md); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: transform .18s var(--ease-out), box-shadow .25s, background .2s, border-color .2s; }
.cta-btn-primary { border: none; background: var(--color-accent); color: #fff; box-shadow: 0 8px 24px -8px rgba(18,145,249,.5); }
.cta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(18,145,249,.65); background: var(--color-accent-hover); }
.cta-btn-ghost { border: 1px solid var(--band-line-2); background: transparent; color: var(--band-ink); }
.cta-btn-ghost:hover { transform: translateY(-2px); border-color: var(--color-accent); background: var(--band-wash); }
.cta-nextwrap { margin-top: clamp(40px,5vw,60px); padding-top: clamp(30px,3.5vw,40px); border-top: 1px solid var(--band-line); }
.cta-nextlabel { font-family: var(--font-heading); font-weight: 600; font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--band-muted); margin: 0 0 20px; }
.cta-next { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.cta-step { position: relative; padding-right: 34px; }
.cta-step:last-child { padding-right: 0; }
.cta-step:not(:last-child)::after { content: ""; position: absolute; top: 15px; left: 52px; right: 15px; height: 1px; background: linear-gradient(90deg, var(--band-eyebrow), var(--band-line)); }
.cta-step-n { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--band-ring); color: var(--band-eyebrow); font-family: var(--font-display); font-weight: 600; font-size: 14px; margin-bottom: 14px; }
.cta-step-t { font-family: var(--font-heading); font-weight: 600; font-size: 14.5px; color: var(--band-ink); margin: 0; line-height: 1.4; }
@media (max-width: 900px) {
  .cta-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 620px) {
  .cta-trust { grid-template-columns: 1fr; }
  .cta-next { grid-template-columns: 1fr; gap: 22px; }
  .cta-step { padding-right: 0; }
  .cta-step:not(:last-child)::after { display: none; }
  .cta-actions .cta-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) { .cta-btn:hover, .cta-chip:active { transform: none; } }

/* ============================================================
   WEBSITES MEGA MENU — desktop header dropdown (all pages).
   Opens on hover or keyboard focus (:focus-within); the panel is
   a full-width sheet pinned under the 74px header. Pure CSS open
   state, so runtime re-renders (theme / language) can't close it
   mid-hover or leave stale state behind.
   ============================================================ */
.lp-mm { position: relative; height: 74px; display: inline-flex; align-items: center; }
.lp-mm-trigger {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-heading); font-weight: 500; font-size: 15px;
  text-decoration: none; white-space: nowrap;
  transition: color .2s var(--ease-out);
}
/* Inline template color carries the active-page state; hover/open wins. */
.lp-mm:hover .lp-mm-trigger, .lp-mm:focus-within .lp-mm-trigger { color: var(--color-accent) !important; }
.lp-mm-caret { flex: none; transition: transform .25s var(--ease-out); }
.lp-mm:hover .lp-mm-caret, .lp-mm:focus-within .lp-mm-caret { transform: rotate(180deg); }

.lp-mm-panel {
  position: fixed; left: 0; right: 0; top: 74px;
  visibility: hidden; opacity: 0; transform: translateY(-8px);
  pointer-events: none;
  z-index: 60;
  transition: opacity .18s var(--ease-out), transform .22s cubic-bezier(.22,1,.36,1), visibility 0s linear .2s;
}
.lp-mm:hover .lp-mm-panel, .lp-mm:focus-within .lp-mm-panel {
  visibility: visible; opacity: 1; transform: none; pointer-events: auto;
  transition: opacity .2s var(--ease-out) .06s, transform .28s cubic-bezier(.22,1,.36,1) .06s, visibility 0s linear .06s;
}
.lp-mm-sheet {
  background: var(--surface-page);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 32px 60px -28px rgba(11,18,32,.45);
}
.lp-mm-inner {
  max-width: var(--container-max); margin: 0 auto;
  padding: 24px 24px 28px;
  display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 34px;
}
.lp-mm-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 2px 14px 12px; margin-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}
.lp-mm-klabel {
  font-family: var(--font-heading); font-weight: 600; font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted);
}
.lp-mm-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  color: var(--color-accent); white-space: nowrap;
}
.lp-mm-all:hover { color: var(--color-accent-hover); }
.lp-mm-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 24px; }
.lp-mm-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 14px; border-radius: var(--radius-md);
  transition: background .16s var(--ease-out);
}
/* Let the text block shrink inside the flex row (min-width:auto would push
   long German descriptions into the neighbouring column), and re-enable
   wrapping: the nav-wide `nav[data-desktop-nav] a { white-space: nowrap }`
   rule must not apply to menu-item descriptions. */
.lp-mm-item > span:last-of-type { min-width: 0; }
nav[data-desktop-nav="1"] .lp-mm-item { white-space: normal; }
.lp-mm-item:hover { background: var(--surface-subtle); }
.lp-mm-ico {
  flex: none; width: 38px; height: 38px; border-radius: var(--radius-md);
  background: var(--color-accent-soft);
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-mm-ico img { width: 19px; height: 19px; display: block; }
.lp-mm-name { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 14.5px; line-height: 1.3; color: var(--text-strong); transition: color .16s var(--ease-out); }
.lp-mm-item:hover .lp-mm-name { color: var(--color-accent); }
.lp-mm-desc { display: block; margin-top: 3px; font-size: 12.5px; line-height: 1.45; color: var(--text-body); }
.lp-mm-aside { border-left: 1px solid var(--border-subtle); padding: 6px 0 4px 30px; align-self: start; }
.lp-mm-aside-t { font-family: var(--font-heading); font-weight: 600; font-size: 16.5px; color: var(--text-strong); margin: 0 0 8px; }
.lp-mm-aside-b { font-size: 13.5px; line-height: 1.55; color: var(--text-body); margin: 0 0 18px; }
.lp-mm-aside-btn {
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  padding: 11px 20px; border-radius: var(--radius-md); border: none;
  background: var(--color-accent); color: #fff; cursor: pointer;
  box-shadow: var(--shadow-accent);
  transition: background .2s, transform .15s var(--ease-out);
}
.lp-mm-aside-btn:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
.lp-mm-aside-link { display: inline-block; margin-top: 13px; font-family: var(--font-heading); font-weight: 600; font-size: 13px; color: var(--text-link); }
.lp-mm-aside-link:hover { color: var(--color-accent); }

/* ============================================================
   FOOTER — brand + four link columns (Websites / Software /
   Talent / Company). Own breakpoints: 5 cols → 2 cols → 1 col,
   independent of the JS isMobile flag.
   ============================================================ */
.lp-foot {
  max-width: 1440px; margin: 0 auto;
  padding: clamp(64px, 7vw, 92px) 24px 44px;
  display: grid;
  grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
  gap: clamp(32px, 3.5vw, 48px);
}
.lp-foot-brand { max-width: 340px; }
.lp-foot-h {
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; color: #fff;
  margin: 0 0 16px;
}
.lp-foot-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.lp-foot-list a { font-size: 14px; line-height: 1.4; color: var(--text-on-dark-muted); text-decoration: none; transition: color .2s; }
.lp-foot-list a:hover { color: #fff; }
.lp-foot-all { font-family: var(--font-heading); font-weight: 600; color: var(--lp-blue-300) !important; }
.lp-foot-all:hover { color: #fff !important; }
@media (max-width: 1100px) {
  .lp-foot { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-foot-brand { grid-column: 1 / -1; max-width: 440px; }
}
@media (max-width: 560px) { .lp-foot { grid-template-columns: 1fr; } }
/* Footer bottom bar: legal links + social icons */
.lp-foot-bottom { border-top: 1px solid rgba(255,255,255,.1); }
.lp-foot-bottom-inner {
  max-width: 1440px; margin: 0 auto; padding: 22px 24px;
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  justify-content: space-between; align-items: center;
}
.lp-foot-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; font-size: 13px; color: var(--text-on-dark-muted); }
.lp-foot-legal a { color: inherit; text-decoration: none; transition: color .2s; }
.lp-foot-legal a:hover { color: #fff; }
.lp-foot-dot { opacity: .4; }
.lp-foot-social { display: inline-flex; align-items: center; gap: 8px; }
.lp-foot-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius-md);
  color: var(--text-on-dark-muted);
  border: 1px solid rgba(255,255,255,.1);
  transition: color .2s, background .2s, border-color .2s, transform .12s var(--ease-out);
}
.lp-foot-social a:hover {
  color: #fff; background: var(--color-accent);
  border-color: var(--color-accent); transform: translateY(-2px);
}
.lp-foot-social a:focus-visible { outline: 2px solid var(--color-accent-2); outline-offset: 2px; }
.lp-foot-social svg { width: 18px; height: 18px; display: block; }
@media (max-width: 620px) {
  .lp-foot-bottom-inner { justify-content: center; text-align: center; }
  .lp-foot-legal { justify-content: center; }
}

/* Mobile menu: the Websites group expands into the service links. */
.lp-mmb { border-bottom: 1px solid var(--border-subtle); }
.lp-mmb summary {
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 4px; cursor: pointer;
  font-family: var(--font-heading); font-weight: 500; font-size: 17px;
}
.lp-mmb summary::-webkit-details-marker { display: none; }
.lp-mmb-caret { flex: none; color: var(--text-muted); transition: transform .25s var(--ease-out); }
.lp-mmb[open] .lp-mmb-caret { transform: rotate(180deg); }
.lp-mmb-list { display: flex; flex-direction: column; padding: 2px 0 14px; }
.lp-mmb-list a {
  display: flex; align-items: center; gap: 11px;
  margin-left: 4px; padding: 9px 4px 9px 14px;
  border-left: 1px solid var(--border-subtle);
  font-family: var(--font-heading); font-weight: 500; font-size: 15px;
  color: var(--text-body); text-decoration: none;
}
.lp-mmb-list a:hover { color: var(--color-accent); }
.lp-mmb-ico {
  flex: none; width: 26px; height: 26px; border-radius: var(--radius-sm);
  background: var(--color-accent-soft);
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-mmb-ico img { width: 14px; height: 14px; display: block; }
.lp-mmb-all { color: var(--color-accent) !important; font-weight: 600 !important; }

@media (prefers-reduced-motion: reduce) {
  .lp-mm-panel { transition: none; transform: none; }
  .lp-mm-caret, .lp-mmb-caret, .lp-mm-aside-btn:hover { transition: none; transform: none; }
}

/* ============================================================
   WHY PERSUASION BAND — shared by the three service detail
   templates (service / devservice / talentservice). Four
   movements: claim, cost of doing nothing, gains, vs-table +
   risk reversal. Colors run exclusively through the --band-*
   aliases so the band works on the dark navy gradient (dark
   theme) and the light tonal break (light theme) alike.
   ============================================================ */
.why-claim {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem); line-height: 1.05;
  letter-spacing: -0.02em; color: var(--band-ink);
  margin: 0; max-width: 24ch; text-wrap: balance;
}
.why-sub {
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(18px, 2vw, 21px); line-height: 1.3; letter-spacing: -0.01em;
  color: var(--band-ink); margin: 0 0 4px;
}

/* Movement B — editorial hairline rows, cost figure on the right */
.why-costs { margin-top: clamp(44px, 6vw, 68px); max-width: 880px; }
.why-cost {
  display: grid; grid-template-columns: 1.2fr auto;
  gap: 8px clamp(28px, 4vw, 56px); align-items: baseline;
  padding: 19px 0; border-top: 1px solid var(--band-line);
}
.why-cost:first-of-type { margin-top: 16px; }
.why-cost > div { min-width: 0; }
.why-cost-p { font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: var(--band-ink); margin: 0 0 6px; }
.why-cost-d { font-size: 14.5px; line-height: 1.6; color: var(--band-muted); margin: 0; max-width: 54ch; }
.why-cost-n {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.3rem, 2.3vw, 1.75rem); line-height: 1.1;
  letter-spacing: -0.02em; color: var(--band-eyebrow);
  white-space: nowrap; text-align: right;
}

/* Movement C — 2×2 hairline grid of buyer gains */
.why-gains-wrap { margin-top: clamp(48px, 6vw, 72px); }
.why-gains {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 34px) clamp(32px, 4.5vw, 72px);
  margin-top: 16px;
}
.why-gain { border-top: 1px solid var(--band-line); padding-top: 18px; min-width: 0; }
.why-gain-n {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.65rem, 2.6vw, 2.15rem); line-height: 1;
  letter-spacing: -0.02em; color: var(--band-eyebrow); margin: 2px 0 10px;
}
.why-gain-t { font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: var(--band-ink); margin: 0 0 7px; }
.why-gain-b { font-size: 14.5px; line-height: 1.6; color: var(--band-body); margin: 0; max-width: 46ch; }

/* Movement D — comparison table (home "Built different" identity) + risk reversal */
.why-vs { max-width: 880px; margin: clamp(56px, 7vw, 84px) auto 0; }
.why-sub--center { text-align: center; margin-bottom: 22px; }
.why-table {
  background: var(--band-chip-bg); border: 1px solid var(--band-line-2);
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md);
}
.why-tr { display: grid; grid-template-columns: 1.15fr 1fr 1fr; border-top: 1px solid var(--band-line); }
.why-tr--head { border-top: none; background: var(--band-wash); }
.why-td {
  padding: 15px clamp(10px, 2vw, 20px); min-width: 0;
  display: flex; align-items: center; gap: clamp(7px, 1vw, 10px);
  font-size: clamp(12.5px, 1.4vw, 13.5px); line-height: 1.45;
  color: var(--band-body); overflow-wrap: break-word; hyphens: auto;
}
.why-td + .why-td { border-left: 1px solid var(--band-line); }
.why-td--label { font-family: var(--font-heading); font-weight: 600; font-size: clamp(12.5px, 1.5vw, 14.5px); color: var(--band-ink); }
.why-th { font-family: var(--font-heading); font-weight: 600; font-size: clamp(12.5px, 1.5vw, 14.5px); color: var(--band-ink); min-width: 0; }
.why-th--muted { font-weight: 500; color: var(--band-muted); }
.why-yes { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(18,145,249,.16); display: inline-flex; align-items: center; justify-content: center; }
.why-yes img { width: 12px; height: 12px; display: block; }
.why-no {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--band-wash); border: 1px solid var(--band-line);
  color: var(--band-muted); display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; line-height: 1;
}
.why-cell { min-width: 0; }
.why-cell--muted { color: var(--band-muted); }

/* Risk-reversal chips + CTAs under the table */
.why-assure { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: clamp(24px, 3vw, 32px); }
.why-chip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-heading); font-weight: 500; font-size: 13.5px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--band-line-2); background: var(--band-chip-bg); color: var(--band-body);
}
.why-tick { flex: none; width: 15px; height: 15px; border-radius: 50%; background: rgba(18,145,249,.16); display: inline-flex; align-items: center; justify-content: center; }
.why-tick::before { content: ""; width: 4px; height: 7px; border-right: 1.5px solid var(--band-eyebrow); border-bottom: 1.5px solid var(--band-eyebrow); transform: translateY(-1px) rotate(45deg); }
.why-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; margin-top: clamp(26px, 3.5vw, 36px); }
.why-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-heading); font-weight: 600; font-size: 15.5px;
  padding: 14px 26px; border-radius: var(--radius-md);
  cursor: pointer; text-decoration: none;
  transition: transform .12s var(--ease-out), background .2s, border-color .2s, color .2s;
}
.why-btn--primary { border: 1.5px solid transparent; background: var(--color-accent); color: #fff; box-shadow: var(--shadow-accent); }
.why-btn--primary:hover { transform: translateY(-1px); background: var(--color-accent-hover); }
.why-btn--ghost { border: 1.5px solid var(--band-line-2); background: transparent; color: var(--band-ink); }
.why-btn--ghost:hover { transform: translateY(-1px); border-color: var(--color-accent); background: var(--band-wash); }

@media (max-width: 700px) {
  .why-cost { grid-template-columns: 1fr; gap: 4px; }
  .why-cost-n { text-align: left; white-space: normal; margin-top: 8px; }
  .why-gains { grid-template-columns: 1fr; }
  .why-ctas .why-btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .why-btn, .why-btn:hover { transition: none; transform: none; }
}

