:root {
  font-synthesis: none;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #db070f;
  --color-primary-dark: #a8060b;
  --color-primary-soft: #fce8e8;
  --color-secondary: #29235b;
  --color-secondary-dark: #29235b;
  --color-ink: #111112;
  --color-ink-soft: #27272a;
  --color-muted: #686b73;
  --color-line: #e6e3dd;
  --color-paper: #fffdfa;
  --color-paper-alt: #f7f5ef;
  --color-dark: #111112;
  --color-dark-2: #1b1b1f;
  --color-white: #fffdfa;
  --shadow-sm: 0 2px 10px rgba(17, 17, 18, 0.06);
  --shadow-md: 0 16px 44px rgba(17, 17, 18, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1240px;
  --container-wide: 1480px;
  --container-pad: clamp(20px, 4vw, 40px);
  --section: clamp(68px, 9vw, 120px);
  --type-h1: clamp(2.5rem, 4.5vw, 4.5rem);
  --type-h2: clamp(2rem, 3vw, 3rem);
  --type-h3: clamp(1.2rem, 2vw, 1.55rem);
  --font-heading: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); color: var(--color-ink); background: var(--color-paper); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.skip-link { position: absolute; left: -999px; top: 10px; z-index: 1000; background: var(--color-primary); color: var(--color-white); padding: 10px 14px; border-radius: var(--radius-sm); }
.skip-link:focus { left: 10px; }
.container { max-width: var(--container); margin: 0 auto; padding-inline: var(--container-pad); }
.container-narrow { max-width: 860px; }
.hh-icon { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 2.35; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }

h1, h2, h3, h4 { color: var(--color-ink); font-family: var(--font-heading); line-height: 1.08; letter-spacing: 0; margin: 0; }
h1 { font-size: var(--type-h1); }
h2 { font-size: var(--type-h2); }
h3 { font-size: var(--type-h3); }
p { margin: 0; max-width: 70ch; }
section { padding-block: var(--section); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 14px 24px; border-radius: 999px; border: 1px solid transparent; font-weight: 800; line-height: 1; transition: transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .header__burger:focus-visible, .faq__question:focus-visible { outline: 3px solid rgba(219, 7, 15, .28); outline-offset: 3px; }
.btn--primary { background: var(--color-primary); color: var(--color-white); box-shadow: 0 12px 34px rgba(219, 7, 15, .25); }
.btn--primary:hover { background: var(--color-primary-dark); }
.btn--outline { background: transparent; color: var(--color-ink); border-color: var(--color-ink); }
.btn--outline:hover { background: var(--color-ink); color: var(--color-white); }
.btn--lg { min-height: 58px; padding: 18px 30px; }
.btn--sm { min-height: 42px; padding: 12px 18px; font-size: .94rem; }
.btn__arrow { transition: transform .22s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.header { --header-height: 82px; position: sticky; top: 0; z-index: 100; background: rgba(255, 253, 250, .94); border-bottom: 1px solid var(--color-line); backdrop-filter: blur(12px); }
.header > .container { max-width: var(--container-wide); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(28px, 4vw, 56px); min-height: 82px; }
.header__logo, .footer__logo { display: inline-flex; align-items: center; }
.header__logo img, .footer__logo img { display: block; width: auto; object-fit: contain; }
.header__logo img { height: 58px; }
.header__nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.header__nav-item { display: flex; align-items: center; }
.header__nav-link { display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; font-size: .95rem; font-weight: 650; color: var(--color-ink-soft); }
.header__nav-link:hover, .header__nav-link.is-active { color: var(--color-primary); }
.header__nav-caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .22s ease; }
.header__nav-trigger[aria-expanded="true"] .header__nav-caret { transform: rotate(225deg) translateY(-1px); }
.header__nav-cta { display: none; }
.header__actions { display: flex; align-items: center; gap: 14px; }
.header__burger { display: none; width: 42px; height: 42px; border: 1px solid var(--color-line); border-radius: 999px; background: var(--color-paper); }
.header__burger span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--color-ink); transition: transform .22s ease, opacity .22s ease; }
.is-nav-open .header__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.is-nav-open .header__burger span:nth-child(2) { opacity: 0; }
.is-nav-open .header__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mega-panel[hidden] { display: none; }
.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 44px 0 48px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-paper);
  box-shadow: 0 24px 70px rgba(17, 17, 18, .12);
}
.mega-panel__inner { width: min(calc(100vw - (var(--container-pad) * 2)), var(--container)); margin: 0 auto; }
.mega-panel__eyebrow { display: block; margin-bottom: 22px; color: var(--color-muted); font-size: .75rem; font-weight: 900; letter-spacing: .22em; text-transform: uppercase; }
.mega-panel__toplink { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin: -6px 0 26px; padding: 18px 0; border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); color: var(--color-ink); transition: color .22s ease; }
.mega-panel__toplink span { display: grid; gap: 4px; }
.mega-panel__toplink strong { font-size: 1.1rem; font-weight: 900; line-height: 1.15; }
.mega-panel__toplink em { color: var(--color-muted); font-size: .92rem; font-style: normal; font-weight: 650; }
.mega-panel__toplink .hh-icon { color: var(--color-primary); transition: transform .22s ease; }
.mega-panel__toplink:hover { color: var(--color-primary); }
.mega-panel__toplink:hover .hh-icon { transform: translateX(4px); }
.mega-panel__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.mega-card { display: flex; flex-direction: column; gap: 11px; color: var(--color-ink); transition: transform .22s ease; }
.mega-card:hover { transform: translateY(-3px); }
.mega-card__image { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border-radius: 8px; background-color: var(--color-paper-alt); background-size: cover; background-position: center; filter: saturate(.92); transition: filter .22s ease, box-shadow .22s ease; }
.mega-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(17, 17, 18, .32)); opacity: .55; transition: opacity .22s ease; }
.mega-card:hover .mega-card__image { filter: saturate(1.08); box-shadow: var(--shadow-sm); }
.mega-card:hover .mega-card__image::after { opacity: .36; }
.mega-card__title { color: var(--color-ink); font-size: 1.15rem; font-weight: 900; line-height: 1.12; letter-spacing: 0; }
.mega-card__sub { color: var(--color-muted); font-size: .9rem; font-weight: 650; line-height: 1.35; }

.hero { padding-block: clamp(72px, 8vw, 112px); background: linear-gradient(180deg, #fbf8f2 0%, var(--color-paper) 100%); overflow: hidden; }
.hero > .container { max-width: var(--container-wide); }
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, 1.08fr); gap: clamp(46px, 5.5vw, 88px); align-items: center; }
.hero__eyebrow, .sec-header__eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--color-primary); font-weight: 850; font-size: .82rem; letter-spacing: .11em; text-transform: uppercase; }
.hero__eyebrow { color: var(--color-ink); background: var(--color-white); border: 1px solid var(--color-line); border-radius: 999px; padding: 10px 16px; box-shadow: var(--shadow-sm); letter-spacing: 0; text-transform: none; }
.hero__eyebrow-dot { width: 8px; height: 8px; border-radius: 999px; background: #16a34a; box-shadow: 0 0 0 6px rgba(22, 163, 74, .12); }
.hero__title { margin-bottom: 24px; }
.hero__title-accent { color: var(--color-primary); }
.hero__lead { font-size: clamp(1.08rem, 1.5vw, 1.25rem); color: var(--color-muted); margin-bottom: 34px; max-width: 620px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px 28px; padding-top: 28px; border-top: 1px solid var(--color-line); }
.hero__trust-item { display: inline-flex; align-items: center; gap: 9px; color: var(--color-muted); font-size: .95rem; }
.hero__trust-item .hh-icon { color: var(--color-primary); }
.hero__trust-item strong { color: var(--color-ink); }
.hero__visual { position: relative; min-height: 540px; border-radius: 24px; overflow: hidden; box-shadow: 0 22px 64px rgba(17, 17, 18, .16); background: var(--color-dark); }
.hero__visual img { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.hero__badge { position: absolute; left: 22px; right: auto; bottom: 22px; display: flex; width: max-content; max-width: calc(100% - 44px); align-items: center; justify-content: flex-start; gap: 14px; padding: 18px; background: rgba(17, 17, 18, .9); color: var(--color-white); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; }
.hero__badge-content { display: flex; align-items: center; gap: 13px; }
.hero__badge-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; background: var(--color-primary); }
.hero__badge-text { display: grid; gap: 2px; }
.hero__badge-title { font-weight: 850; }
.hero__badge-sub { color: rgba(255,253,250,.72); font-size: .88rem; }

.emergency { padding-block: 18px; background: var(--color-dark); color: var(--color-white); border-top: 3px solid var(--color-primary); }
.emergency__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.emergency__content { display: flex; align-items: center; gap: 14px; }
.emergency__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 999px; background: var(--color-primary); }
.emergency__text { font-weight: 700; }
.emergency__text strong { color: #ff7378; }
.emergency__cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; background: var(--color-primary); color: var(--color-white); font-weight: 850; white-space: nowrap; }

.sec-header { max-width: var(--container); margin: 0 0 54px; text-align: left; }
.sec-header__title { margin-bottom: 16px; }
.sec-header__lead { margin-inline: 0; color: var(--color-muted); font-size: clamp(1.04rem, 1.3vw, 1.18rem); }
.process, .usecases { background: var(--color-paper-alt); }
.process__grid, .usecases__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.process__step, .usecase, .team__card, .why__item { background: var(--color-white); border: 1px solid var(--color-line); border-radius: 18px; padding: clamp(24px, 3vw, 36px); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease; }
.process__step:hover, .usecase:hover, .team__card:hover, .media-proof__item:hover, .region__stats:hover, .region__cities-wrapper:hover, .location-card:hover, .contact-panel:hover, .about-proof:hover, .service-nav:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(219,7,15,.2); }
.process__step { position: relative; }
.process__number { position: absolute; top: -16px; right: 26px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 999px; background: var(--color-primary); color: var(--color-white); font-weight: 900; }
.process__step-icon, .usecase__icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 20px; border-radius: 12px; background: var(--color-primary-soft); color: var(--color-primary); }
.process__step-title, .usecase__title { margin-bottom: 10px; }
.process__step-text, .usecase__text { color: var(--color-muted); font-size: .96rem; }
.process__step-time { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; padding: 7px 12px; border-radius: 999px; background: var(--color-primary-soft); color: var(--color-primary); font-size: .84rem; font-weight: 850; }
.usecase__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--color-primary); font-weight: 800; }

.media-proof { background: var(--color-white); padding-block: clamp(54px, 7vw, 92px); }
.media-proof__head { display: grid; grid-template-columns: minmax(0, 780px); gap: 14px; align-items: start; margin-bottom: 28px; }
.media-proof__head h2 { max-width: 760px; }
.media-proof__head p { max-width: 620px; color: var(--color-muted); font-size: 1.05rem; }
.media-proof__grid { display: grid; grid-template-columns: 1.25fr .85fr; grid-template-rows: repeat(2, minmax(220px, 1fr)); gap: 16px; }
.media-proof__item { position: relative; min-height: 220px; margin: 0; border: 1px solid transparent; border-radius: 20px; overflow: hidden; background: var(--color-paper-alt); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.media-proof__item--wide { grid-row: span 2; }
.media-proof__item img { width: 100%; height: 100%; object-fit: cover; }
.media-proof__item figcaption { position: absolute; left: 14px; bottom: 14px; padding: 8px 12px; border-radius: 999px; background: rgba(17,17,18,.86); color: var(--color-white); font-weight: 850; font-size: .88rem; }

.region__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.region__lead { margin: 18px 0 28px; color: var(--color-muted); font-size: 1.1rem; }
.region__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 22px; background: var(--color-paper-alt); border: 1px solid transparent; border-radius: 18px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.region__stat-num { color: var(--color-primary); font-size: 2rem; font-weight: 950; line-height: 1; }
.region__stat-label { color: var(--color-muted); font-weight: 650; }
.region__cities-wrapper { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 44px); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: var(--color-secondary); color: var(--color-white); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.region__cities-wrapper::before { content: ""; position: absolute; top: -180px; left: -160px; width: 430px; height: 430px; border-radius: 50%; background: radial-gradient(circle, rgba(219, 7, 15, .2) 0%, transparent 62%); pointer-events: none; }
.region__cities-wrapper::after { content: ""; position: absolute; right: -140px; bottom: -150px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 253, 250, .06) 0%, transparent 62%); pointer-events: none; }
.region__cities-wrapper > * { position: relative; z-index: 1; }
.region__cities-label { color: #ff7378; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 850; }
.region__cities-title { margin: 18px 0 14px; color: var(--color-white); }
.region__cities { display: flex; flex-wrap: wrap; gap: 9px; }
.region__cities span { padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); font-weight: 650; }
.region__cities-note { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,253,250,.72); }
.region__cities-note strong { color: var(--color-white); }

.why { background: var(--color-white); }
.why__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.why__item { position: relative; overflow: hidden; border-radius: 0; box-shadow: var(--shadow-sm); }
.why__item::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px; background: var(--color-primary); transition: opacity .22s ease; }
.why__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-line); }
.why__item:hover::before { opacity: 0; }
.why__num { margin-bottom: 28px; color: var(--color-primary); font-weight: 950; font-size: .82rem; letter-spacing: .16em; }
.why__item h3 { margin-bottom: 10px; }
.why__item p { color: var(--color-muted); font-size: .95rem; }
.team { background: var(--color-paper-alt); }
.team .sec-header { max-width: 960px; margin-inline: auto; }
.team__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 960px; margin: 0 auto; }
.team__avatar { display: grid; place-items: center; width: 84px; height: 84px; margin-bottom: 22px; border-radius: 50%; background: var(--color-secondary); color: var(--color-white); font-weight: 950; font-size: 1.35rem; }
.team__card p { margin: 8px 0 18px; color: var(--color-muted); }
.team__card a { color: var(--color-primary); font-weight: 800; }
.team__card .btn { color: var(--color-white); }

.range { position: relative; overflow: hidden; background: var(--color-secondary); color: var(--color-white); }
.range::before { content: ""; position: absolute; top: -200px; left: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(219, 7, 15, .18) 0%, transparent 60%); pointer-events: none; }
.range::after { content: ""; position: absolute; right: -150px; bottom: -150px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 253, 250, .05) 0%, transparent 60%); pointer-events: none; }
.range h2, .range .sec-header__eyebrow { color: var(--color-white); }
.range .sec-header__eyebrow { color: #ff7378; }
.range__inner { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.range__lead { margin: 20px 0 28px; color: rgba(255,253,250,.74); font-size: 1.1rem; }
.range__list { display: grid; gap: 12px; margin-bottom: 28px; }
.range__list div { display: flex; gap: 10px; color: rgba(255,253,250,.86); }
.range__list .hh-icon { color: #ff7378; margin-top: .2em; }
.range__cta { display: inline-flex; align-items: center; gap: 9px; padding: 14px 22px; border-radius: 999px; background: var(--color-white); color: var(--color-primary); font-weight: 900; }
.range__stats { display: grid; gap: 16px; }
.range__stats article { padding: 24px; border-radius: 18px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.07); box-shadow: 0 18px 48px rgba(20, 16, 58, .18); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease; }
.range__stats article:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.085); box-shadow: 0 20px 52px rgba(20, 16, 58, .2); }
.range__stats span { display: inline-block; margin-bottom: 12px; padding: 6px 10px; border-radius: 999px; background: var(--color-white); color: var(--color-primary); font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.range__stats strong { display: block; color: var(--color-white); font-size: clamp(1.7rem, 3.6vw, 2.65rem); line-height: 1.02; letter-spacing: -0.03em; }
.range__stats p { margin-top: 10px; color: rgba(255,253,250,.72); }

.faq { background: var(--color-white); }
.faq .sec-header { max-width: 860px; margin-inline: auto; }
.faq__wrapper { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--color-line); }
.faq__item { border-bottom: 1px solid var(--color-line); }
.faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 0; border: 0; background: transparent; color: var(--color-ink); text-align: left; font-weight: 850; font-size: 1.05rem; }
.faq__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 999px; background: var(--color-paper-alt); color: var(--color-primary); transition: transform .22s ease, background-color .22s ease, color .22s ease; }
.faq__item.active .faq__icon { transform: rotate(45deg); background: var(--color-primary); color: var(--color-white); }
.faq__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .24s ease; }
.faq__item.active .faq__answer { grid-template-rows: 1fr; }
.faq__answer-inner { overflow: hidden; padding: 0 56px 0 0; color: var(--color-muted); }
.faq__item.active .faq__answer-inner { padding-bottom: 22px; }

.finalcta { background: var(--color-paper); color: var(--color-white); padding-block: clamp(76px, 9vw, 124px); }
.finalcta > .container {
  position: relative;
  overflow: hidden;
  width: calc(100% - (var(--container-pad) * 2));
  max-width: var(--container);
  padding: clamp(46px, 6vw, 78px) var(--container-pad);
  border-radius: 28px;
  background: var(--color-secondary);
  box-shadow: 0 24px 72px rgba(39, 35, 95, .22);
}
.finalcta > .container::before {
  content: "";
  position: absolute;
  top: -170px;
  left: -170px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 7, 15, .18) 0%, transparent 62%);
  pointer-events: none;
}
.finalcta__intro { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.finalcta__title { color: var(--color-white); margin-bottom: 14px; }
.finalcta__lead { color: rgba(255,253,250,.78); margin-inline: auto; font-size: 1.1rem; }
.finalcta .sec-header__eyebrow { color: #ff9a9d; }
.finalcta [data-hha-open] { display: flex; width: fit-content; margin-inline: auto; }

.footer { background: #0e0e10; color: rgba(255,253,250,.72); padding: 68px 0 28px; }
.footer > .container { max-width: var(--container-wide); }
.footer__grid { display: grid; grid-template-columns: minmax(220px, 1.25fr) repeat(4, minmax(130px, .82fr)); gap: clamp(22px, 3vw, 34px); margin-bottom: 42px; }
.footer__logo { margin-bottom: 16px; color: var(--color-white); font-size: 1.25rem; font-weight: 900; letter-spacing: -.03em; }
.footer__desc { font-size: .95rem; }
.footer__title { color: var(--color-white); font-size: 1rem; margin-bottom: 16px; }
.footer__list { display: grid; gap: 10px; list-style: none; padding: 0; margin: 0; }
.footer__list a:hover, .footer__legal a:hover, .footer__contact-item:hover { color: #ff7378; }
.footer__contact { display: grid; gap: 13px; }
.footer__contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact-item .hh-icon { color: #ff7378; margin-top: .2em; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: .9rem; }
.footer__legal { display: flex; gap: 22px; }

.page-shell { padding-block: clamp(64px, 8vw, 110px); }
.page-content, .legal-copy { color: var(--color-muted); }
.legal-copy { max-width: 860px; }
.legal-copy__intro { max-width: 640px; margin-bottom: clamp(42px, 6vw, 68px); }
.legal-copy__intro h1 { margin: 14px 0 16px; }
.legal-copy__intro p { font-size: 1.08rem; }
.legal-copy section { padding-block: 30px; border-top: 1px solid var(--color-line); }
.legal-copy section h2 { margin-bottom: 14px; color: var(--color-ink); font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.legal-copy section p + p { margin-top: 14px; }
.legal-copy a { color: var(--color-primary); font-weight: 750; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-copy__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 18px; }
.legal-copy__card { padding: 26px !important; border: 1px solid var(--color-line) !important; border-top: 3px solid var(--color-primary) !important; border-radius: 12px; background: var(--color-white); box-shadow: var(--shadow-sm); }
.legal-copy__card h2 { font-size: 1rem !important; }
.page-hero { padding-block: clamp(72px, 8vw, 112px); overflow: hidden; background: linear-gradient(180deg, #fbf8f2 0%, var(--color-paper) 100%); }
.page-hero > .container { max-width: var(--container-wide); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, 1.08fr); gap: clamp(46px, 5.5vw, 88px); align-items: center; }
.page-hero__content h1 { margin-bottom: 24px; }
.page-hero__content > p { color: var(--color-muted); font-size: clamp(1.08rem, 1.5vw, 1.25rem); }
.page-hero__content > p + .hero__cta { margin-top: 34px; }
.page-hero__content .hero__cta { margin-bottom: 0; }
.page-hero__trust { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--color-line); color: var(--color-muted); font-size: .92rem; font-weight: 800; }
.page-hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero__trust span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary); }
.page-hero__media { position: relative; min-height: 540px; overflow: hidden; border-radius: 24px; background: var(--color-dark); box-shadow: 0 22px 64px rgba(17, 17, 18, .16); }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(17,17,18,.42) 100%); pointer-events: none; }
.page-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.page-hero__badge { position: absolute; z-index: 1; right: 22px; bottom: 22px; left: 22px; display: grid; gap: 4px; padding: 17px 18px; border: 1px solid rgba(255,255,255,.13); border-left: 5px solid var(--color-primary); border-radius: 16px; background: rgba(17,17,18,.89); color: var(--color-white); box-shadow: 0 16px 38px rgba(0,0,0,.16); }
.page-hero__badge span { color: rgba(255,253,250,.7); font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.page-hero__badge strong { font-size: 1.05rem; line-height: 1.25; }
.service-detail__grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(30px, 5vw, 70px); align-items: start; }
.service-nav { position: sticky; top: 100px; display: grid; gap: 8px; padding: 16px; border: 1px solid var(--color-line); border-radius: 18px; background: var(--color-white); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.service-nav a { padding: 10px 12px; border-radius: 10px; color: var(--color-muted); font-weight: 750; }
.service-nav a:hover { background: var(--color-primary-soft); color: var(--color-primary); }
.service-copy__section { padding: 0 0 46px; margin-bottom: 46px; border-bottom: 1px solid var(--color-line); }
.service-copy__section h2 { margin-bottom: 16px; }
.service-copy__section p { color: var(--color-muted); font-size: 1.06rem; }
.service-inline-image { margin: 26px 0; max-width: 520px; border-radius: 20px; overflow: hidden; background: var(--color-paper-alt); box-shadow: var(--shadow-sm); }
.service-inline-image img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.service-inline-image figcaption { padding: 12px 14px; color: var(--color-muted); font-size: .92rem; font-weight: 700; background: var(--color-white); }
.check-list { display: grid; gap: 12px; padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--color-ink-soft); font-weight: 650; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 14px; height: 14px; border-radius: 999px; background: var(--color-primary); }

.systems-hero p { margin-top: 20px; color: var(--color-muted); font-size: 1.12rem; max-width: 66ch; }
.systems-region { background: var(--color-paper-alt); }
.systems-region__grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(34px, 7vw, 112px); align-items: start; }
.systems-region h2 { max-width: 14ch; }
.systems-region__copy > p { color: var(--color-muted); font-size: 1.08rem; }
.systems-region__areas { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 26px 0; }
.systems-region__areas div { display: grid; gap: 7px; padding: 20px; border-left: 3px solid var(--color-primary); background: var(--color-white); box-shadow: var(--shadow-sm); }
.systems-region__areas strong { color: var(--color-ink); font-size: .95rem; }
.systems-region__areas span { color: var(--color-muted); font-size: .9rem; line-height: 1.55; }
.systems-sizes { background: var(--color-white); }
.systems-grid { display: grid; gap: 22px; }
.systems-grid--all { gap: 26px; }
.system-card { display: grid; grid-template-columns: minmax(260px, .58fr) minmax(0, 1fr); min-height: 310px; border: 1px solid var(--color-line); border-radius: 22px; overflow: hidden; background: var(--color-white); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.system-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(219,7,15,.2); }
.system-card__media { min-height: 310px; background: var(--color-paper-alt); }
.system-card__media img { width: 100%; height: 100%; object-fit: cover; }
.system-card__body { display: grid; align-content: center; padding: clamp(26px, 4vw, 46px); }
.system-card__body > span { margin-bottom: 12px; color: var(--color-primary); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.system-card__body h3 { margin-bottom: 14px; }
.system-card__body p { color: var(--color-muted); font-size: 1.06rem; }
.system-card__body ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 18px; padding: 0; margin: 22px 0 0; list-style: none; }
.system-card__body li { position: relative; padding-left: 13px; color: var(--color-muted); font-size: .86rem; font-weight: 780; line-height: 1.4; }
.system-card__body li::before { content: ""; position: absolute; top: .42em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--color-primary); }

.systems-tech { position: relative; overflow: hidden; background: var(--color-secondary); color: var(--color-white); }
.systems-tech::before { content: ""; position: absolute; top: -190px; left: -170px; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(219, 7, 15, .18) 0%, transparent 62%); pointer-events: none; }
.systems-tech::after { content: ""; position: absolute; right: -170px; bottom: -170px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 253, 250, .06) 0%, transparent 62%); pointer-events: none; }
.systems-tech__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.systems-tech h2 { color: var(--color-white); }
.systems-tech p { margin-top: 18px; color: rgba(255,253,250,.76); font-size: 1.08rem; }
.systems-tech .sec-header__eyebrow { color: #ff7378; }
.systems-tech__list { display: grid; gap: 12px; margin-top: 28px; }
.systems-tech__list div { display: flex; gap: 10px; color: rgba(255,253,250,.9); font-weight: 750; }
.systems-tech__list .hh-icon { flex: 0 0 auto; color: #ff7378; margin-top: .2em; }
.systems-tech__panel { display: grid; gap: 16px; }
.systems-tech__panel article { padding: 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.07); box-shadow: 0 18px 48px rgba(20, 16, 58, .18); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease; }
.systems-tech__panel article:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.085); box-shadow: 0 20px 52px rgba(20, 16, 58, .2); }
.systems-tech__panel span { display: inline-block; margin-bottom: 12px; padding: 6px 10px; border-radius: 999px; background: var(--color-white); color: var(--color-primary); font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.systems-tech__panel strong { display: block; color: var(--color-white); font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.05; }
.systems-tech__panel p { margin-top: 10px; color: rgba(255,253,250,.72); font-size: .98rem; }

.systems-usecases { background: var(--color-paper-alt); }
.systems-usecase-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.systems-usecase { padding: clamp(22px, 3vw, 30px); border: 1px solid var(--color-line); border-radius: 0; background: var(--color-white); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.systems-usecase:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(219,7,15,.2); }
.systems-usecase h3 { margin-bottom: 10px; }
.systems-usecase p { color: var(--color-muted); }

/* Einsatzfälle: lösungsorientierte Seitenwelt statt Produktdaten-Layout. */
.case-hub-hero { position: relative; overflow: hidden; padding-block: clamp(78px, 10vw, 142px); background: var(--color-ink); color: var(--color-white); }
.case-hub-hero::after { content: ""; position: absolute; right: -9vw; bottom: -20vw; width: min(58vw, 820px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.case-hub-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr); gap: clamp(48px, 9vw, 152px); align-items: end; }
.case-hub-hero .sec-header__eyebrow { color: #ff9ba0; }
.case-hub-hero h1 { max-width: 13ch; color: var(--color-white); }
.case-hub-hero__copy > p { max-width: 59ch; margin-top: 24px; color: rgba(255,253,250,.78); font-size: 1.12rem; }
.case-hub-hero__scroll { display: inline-flex; gap: 12px; align-items: center; margin-top: 34px; color: var(--color-white); font-weight: 850; }
.case-hub-hero__scroll span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.case-hub-hero__statement { display: grid; gap: 18px; padding: clamp(28px, 4vw, 44px); border-top: 5px solid var(--color-primary); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.case-hub-hero__statement > span { color: #ffb7bd; font-size: .75rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.case-hub-hero__statement strong { color: var(--color-white); font-size: clamp(1.3rem, 2.2vw, 1.8rem); line-height: 1.25; }
.case-hub-hero__statement > div { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 8px; }
.case-hub-hero__statement > div span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,253,250,.76); font-size: .78rem; font-weight: 800; }
.case-selector { background: var(--color-paper-alt); }
.case-selector__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, .55fr); gap: clamp(36px, 8vw, 128px); align-items: end; margin-bottom: 40px; }
.case-selector__head h2 { max-width: 17ch; }
.case-selector__head > p { color: var(--color-muted); font-size: 1.04rem; }
.case-selector__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.case-selector__card { position: relative; display: grid; overflow: hidden; border: 1px solid var(--color-line); border-radius: 18px; background: var(--color-white); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.case-selector__card:hover { transform: translateY(-4px); border-color: rgba(219,7,15,.24); box-shadow: var(--shadow-md); }
.case-selector__card img { width: 100%; aspect-ratio: 3 / 2; background: var(--color-paper-alt); object-fit: contain; }
.case-selector__number { position: absolute; top: 16px; left: 16px; display: grid; place-items: center; width: 38px; height: 38px; background: var(--color-primary); color: var(--color-white); font-size: .76rem; font-weight: 950; }
.case-selector__content { display: flex; flex-direction: column; align-items: flex-start; min-height: 254px; padding: 28px; }
.case-selector__content > span { color: var(--color-primary); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.case-selector__content h2 { margin: 12px 0; font-size: clamp(1.45rem, 2.1vw, 2rem); line-height: 1.05; }
.case-selector__content p { color: var(--color-muted); font-size: .95rem; }
.case-selector__content strong { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; color: var(--color-ink); font-size: .92rem; }
.case-selector__content .hh-icon { color: var(--color-primary); transition: transform .22s ease; }
.case-selector__card:hover .hh-icon { transform: translateX(4px); }
.case-hub-bridge { background: var(--color-white); }
.case-hub-bridge__grid { display: grid; grid-template-columns: minmax(290px, .75fr) minmax(0, 1.25fr); gap: clamp(42px, 8vw, 136px); align-items: start; }
.case-hub-bridge h2 { max-width: 13ch; }
.case-hub-bridge ol { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.case-hub-bridge li { display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 20px; align-items: start; padding: 21px 0; border-top: 1px solid var(--color-line); }
.case-hub-bridge li:last-child { border-bottom: 1px solid var(--color-line); }
.case-hub-bridge li span, .case-route__steps span { color: var(--color-primary); font-size: .86rem; font-weight: 950; letter-spacing: .08em; }
.case-hub-bridge li p { color: var(--color-ink); font-size: 1.07rem; font-weight: 750; }
.case-hub-cta { padding-top: 0; background: var(--color-white); }
.case-hub-cta__inner, .case-detail-cta__inner { max-width: 1080px; margin: 0 auto; padding: clamp(46px, 7vw, 84px); border: 0; border-radius: 24px; background: var(--color-secondary); text-align: center; box-shadow: 0 24px 72px rgba(39,35,95,.2); }
.case-hub-cta__inner .sec-header__eyebrow, .case-detail-cta__inner .sec-header__eyebrow { justify-content: center; color: #ff9ba0; }
.case-hub-cta__inner h2, .case-detail-cta__inner h2 { max-width: 18ch; margin-inline: auto; color: var(--color-white); }
.case-hub-cta__inner p, .case-detail-cta__inner p { max-width: 62ch; margin: 18px auto 30px; color: rgba(255,253,250,.78); font-size: 1.06rem; }

.case-detail-hero { padding-block: clamp(80px, 9vw, 124px); background: var(--color-paper-alt); }
.case-detail-hero__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); gap: clamp(44px, 8vw, 132px); align-items: center; }
.case-detail-hero__copy h1 { max-width: 12ch; }
.case-detail-hero__copy > p { max-width: 55ch; margin-top: 22px; color: var(--color-muted); font-size: 1.13rem; }
.case-detail-hero__copy .hero__cta { margin-top: 34px; }
.case-detail-hero__visual { position: relative; aspect-ratio: 3 / 2; overflow: hidden; border-radius: 24px; background: var(--color-paper); box-shadow: var(--shadow-md); }
.case-detail-hero__visual img, .case-ready__image img { width: 100%; height: 100%; object-fit: contain; }
.case-detail-hero__visual > div { position: absolute; right: 18px; bottom: 18px; max-width: 250px; padding: 17px 18px; border-left: 5px solid var(--color-primary); background: rgba(255,253,250,.96); }
.case-detail-hero__visual span { display: block; margin-bottom: 7px; color: var(--color-primary); font-size: .71rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.case-detail-hero__visual strong { color: var(--color-ink); line-height: 1.2; }
.case-detail-intro { background: var(--color-white); }
.case-detail-intro__lead { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr); gap: clamp(42px, 8vw, 132px); align-items: end; padding-bottom: 48px; }
.case-detail-intro h2 { max-width: 15ch; }
.case-detail-intro__lead > p { color: var(--color-ink-soft); font-size: clamp(1.08rem, 1.45vw, 1.24rem); line-height: 1.65; }
.case-detail-intro__blocks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 5vw, 72px); }
.case-detail-intro__blocks article { padding-top: 24px; border-top: 4px solid var(--color-primary); }
.case-detail-intro__blocks article + article { border-top-color: var(--color-secondary); }
.case-detail-intro__blocks span { display: block; margin-bottom: 12px; color: var(--color-primary); font-size: .74rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.case-detail-intro__blocks article + article span { color: var(--color-secondary); }
.case-detail-intro__blocks h3 { margin-bottom: 12px; }
.case-detail-intro__blocks p { color: var(--color-muted); font-size: 1rem; }
.case-route { background: var(--color-secondary); color: var(--color-white); }
.case-route .sec-header__eyebrow { color: #ff9ba0; }
.case-route h2 { max-width: 16ch; color: var(--color-white); }
.case-route__steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 42px; border-top: 1px solid rgba(255,255,255,.18); }
.case-route__steps article { min-height: 180px; padding: 24px 28px 0 0; border-right: 1px solid rgba(255,255,255,.18); }
.case-route__steps article + article { padding-left: 28px; }
.case-route__steps article:last-child { border-right: 0; }
.case-route__steps span { color: #ff9ba0; }
.case-route__steps p { margin-top: 18px; color: var(--color-white); font-size: 1.08rem; font-weight: 750; }
.case-fit { background: var(--color-paper-alt); }
.case-fit__grid { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr); gap: clamp(42px, 8vw, 132px); align-items: center; }
.case-fit h2 { max-width: 16ch; }
.case-fit__grid > div > p { margin: 18px 0 8px; color: var(--color-muted); }
.case-fit__systems { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 5px solid var(--color-primary); background: var(--color-white); box-shadow: var(--shadow-sm); }
.case-fit__systems a { display: grid; gap: 5px; min-height: 148px; padding: 22px; border-right: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); transition: background-color .22s ease; }
.case-fit__systems a:nth-child(even) { border-right: 0; }
.case-fit__systems a:hover { background: var(--color-primary-soft); }
.case-fit__systems span { color: var(--color-primary); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.case-fit__systems strong { color: var(--color-ink); font-size: 1.7rem; line-height: 1.05; }
.case-fit__systems em { color: var(--color-muted); font-size: .86rem; font-style: normal; font-weight: 750; }
.case-ready { background: var(--color-white); }
.case-ready__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr); gap: clamp(42px, 8vw, 132px); align-items: center; }
.case-ready__image { aspect-ratio: 3 / 2; overflow: hidden; border-radius: 20px; background: var(--color-paper-alt); }
.case-ready h2 { max-width: 16ch; }
.case-ready ul { display: grid; gap: 12px; margin: 24px 0; padding: 0; list-style: none; }
.case-ready li { position: relative; padding-left: 26px; color: var(--color-ink); font-weight: 750; }
.case-ready li::before { content: ""; position: absolute; top: .48em; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--color-primary); }
.case-ready p { color: var(--color-muted); }
.case-detail-faq { background: var(--color-paper-alt); }
.case-detail-cta { padding-top: clamp(40px, 5vw, 72px); background: var(--color-white); }
.case-detail-cta__inner { max-width: 1050px; padding: clamp(42px, 6vw, 76px); border: 0; border-radius: 24px; box-shadow: 0 24px 72px rgba(39, 35, 95, .22); }

.systems-requirements { background: var(--color-white); }
.systems-requirements__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.systems-requirements__media { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); background: var(--color-dark); }
.systems-requirements__media img { width: 100%; min-height: 440px; object-fit: cover; }
.systems-requirements p { margin-top: 16px; color: var(--color-muted); font-size: 1.08rem; }
.systems-requirements__list { display: grid; gap: 12px; padding: 0; margin: 24px 0 28px; list-style: none; }
.systems-requirements__list li { position: relative; padding-left: 30px; color: var(--color-ink-soft); font-weight: 700; }
.systems-requirements__list li::before { content: ""; position: absolute; left: 0; top: .46em; width: 14px; height: 14px; border-radius: 999px; background: var(--color-primary); }

.system-detail { background: var(--color-white); }
.system-detail__grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(30px, 5vw, 70px); align-items: start; }
.system-detail__main { display: grid; gap: 18px; padding: clamp(28px, 4vw, 44px); border: 1px solid var(--color-line); border-radius: 0; background: var(--color-white); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.system-detail__main:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(219,7,15,.18); }
.system-detail__main p { color: var(--color-muted); font-size: 1.06rem; }
.system-detail__notice { display: grid; gap: 8px; margin-top: 12px; padding: 18px; border: 1px solid rgba(219,7,15,.18); background: var(--color-primary-soft); }
.system-detail__notice strong { color: var(--color-primary); font-size: 1.02rem; }
.system-detail__facts { display: grid; gap: 12px; }
.system-detail__facts div { padding: 22px; border: 1px solid var(--color-line); border-radius: 0; background: var(--color-paper-alt); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.system-detail__facts div:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(219,7,15,.18); }
.system-detail__facts span { display: block; margin-bottom: 8px; color: var(--color-primary); font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.system-detail__facts strong { color: var(--color-ink); font-size: 1.28rem; line-height: 1.15; }
.system-detail__columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(26px, 4vw, 46px); align-items: start; }

.product-hero { padding-block: clamp(72px, 8vw, 112px); background: var(--color-paper-alt); overflow: hidden; }
.product-hero > .container { max-width: var(--container-wide); }
.product-hero__grid { display: grid; grid-template-columns: minmax(0, .94fr) minmax(380px, 1.06fr); gap: clamp(40px, 6vw, 92px); align-items: center; }
.product-hero h1 { margin-bottom: 24px; }
.product-hero__content > p:not(.product-hero__hint) { color: var(--color-muted); font-size: 1.13rem; }
.product-hero .hero__cta { margin: 34px 0 0; }
.product-hero__hint { display: flex; gap: 10px; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--color-line); color: var(--color-ink-soft); font-size: .92rem; font-weight: 700; }
.product-hero__hint::before { content: ""; flex: 0 0 auto; width: 9px; height: 9px; margin-top: .48em; border-radius: 50%; background: var(--color-primary); }
.product-hero__media { position: relative; min-height: 540px; overflow: hidden; border-radius: 24px; background: var(--color-dark); box-shadow: 0 22px 64px rgba(17, 17, 18, .16); }
.product-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.product-hero__badge { position: absolute; right: 18px; bottom: 18px; display: grid; gap: 3px; min-width: 174px; padding: 16px 18px; border-top: 5px solid var(--color-primary); background: rgba(255,253,250,.96); box-shadow: var(--shadow-sm); }
.product-hero__badge span, .product-hero__badge em { color: var(--color-muted); font-size: .72rem; font-style: normal; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.product-hero__badge strong { color: var(--color-ink); font-size: 1.55rem; line-height: 1.1; }
.product-intro { background: var(--color-white); }
.product-intro__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, .76fr); gap: clamp(38px, 7vw, 112px); align-items: center; }
.product-intro h2, .product-scope h2, .product-faq h2 { max-width: 17ch; }
.product-intro p, .product-scope p, .product-faq p { margin-top: 20px; color: var(--color-muted); font-size: 1.06rem; }
.product-intro__note { max-width: 58ch; padding-left: 18px; border-left: 3px solid var(--color-primary); color: var(--color-ink-soft) !important; font-size: .95rem !important; font-weight: 750; }
.product-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 5px solid var(--color-primary); background: var(--color-paper-alt); }
.product-facts div { min-height: 132px; padding: 22px; border-right: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.product-facts div:nth-child(even) { border-right: 0; }
.product-facts span, .product-scope__cards span, .product-usecase > span { display: block; margin-bottom: 9px; color: var(--color-primary); font-size: .74rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.product-facts strong { display: block; color: var(--color-ink); font-size: clamp(1.08rem, 1.6vw, 1.3rem); line-height: 1.18; }
.product-data { background: var(--color-paper-alt); }
.product-data__grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(42px, 7vw, 108px); align-items: start; }
.product-data__grid > div > p { margin-top: 18px; color: var(--color-muted); font-size: 1.04rem; }
.product-data__groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.product-data__group { overflow: hidden; border: 1px solid var(--color-line); border-top: 5px solid var(--color-primary); background: var(--color-white); box-shadow: var(--shadow-sm); }
.product-data__group h3 { margin: 0; padding: 18px 20px 16px; border-bottom: 1px solid var(--color-line); color: var(--color-ink); font-size: 1.06rem; }
.product-data__group dl { margin: 0; }
.product-data__group dl > div { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--color-line); }
.product-data__group dl > div:last-child { border-bottom: 0; }
.product-data__group dt { color: var(--color-muted); font-size: .78rem; font-weight: 800; line-height: 1.35; }
.product-data__group dd { margin: 0; color: var(--color-ink); font-size: .87rem; font-weight: 800; line-height: 1.38; overflow-wrap: anywhere; }
.product-usecases { background: var(--color-paper-alt); }
.product-usecases__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-usecase { min-height: 236px; padding: 28px; border-top: 5px solid var(--color-primary); background: var(--color-white); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.product-usecase:hover { transform: translateY(-4px); border-top-color: var(--color-ink); box-shadow: var(--shadow-md); }
.product-usecase > span { color: var(--color-primary); }
.product-usecase h3 { margin-bottom: 13px; }
.product-usecase p { color: var(--color-muted); font-size: .96rem; }
.product-planning { position: relative; overflow: hidden; background: var(--color-secondary); color: var(--color-white); }
.product-planning::before { content: ""; position: absolute; top: -210px; right: -180px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; pointer-events: none; }
.product-planning__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .93fr) minmax(370px, 1.07fr); gap: clamp(38px, 7vw, 114px); align-items: center; }
.product-planning .sec-header__eyebrow { color: #ff9ba0; }
.product-planning h2 { color: var(--color-white); max-width: 14ch; }
.product-planning__grid > div > p { margin: 20px 0 28px; color: rgba(255,253,250,.78); font-size: 1.07rem; }
.product-planning__checks { display: grid; gap: 10px; }
.product-planning__checks article { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 16px; align-items: center; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.16); }
.product-planning__checks article:first-child { border-top: 1px solid rgba(255,255,255,.16); }
.product-planning__checks span { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #ff9ba0; font-size: .86rem; font-weight: 900; }
.product-planning__checks p { color: var(--color-white); font-size: 1.01rem; font-weight: 750; line-height: 1.4; }
.product-scope { background: var(--color-white); }
.product-scope__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr); gap: clamp(40px, 7vw, 108px); align-items: start; }
.product-scope__cards { display: grid; gap: 10px; }
.product-scope__cards article { padding: 22px; border: 1px solid var(--color-line); border-left: 5px solid var(--color-primary); background: var(--color-paper-alt); transition: transform .22s ease, box-shadow .22s ease; }
.product-scope__cards article:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.product-scope__cards article:nth-child(2) { border-left-color: var(--color-secondary); }
.product-scope__cards article:nth-child(3) { border-left-color: var(--color-ink); }
.product-scope__cards strong { display: block; color: var(--color-ink); font-size: 1.12rem; line-height: 1.2; }
.product-scope__cards p { margin-top: 8px; color: var(--color-muted); font-size: .94rem; }
.product-tank { padding-block: clamp(38px, 5vw, 64px); background: var(--color-primary-soft); }
.product-tank__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); gap: clamp(30px, 6vw, 90px); align-items: end; padding: clamp(28px, 5vw, 54px); border-top: 5px solid var(--color-primary); background: var(--color-white); }
.product-tank h2 { max-width: 14ch; }
.product-tank p { color: var(--color-ink-soft); font-size: 1.04rem; }
.product-faq { background: var(--color-paper-alt); }
.product-faq__grid { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(42px, 7vw, 112px); align-items: start; }
.product-faq .faq__wrapper { margin-top: 0; }
.product-more { background: var(--color-white); }
.product-more__head { display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.product-more__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-more__card { display: grid; align-content: start; overflow: hidden; border: 1px solid var(--color-line); border-radius: 18px; background: var(--color-white); box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.product-more__card:hover { transform: translateY(-4px); border-color: rgba(219,7,15,.24); box-shadow: var(--shadow-md); }
.product-more__card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.product-more__card span { margin: 20px 22px 6px; color: var(--color-primary); font-size: .72rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.product-more__card strong { margin: 0 22px; color: var(--color-ink); font-size: 1.18rem; line-height: 1.18; }
.product-more__card em { display: inline-flex; align-items: center; gap: 8px; margin: 16px 22px 22px; color: var(--color-muted); font-size: .9rem; font-style: normal; font-weight: 800; }
.product-more__card .hh-icon { color: var(--color-primary); transition: transform .22s ease; }
.product-more__card:hover .hh-icon { transform: translateX(4px); }
.product-cta { padding-top: 0; background: var(--color-white); }
.product-cta__inner { max-width: 1050px; margin: 0 auto; padding: clamp(42px, 6vw, 76px); border-radius: 24px; background: var(--color-secondary); box-shadow: 0 24px 72px rgba(39, 35, 95, .22); text-align: center; }
.product-cta__inner .sec-header__eyebrow { justify-content: center; }
.product-cta__inner .sec-header__eyebrow { color: #ff9a9d; }
.product-cta h2 { max-width: 19ch; margin: 0 auto; color: var(--color-white); }
.product-cta p { max-width: 65ch; margin: 18px auto 30px; color: rgba(255,253,250,.78); font-size: 1.05rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-panel { padding: clamp(26px, 4vw, 42px); border: 1px solid var(--color-line); border-radius: 20px; background: var(--color-white); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.contact-panel--dark { background: var(--color-dark); color: var(--color-white); }
.contact-panel--dark h2 { color: var(--color-white); }
.contact-panel p { margin: 14px 0 24px; color: var(--color-muted); }
.contact-panel--dark p { color: rgba(255,253,250,.74); }
.contact-line, .contact-address { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; font-weight: 800; }
.contact-line .hh-icon, .contact-address .hh-icon { color: var(--color-primary); margin-top: .18em; }

.about-proof {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid transparent;
  border-radius: 22px;
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.about-proof__item {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.about-proof__item:last-child {
  border-bottom: 0;
}

.about-proof__item strong {
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: .95;
  letter-spacing: -0.04em;
}

.about-proof__item span {
  color: rgba(255,253,250,.72);
  font-weight: 750;
}

.about-story {
  background: var(--color-white);
}

.about-story__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.about-story__copy {
  display: grid;
  gap: 18px;
}

.about-story__copy p {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.about-locations {
  background: var(--color-paper-alt);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.location-card {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--color-primary);
  border-radius: 14px;
  background: var(--color-white);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.location-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--color-primary); font-size: .78rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.location-card__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--color-primary-soft); color: var(--color-primary); }
.location-card__icon .hh-icon { width: 17px; height: 17px; }
.location-card h3 {
  margin-bottom: 12px;
}

.location-card p {
  color: var(--color-muted);
}

.location-card__cities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.location-card__cities span { padding: 7px 10px; border: 1px solid var(--color-line); border-radius: 999px; background: var(--color-paper-alt); color: var(--color-ink-soft); font-size: .8rem; font-weight: 780; }

.team--about {
  background: var(--color-white);
}

.about-cta {
  background: var(--color-secondary);
  color: var(--color-white);
}

.about-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.about-cta h2 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.about-cta p {
  color: rgba(255,253,250,.75);
}

.about-cta .sec-header__eyebrow {
  color: #ff9a9d;
}

@media (max-width: 1050px) {
  .is-nav-open { overflow: hidden; }
  .is-nav-open body { overflow: hidden; }
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 120;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px var(--container-pad) max(28px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--color-paper);
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-md);
  }
  .is-nav-open .header__nav { display: flex; }
  .header__nav-item { display: block; }
  .header__nav-link {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 14px 16px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: var(--color-white);
    text-align: left;
    font-weight: 850;
  }
  .header__nav-link:hover,
  .header__nav-link.is-active,
  .header__nav-trigger[aria-expanded="true"] {
    border-color: rgba(219,7,15,.22);
    background: var(--color-primary-soft);
    color: var(--color-primary);
  }
  .header__nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    margin-top: 4px;
    padding: 15px 20px;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 900;
  }
  .mega-panel { position: static; width: 100%; margin: -2px 0 8px; padding: 0; border: 0; box-shadow: none; background: transparent; }
  .mega-panel__inner { width: 100%; }
  .mega-panel__eyebrow { margin-bottom: 14px; font-size: .7rem; }
  .mega-panel__toplink { margin: 0 0 12px; padding: 14px 16px; border: 1px solid var(--color-line); border-radius: 8px; background: var(--color-white); }
  .mega-panel__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .mega-card { padding: 10px; border: 1px solid var(--color-line); border-radius: 8px; background: var(--color-white); }
  .mega-card__image { border-radius: 6px; }
  .mega-card__title { font-size: 1rem; }
  .mega-card__sub { font-size: .84rem; }
  .header__burger { display: block; }
  .hero__inner, .region__inner, .range__inner, .page-hero__grid, .systems-region__grid, .systems-tech__grid, .systems-requirements__grid, .system-detail__grid, .system-detail__columns, .product-hero__grid, .product-intro__grid, .product-data__grid, .product-planning__grid, .product-scope__grid, .product-tank__inner, .product-faq__grid, .case-hub-hero__grid, .case-selector__head, .case-hub-bridge__grid, .case-detail-hero__grid, .case-detail-intro__lead, .case-fit__grid, .case-ready__grid { grid-template-columns: 1fr; }
  .media-proof__head { grid-template-columns: 1fr; align-items: start; }
  .about-story__grid { grid-template-columns: 1fr; }
  .process__grid, .usecases__grid, .systems-usecase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-usecases__grid, .product-more__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-hub-hero h1 { max-width: 12ch; }
  .case-hub-hero__statement { max-width: 620px; }
  .case-selector__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-detail-hero__visual { min-height: 0; }
  .page-hero__media, .product-hero__media { min-height: 430px; }
  .product-intro h2, .product-scope h2, .product-faq h2 { max-width: 22ch; }
  .system-card { grid-template-columns: 1fr; }
  .system-card__media { min-height: 280px; }
  .why__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-nav { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  section { padding-block: clamp(54px, 14vw, 78px); }
  .header { --header-height: 70px; }
  .header__inner { min-height: 70px; gap: 12px; }
  .header__actions .btn { display: none; }
  .header__nav { gap: 8px; padding-top: 12px; }
  .mega-panel { margin-bottom: 8px; }
  .mega-panel__grid { grid-template-columns: 1fr; }
  .mega-card { display: grid; grid-template-columns: 92px minmax(0, 1fr); grid-template-rows: auto auto; gap: 4px 12px; align-items: center; }
  .mega-card__image { grid-row: span 2; aspect-ratio: 4 / 3; }
  .mega-card__title, .mega-card__sub { min-width: 0; }
  .page-hero__media, .product-hero__media { min-height: 340px; }
  .page-hero__badge, .product-hero__badge { right: 14px; bottom: 14px; left: 14px; }
  .page-hero__trust { gap: 9px 14px; margin-top: 26px; padding-top: 20px; }
  .product-facts { grid-template-columns: 1fr; }
  .product-facts div, .product-facts div:nth-child(even) { min-height: auto; border-right: 0; }
  .product-data__groups { grid-template-columns: 1fr; }
  .product-usecases__grid, .product-more__grid { grid-template-columns: 1fr; }
  .case-selector__grid, .case-route__steps, .case-fit__systems { grid-template-columns: 1fr; }
  .case-selector__card { grid-template-columns: 1fr; }
  .case-selector__card img { min-height: 0; max-height: none; }
  .case-selector__content { min-height: 250px; }
  .case-route__steps { margin-top: 30px; }
  .case-route__steps article, .case-route__steps article + article { min-height: 0; padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .case-route__steps article:last-child { border-bottom: 0; }
  .case-fit__systems a, .case-fit__systems a:nth-child(even) { min-height: auto; border-right: 0; }
  .case-detail-hero__visual, .case-ready__image { min-height: 0; }
  .product-usecase { min-height: auto; }
  .product-more__head { align-items: flex-start; flex-direction: column; }
  .product-planning__checks article { grid-template-columns: 40px minmax(0, 1fr); padding-inline: 0; }
  .product-cta__inner { padding: 34px 22px; }
  .hero__visual { min-height: 340px; }
  .hero__badge { left: 14px; right: auto; bottom: 14px; max-width: calc(100% - 28px); padding: 14px; }
  .process__grid, .usecases__grid, .why__grid, .team__grid, .footer__grid, .contact-grid, .region__stats, .systems-usecase-grid { grid-template-columns: 1fr; }
  .media-proof__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .media-proof__item, .media-proof__item--wide { min-height: 260px; grid-row: auto; }
  .system-card__media, .systems-requirements__media img { min-height: 250px; }
  .system-card__body ul { grid-template-columns: 1fr; }
  .systems-region__areas { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .legal-copy__cards { grid-template-columns: 1fr; }
  .about-cta__inner { align-items: flex-start; flex-direction: column; }
  .emergency__inner, .emergency__content { align-items: flex-start; }
  .emergency__inner { flex-direction: column; }
  .emergency__cta { width: 100%; justify-content: center; }
  .faq__answer-inner { padding-right: 0; }
  .footer__bottom { align-items: flex-start; }
  .service-nav { grid-template-columns: 1fr; }
}

@media (max-width: 440px) {
  .product-data__group dl > div { grid-template-columns: 1fr; gap: 4px; }
}

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