/* EMPOR Kältetechnik — Light/Blue Design System v2 */

:root {
  /* Blues */
  --blue-50:  #F4F8FB;
  --blue-100: #E6F0F9;
  --blue-150: #D6E6F4;
  --blue-200: #C2DAEE;
  --blue-300: #8FBCE0;
  --blue-400: #4D8FD9;
  --blue-500: #1B6BD0;   /* Primary action */
  --blue-600: #0D52B3;
  --blue-700: #0A3F8C;
  --blue-800: #0B2F66;
  --blue-900: #0B1A33;   /* Deep navy text */

  /* Neutrals */
  --white: #FFFFFF;
  --ink: #0B1A33;
  --ink-2: #1C2A45;
  --ink-3: #4B5566;
  --ink-4: #7A8497;
  --ink-5: #AEB6C4;
  --line: #E1E7EE;
  --line-soft: #EEF2F7;
  --bg-tint: #F7FAFD;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(11,26,51,0.04), 0 1px 1px rgba(11,26,51,0.02);
  --shadow-md: 0 2px 6px rgba(11,26,51,0.05), 0 8px 24px rgba(11,26,51,0.06);
  --shadow-lg: 0 12px 32px rgba(11,26,51,0.08), 0 4px 12px rgba(11,26,51,0.04);
  --shadow-blue: 0 6px 24px rgba(27,107,208,0.18);

  --grad-ice: linear-gradient(180deg, #E6F0F9 0%, #F7FAFD 100%);
  --grad-hero: radial-gradient(900px 600px at 85% 0%, #C2DAEE 0%, rgba(194,218,238,0) 60%),
               radial-gradient(700px 500px at 0% 100%, #E6F0F9 0%, rgba(230,240,249,0) 55%),
               linear-gradient(180deg, #F7FAFD 0%, #FFFFFF 70%);
  --grad-blue: linear-gradient(135deg, #1B6BD0 0%, #0A3F8C 100%);
  --grad-soft-blue: linear-gradient(135deg, #4D8FD9 0%, #1B6BD0 100%);
  --grad-frost: linear-gradient(135deg, #F4F8FB 0%, #E6F0F9 50%, #D6E6F4 100%);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --maxw: 1320px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--white);
  color: var(--ink);
  font-family: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--blue-200); color: var(--blue-900); }

/* ---------- Typographic Scale ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--blue-500); display: inline-block;
}
.eyebrow.no-bar::before { display: none; }
.eyebrow.muted { color: var(--ink-3); }
.eyebrow.muted::before { background: var(--ink-4); }

.display-xl {
  font-weight: 600;
  font-size: clamp(48px, 6.8vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: var(--ink);
}
.display-l {
  font-weight: 600;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.025em;
  text-wrap: balance;
  color: var(--ink);
}
.display-m {
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.display-s {
  font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.lede {
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 58ch;
  font-weight: 400;
  text-wrap: pretty;
}
.gradient-text {
  background: linear-gradient(135deg, #1B6BD0 0%, #4D8FD9 60%, #8FBCE0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.section { padding-top: clamp(80px, 9vw, 140px); padding-bottom: clamp(80px, 9vw, 140px); }
.section-tight { padding-top: clamp(56px, 6vw, 88px); padding-bottom: clamp(56px, 6vw, 88px); }
.bg-tint { background: var(--bg-tint); }
.bg-ice { background: var(--grad-ice); }
.bg-frost { background: var(--grad-frost); }
.bg-deep { background: var(--ink); color: var(--white); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 19px; letter-spacing: -0.02em;
  color: var(--ink);
}
.logo .mark {
  width: 30px; height: 30px;
  border-radius: 8px;  background: var(--grad-soft-blue);
  position: relative;
  box-shadow: var(--shadow-blue);
  overflow: hidden;
}
.logo .mark::before {
  content: ""; position: absolute; inset: 6px;
  background: white;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2v20M2 12h20M5 5l14 14M19 5L5 19' stroke='black' stroke-width='1.5' fill='none'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2v20M2 12h20M5 5l14 14M19 5L5 19' stroke='black' stroke-width='1.5' fill='none'/></svg>") no-repeat center / contain;
}
.logo .brand-logo {
  height: 34px; width: auto; display: block;
}
.logo small {
  font-size: 11px; font-weight: 500; color: var(--ink-3);
  letter-spacing: 0.16em; text-transform: uppercase;
  padding-left: 8px;
  border-left: 1px solid var(--line);
  line-height: 1;
}
.nav-links {
  list-style: none;
  display: flex; gap: 4px;
  align-items: center;
}
.nav-links a {
  font-size: 14.5px; font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--blue-50); color: var(--blue-600); }
.nav-links a.active { color: var(--blue-600); background: var(--blue-50); }
.nav-cta { display: flex; gap: 8px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  background: var(--blue-500);
  color: var(--white);
  border: 1px solid var(--blue-500);
  transition: all .2s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-blue);
}
.btn:hover { background: var(--blue-600); border-color: var(--blue-600); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(27,107,208,0.28); }
.btn .arrow {
  display: inline-block; width: 14px; height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 11L11 3M11 3H4.5M11 3V9.5' stroke='black' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 11L11 3M11 3H4.5M11 3V9.5' stroke='black' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat center / contain;
  transition: transform .25s;
}
.btn:hover .arrow { transform: translate(2px, -2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--white); border-color: var(--blue-300); color: var(--blue-600); box-shadow: var(--shadow-sm); }

.btn-soft {
  background: var(--blue-100);
  color: var(--blue-700);
  border-color: var(--blue-100);
  box-shadow: none;
}
.btn-soft:hover { background: var(--blue-150); border-color: var(--blue-150); color: var(--blue-800); box-shadow: none; }

.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue-600);
  font-weight: 500; font-size: 15px;
  padding: 6px 0;
}
.btn-link:hover { color: var(--blue-700); }
.btn-link .arrow { width: 14px; height: 14px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7H11M11 7L7 3M11 7L7 11' stroke='black' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7H11M11 7L7 3M11 7L7 11' stroke='black' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") no-repeat center / contain;
}
.btn-link:hover .arrow { transform: translateX(3px); }
.btn-link .arrow { transition: transform .25s; }

.btn-dark { background: var(--ink); border-color: var(--ink); color: var(--white); box-shadow: var(--shadow-md); }
.btn-dark:hover { background: var(--blue-800); border-color: var(--blue-800); }

.bg-deep .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.25); }
.bg-deep .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ---------- Section header pattern ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  padding-bottom: clamp(40px, 5vw, 64px);
}
.section-head > div:first-child { display: flex; flex-direction: column; gap: 18px; }
.section-head > div:last-child { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.section-head h2 { color: var(--ink); }

/* ---------- Placeholder imagery ---------- */
.ph {
  position: relative;
  background: var(--grad-frost);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 16px 20px;
  color: var(--blue-700);
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid var(--blue-150);
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 24px, rgba(27,107,208,0.05) 24px 25px);
}
.ph::after {
  content: ""; position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.95) 0%, rgba(194,218,238,0.7) 50%, rgba(143,188,224,0.4) 100%);
  box-shadow: 0 0 24px rgba(143,188,224,0.4);
}
.ph .label { position: relative; z-index: 2; }
.ph .dim { position: relative; z-index: 2; opacity: 0.6; font-weight: 400; }
.ph.ph-deep { background: linear-gradient(135deg, #0A3F8C 0%, #0B1A33 100%); border-color: var(--blue-800); color: var(--blue-200); }
.ph.ph-deep::before { background-image: repeating-linear-gradient(135deg, transparent 0 28px, rgba(143,188,224,0.05) 28px 29px); }
.ph.ph-deep::after { background: radial-gradient(circle at 30% 30%, rgba(143,188,224,0.6) 0%, rgba(77,143,217,0.3) 60%, rgba(13,82,179,0) 100%); }
.ph.ph-soft { background: linear-gradient(135deg, var(--white) 0%, var(--blue-50) 100%); }
.ph.no-decor::after { display: none; }
.ph.no-decor::before { display: none; }

/* ---------- Card primitive ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.card .num {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-500);
}

/* ---------- Hero block (shared) ---------- */
.page-hero {
  position: relative;
  background: var(--grad-hero);
  overflow: hidden;
  padding-top: clamp(60px, 8vw, 96px);
  padding-bottom: clamp(60px, 8vw, 96px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.6) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { margin-top: 16px; }
.page-hero .lede { margin-top: 24px; }

/* Decorative shapes for hero */
.shape-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
}
.shape-circle.a { width: 380px; height: 380px; right: -80px; top: -80px;
  background: radial-gradient(circle, var(--blue-200) 0%, transparent 70%); opacity: 0.7; }
.shape-circle.b { width: 280px; height: 280px; left: -60px; bottom: -60px;
  background: radial-gradient(circle, var(--blue-100) 0%, transparent 70%); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px var(--pad) 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,143,217,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 32ch; }
.footer-brand .logo { color: var(--white); }
.footer-brand .logo .brand-logo { border-radius: 6px; }
.footer-brand .logo small { color: rgba(255,255,255,0.55); border-left-color: rgba(255,255,255,0.18); }
.footer-brand p { font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.55; }
.footer h4 {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  transition: color .2s;
}
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  color: rgba(255,255,255,0.5); font-size: 13px;
}
.footer-bottom .legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom .legal a:hover { color: var(--white); }

/* ---------- CTA Band (reusable) ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--grad-blue);
  color: var(--white);
  padding: clamp(40px, 5vw, 72px);
  display: grid; grid-template-columns: 1.6fr 1fr;
  align-items: center; gap: 40px;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute;
  right: -100px; top: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band::after {
  content: ""; position: absolute;
  left: -120px; bottom: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,188,224,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(30px, 3vw, 48px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; color: var(--white); text-wrap: balance; }
.cta-band p { margin-top: 16px; font-size: 17px; color: rgba(255,255,255,0.85); max-width: 50ch; }
.cta-band .actions { display: flex; flex-direction: column; gap: 12px; }
.cta-band .btn { background: var(--white); color: var(--blue-700); border-color: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.18); justify-content: center; }
.cta-band .btn:hover { background: var(--blue-50); border-color: var(--blue-50); color: var(--blue-800); }
.cta-band .btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); box-shadow: none; justify-content: center; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); color: var(--white); }

/* ---------- Service tiles ---------- */
.service-tile {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 32px;
  display: flex; flex-direction: column;
  min-height: 260px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}
.service-tile .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-100);
  display: grid; place-items: center;
  color: var(--blue-600);
  margin-bottom: 24px;
  transition: background .25s, color .25s;
}
.service-tile:hover .icon { background: var(--blue-500); color: var(--white); }
.service-tile .icon svg { width: 24px; height: 24px; }
.service-tile h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
.service-tile p { font-size: 14.5px; color: var(--ink-3); margin-top: 8px; line-height: 1.55; }
.service-tile .tags {
  margin-top: auto; padding-top: 20px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.service-tile .tag {
  font-size: 11px; font-weight: 500;
  padding: 4px 10px;
  background: var(--blue-50);
  color: var(--blue-700);
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Reference card ---------- */
.ref-card {
  position: relative;
  display: flex; flex-direction: column;
  cursor: pointer;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.ref-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.ref-card .ph {
  border-radius: 0; border: 0; border-bottom: 1px solid var(--blue-150);
  aspect-ratio: 4 / 3;
}
.ref-card.feature .ph { aspect-ratio: 16 / 9; }
.ref-card .body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.ref-card .meta {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-3);
}
.ref-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.2; }
.ref-card.feature h3 { font-size: 28px; }
.ref-card p { font-size: 14.5px; color: var(--ink-3); line-height: 1.5; }
.ref-card .tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ref-card .tag {
  font-size: 11px; font-weight: 500;
  padding: 4px 10px;
  background: var(--blue-50); color: var(--blue-700);
  border-radius: 999px;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ---------- Filter chips ---------- */
.chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chip {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  background: var(--white);
  color: var(--ink-2);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.chip:hover { border-color: var(--blue-300); color: var(--blue-600); }
.chip.active { background: var(--blue-500); border-color: var(--blue-500); color: var(--white); }
.chip .ct {
  font-size: 12px; color: var(--ink-4);
  background: var(--bg-tint);
  padding: 2px 8px; border-radius: 999px;
}
.chip.active .ct { background: rgba(255,255,255,0.2); color: var(--white); }

/* ---------- Stat band ---------- */
.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.stat .n {
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 600; letter-spacing: -0.025em;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.stat .n .sup { font-size: 18px; vertical-align: top; margin-left: 4px; color: var(--blue-400); -webkit-text-fill-color: var(--blue-400); }
.stat .l { margin-top: 14px; font-size: 14px; color: var(--ink-3); font-weight: 500; }

.bg-deep .stat { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.bg-deep .stat .l { color: rgba(255,255,255,0.7); }

/* ---------- Process / Steps ---------- */
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: ""; position: absolute;
  top: 28px; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-400), var(--blue-200));
  z-index: 0;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 1;
  transition: transform .25s, box-shadow .25s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step .num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-soft-blue);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-blue);
  margin-top: -54px;
  margin-left: 0;
  border: 4px solid var(--white);
  box-sizing: content-box;
  width: 36px; height: 36px;
}
.step h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin-top: 6px; }
.step p { font-size: 14px; color: var(--ink-3); line-height: 1.5; }
.step .dur {
  margin-top: auto; padding-top: 16px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-500);
}

/* ---------- Testimonial card ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 36px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.testimonial:hover { box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.testimonial .mark {
  font-size: 56px; line-height: 0.8;
  color: var(--blue-300);
  font-weight: 700;
}
.testimonial blockquote {
  font-size: 19px; line-height: 1.45;
  color: var(--ink); font-weight: 500;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.testimonial .attr {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial .attr .ph { aspect-ratio: 1; border-radius: 50%; width: 56px; height: 56px; padding: 0; }
.testimonial .attr .ph::after, .testimonial .attr .ph::before { display: none; }
.testimonial .attr .name { font-weight: 600; font-size: 15px; }
.testimonial .attr .role { font-size: 12.5px; color: var(--ink-3); font-weight: 500; letter-spacing: 0.04em; }
.testimonial .ref-link {
  font-size: 13px; font-weight: 600;
  color: var(--blue-600);
  display: inline-flex; gap: 6px; align-items: center;
  margin-top: -10px;
}

/* ---------- Job row ---------- */
.job-list { display: flex; flex-direction: column; gap: 12px; }
.job {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.job:hover { border-color: var(--blue-300); box-shadow: var(--shadow-md); transform: translateX(4px); }
.job .t { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.job .meta { font-size: 13.5px; color: var(--ink-3); display: inline-flex; align-items: center; gap: 8px; }
.job .meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-400); }
.job .arrow-cell { font-size: 13px; font-weight: 600; color: var(--blue-600); display: inline-flex; gap: 6px; align-items: center; }

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: span 2; }
.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 14px;
  font: inherit; font-size: 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 4px rgba(27,107,208,0.12);
  background: var(--white);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field-submit { grid-column: span 2; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; padding-top: 8px; }
.field-note { font-size: 13px; color: var(--ink-3); }

/* ---------- Trust strip ---------- */
.trust-strip {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; align-items: center; gap: clamp(28px, 5vw, 64px);
  padding: 28px var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.trust-strip .lbl {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); white-space: nowrap;
}
.trust-strip .logos {
  display: flex; flex: 1; align-items: center; gap: clamp(40px, 6vw, 96px); flex-wrap: wrap;
}
.trust-strip .logo-ph {
  font-size: 15px; font-weight: 700;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity .2s, color .2s;
}
.trust-strip .logo-ph:hover { opacity: 1; color: var(--blue-600); }
.trust-strip .logo-img {
  height: 46px; width: auto; max-width: 140px;
  object-fit: contain; display: block;
}

/* ---------- Page footer (CTA pre-footer) wrapper ---------- */
.pre-footer { padding: 0 var(--pad) clamp(80px, 9vw, 120px); }
.pre-footer .container { padding-left: 0; padding-right: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .section-head { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .step .num { margin-top: -50px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .cta-band { grid-template-columns: 1fr; }
  .job { grid-template-columns: 1fr; gap: 8px; padding: 20px 24px; }
  .job .arrow-cell { display: none; }
}
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .field.full, .field-submit { grid-column: span 1; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .display-xl { font-size: clamp(40px, 9vw, 64px); }
}
