/* Elektrotechnik Baysal 2026 — editorial motion system
   Dominant palette: white / #f0f1ec / graphite / red.
   Motion is progressive: all content remains readable without JavaScript. */

:root {
  --paper: #f0f1ec;
  --white: #ffffff;
  --ink: #0b0c0e;
  --ink-2: #181a1d;
  --muted: #686c70;
  --muted-2: #93979a;
  --line: #dadcd6;
  --line-dark: #292c30;
  --red: #e30613;
  --red-dark: #b90915;
  --red-soft: #fff0f1;
  --success: #1e6b48;
  --warning: #965910;
  --shadow-xs: 0 5px 16px rgba(12, 14, 16, 0.055);
  --shadow-sm: 0 12px 35px rgba(12, 14, 16, 0.075);
  --shadow-md: 0 32px 90px rgba(12, 14, 16, 0.12);
  --radius-s: 16px;
  --radius-m: 26px;
  --radius-l: 40px;
  --radius-xl: 58px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-smooth: cubic-bezier(.22, 1, .36, 1);
  --shell: min(1440px, calc(100vw - 64px));
  --reading: 760px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.dialog-open { overflow: hidden; }
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: #fff; background: var(--red); }
:focus-visible { outline: 3px solid rgba(227, 6, 19, .45); outline-offset: 3px; }

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: page-out .22s ease both; }
::view-transition-new(root) { animation: page-in .45s var(--ease) both; }
@keyframes page-out { to { opacity: .4; transform: translateY(-6px); } }
@keyframes page-in { from { opacity: 0; transform: translateY(10px); } }

.shell { width: var(--shell); margin-inline: auto; }
.reading { width: min(var(--reading), 100%); }
.section { padding: clamp(88px, 10vw, 160px) 0; position: relative; }
.section.compact { padding: clamp(68px, 7vw, 108px) 0; }
.section.white { background: var(--white); }
.section.paper { background: var(--paper); }
.section.dark { color: #fff; background: var(--ink); }
.section.red { color: #fff; background: var(--red); }
.section[data-lazy-section] { content-visibility: auto; contain-intrinsic-size: 900px; }

.skip-link {
  position: fixed; z-index: 9999; left: 18px; top: 14px;
  padding: 12px 16px; border-radius: 999px; color: #fff; background: var(--red);
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: none; }

.eyebrow, .overline {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 20px; color: var(--ink); font-size: .76rem; font-weight: 760;
  letter-spacing: .115em; text-transform: uppercase;
}
.eyebrow::before, .overline::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.dark .eyebrow, .dark .overline, .red .eyebrow, .red .overline { color: #fff; }
.dark .eyebrow::before, .dark .overline::before { box-shadow: 0 0 0 7px rgba(227,6,19,.12); }

h1, h2, h3, h4 { margin: 0; text-wrap: balance; }
h1, h2 { letter-spacing: -.06em; line-height: .91; font-weight: 680; }
h3, h4 { letter-spacing: -.035em; line-height: 1.03; font-weight: 680; }
h1 { font-size: clamp(4.1rem, 9.4vw, 10.9rem); }
h2 { font-size: clamp(3rem, 6.2vw, 7.4rem); }
h3 { font-size: clamp(1.55rem, 2.6vw, 2.65rem); }
h4 { font-size: 1.15rem; }
p { margin: 0; color: var(--muted); text-wrap: pretty; }
.dark p, .red p { color: rgba(255,255,255,.7); }
.lead { max-width: 64ch; font-size: clamp(1.1rem, 1.6vw, 1.42rem); line-height: 1.55; }
.body-large { font-size: clamp(1.25rem, 2.1vw, 1.9rem); line-height: 1.5; color: var(--ink); }
.dark .body-large { color: #fff; }
.small-note { font-size: .88rem; color: var(--muted-2); }
.red-text { color: var(--red); }

.btn {
  --btn-bg: var(--ink); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  color: var(--btn-fg); background: var(--btn-bg); font-weight: 760; letter-spacing: -.015em;
  box-shadow: none; cursor: pointer; transition: transform .28s var(--ease), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .28s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-red { --btn-bg: var(--red); }
.btn-red:hover { --btn-bg: var(--red-dark); }
.btn-white { --btn-bg: #fff; --btn-fg: var(--ink); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); }
.btn-outline:hover { background: #fff; border-color: #fff; }
.dark .btn-outline { --btn-fg: #fff; border-color: rgba(255,255,255,.25); }
.btn-arrow { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.14); transition: transform .3s var(--ease); }
.btn:hover .btn-arrow { transform: translate(3px, -3px); }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 760; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.text-link span { color: var(--red); transition: transform .3s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }

/* Header + navigation */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
  transition: background .3s ease, border-color .3s ease, transform .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(240,241,236,.88); backdrop-filter: blur(18px) saturate(135%); border-color: rgba(11,12,14,.08); }
.header-row { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: auto; height: 43px; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav > a, .nav-services > button { position: relative; border: 0; background: transparent; padding: 12px 0; font-size: .93rem; font-weight: 710; cursor: pointer; }
.primary-nav > a::after, .nav-services > button::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.primary-nav > a:hover::after, .primary-nav > a.active::after, .nav-services > button:hover::after, .nav-services.open > button::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-call { display: grid; gap: 1px; padding: 8px 14px; border-left: 1px solid var(--line); }
.header-call small { color: var(--muted); font-size: .65rem; font-weight: 760; letter-spacing: .09em; text-transform: uppercase; }
.header-call strong { font-size: .88rem; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.7); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform .3s var(--ease), opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.nav-services { position: relative; }
.mega-menu {
  position: absolute; top: calc(100% + 16px); left: 50%; width: min(860px, 86vw); padding: 26px;
  border: 1px solid var(--line); border-radius: 30px; background: rgba(255,255,255,.96); box-shadow: var(--shadow-md); backdrop-filter: blur(20px);
  opacity: 0; visibility: hidden; transform: translate(-50%, 18px) scale(.98); transition: opacity .25s ease, visibility .25s, transform .35s var(--ease);
}
.nav-services.open .mega-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0) scale(1); }
.mega-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 18px; }
.mega-feature { min-height: 270px; padding: 26px; border-radius: 24px; color: #fff; background: var(--ink); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative; }
.mega-feature::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; right: -90px; bottom: -90px; background: radial-gradient(circle, rgba(227,6,19,.75), transparent 68%); }
.mega-feature > * { position: relative; z-index: 1; }
.mega-feature h3 { font-size: 2.3rem; }
.mega-feature p { color: rgba(255,255,255,.66); font-size: .9rem; }
.mega-column { display: grid; align-content: start; gap: 5px; }
.mega-column h4 { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; margin: 4px 12px 9px; }
.mega-column a { display: flex; justify-content: space-between; align-items: center; padding: 11px 12px; border-radius: 12px; font-size: .91rem; font-weight: 650; }
.mega-column a:hover { background: var(--paper); color: var(--red); }

/* Full viewport hero */
.home-hero {
  min-height: 100svh; padding: calc(var(--header-h) + 22px) 0 30px; position: relative; overflow: clip;
  background: radial-gradient(circle at 15% 20%, rgba(227,6,19,.07), transparent 30%), var(--paper);
}
.hero-grid { min-height: calc(100svh - var(--header-h) - 52px); display: grid; grid-template-columns: minmax(0, .96fr) minmax(480px, 1.04fr); gap: clamp(28px, 4vw, 72px); align-items: center; }
.hero-copy { position: relative; z-index: 2; padding: 44px 0; }
.hero-copy h1 { max-width: 8.4ch; }
.hero-copy h1 span { color: var(--red); }
.hero-copy .lead { max-width: 53ch; margin-top: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.trust-pill { display: inline-flex; align-items: center; gap: 9px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.62); font-size: .82rem; font-weight: 690; }
.trust-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.hero-media { height: calc(100svh - var(--header-h) - 58px); min-height: 620px; position: relative; overflow: hidden; border-radius: var(--radius-xl); background: #d8d9d5; box-shadow: var(--shadow-md); }
.hero-media picture, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media img { transform: scale(1.035); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(0,0,0,.35)); pointer-events: none; }
.hero-label { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 24px; display: flex; justify-content: space-between; align-items: end; gap: 30px; color: #fff; }
.hero-label strong { font-size: 1.25rem; }
.hero-label span { max-width: 34ch; color: rgba(255,255,255,.75); font-size: .86rem; }
.hero-line { position: absolute; z-index: 3; right: 20px; top: 20px; width: 112px; height: 112px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); display: grid; place-items: center; color: #fff; font-size: .72rem; font-weight: 760; letter-spacing: .08em; text-align: center; text-transform: uppercase; backdrop-filter: blur(12px); }
.hero-bg-word { position: absolute; left: -1.5vw; bottom: -3.7vw; font-size: clamp(8rem, 18vw, 22rem); line-height: .7; letter-spacing: -.08em; font-weight: 800; color: rgba(11,12,14,.035); pointer-events: none; white-space: nowrap; }
.scroll-cue { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); display: grid; justify-items: center; gap: 8px; color: var(--muted); font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; }
.scroll-cue i { width: 1px; height: 34px; background: linear-gradient(var(--red) 50%, var(--line) 50%); background-size: 100% 200%; animation: cue 1.6s ease-in-out infinite; }
@keyframes cue { 0% { background-position: 0 100%; } 50%,100% { background-position: 0 0; } }

/* Trust rail */
.trust-rail { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-rail-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-rail article { display: grid; align-content: center; gap: 4px; padding: 24px 30px; border-right: 1px solid var(--line); }
.trust-rail article:last-child { border-right: 0; }
.trust-rail small { color: var(--muted); text-transform: uppercase; letter-spacing: .09em; font-size: .66rem; font-weight: 760; }
.trust-rail strong { font-size: 1.02rem; }

/* Editorial intro */
.intro-layout { display: grid; grid-template-columns: minmax(0, .83fr) minmax(0, 1.17fr); gap: clamp(50px, 9vw, 150px); align-items: start; }
.intro-layout h2 { position: sticky; top: 130px; max-width: 10ch; }
.intro-copy { display: grid; gap: 34px; }
.intro-copy .body-large { max-width: 30ch; }
.mini-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.mini-facts article { min-height: 190px; padding: 26px; border-radius: var(--radius-m); background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.mini-facts span { color: var(--red); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.mini-facts h3 { font-size: 2rem; max-width: 11ch; }

/* Horizontal service reel */
.service-reel { position: relative; background: var(--ink); color: #fff; overflow: clip; }
.service-reel-head { padding: clamp(90px, 9vw, 140px) 0 50px; display: grid; grid-template-columns: 1fr .6fr; align-items: end; gap: 60px; }
.service-reel-head h2 { max-width: 9.5ch; }
.service-reel-head p { color: rgba(255,255,255,.65); }
.service-reel-stage { height: 100svh; min-height: 700px; display: flex; align-items: center; overflow: hidden; position: sticky; top: 0; }
.service-track { display: flex; gap: 20px; width: max-content; padding: 0 max(32px, calc((100vw - min(1440px, calc(100vw - 64px))) / 2)); will-change: transform; }
.service-slide { width: min(76vw, 980px); height: min(72vh, 690px); position: relative; overflow: hidden; border-radius: var(--radius-l); background: #202328; flex: none; }
.service-slide picture, .service-slide img { width: 100%; height: 100%; object-fit: cover; }
.service-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.75)); }
.service-slide-copy { position: absolute; z-index: 2; inset: auto 36px 34px; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: end; }
.service-slide-number { position: absolute; z-index: 2; left: 28px; top: 25px; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: .75rem; font-weight: 800; backdrop-filter: blur(10px); }
.service-slide h3 { max-width: 10ch; font-size: clamp(2.7rem, 5vw, 5.8rem); }
.service-slide p { max-width: 44ch; color: rgba(255,255,255,.72); }
.service-slide-link { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--red); font-size: 1.5rem; transition: transform .3s var(--ease); }
.service-slide:hover .service-slide-link { transform: rotate(45deg) scale(1.05); }
.reel-progress { position: absolute; z-index: 3; left: 0; bottom: 0; height: 4px; width: var(--progress, 0%); background: var(--red); }

/* Conversion path */
.choice-head { display: grid; grid-template-columns: 1fr .7fr; gap: 60px; align-items: end; margin-bottom: 52px; }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.choice-item { min-height: 330px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.4); display: flex; flex-direction: column; transition: background .3s ease, transform .35s var(--ease), box-shadow .35s ease; }
.choice-item:hover { position: relative; z-index: 2; background: #fff; transform: translateY(-7px); box-shadow: var(--shadow-md); }
.choice-item small { color: var(--red); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.choice-item h3 { margin-top: auto; margin-bottom: 18px; }
.choice-item p { font-size: .94rem; }
.choice-item .arrow { margin-top: 24px; font-size: 1.4rem; color: var(--red); }

/* Image editorial grid */
.editorial-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 20px; }
.editorial-main, .editorial-side, .media-card { position: relative; overflow: hidden; border-radius: var(--radius-l); background: #d9dad6; }
.editorial-main { min-height: 820px; grid-row: span 2; }
.editorial-side { min-height: 400px; }
.editorial-grid picture, .editorial-grid img, .media-card picture, .media-card img { width: 100%; height: 100%; object-fit: cover; }
.media-overlay { position: absolute; inset: auto 24px 24px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; color: #fff; background: rgba(11,12,14,.48); backdrop-filter: blur(15px); }
.media-overlay p { color: rgba(255,255,255,.72); font-size: .86rem; }

/* Qualification */
.qualification-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 120px); align-items: start; }
.qualification-layout h2 { max-width: 9ch; }
.credential-list { border-top: 1px solid var(--line); }
.credential { display: grid; grid-template-columns: 76px 1fr auto; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: center; }
.credential-number { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: var(--red); font-weight: 800; }
.credential p { font-size: .91rem; }
.credential time { color: var(--muted); font-size: .82rem; }

/* Local + CTA */
.local-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
.local-copy { padding: clamp(48px, 7vw, 110px); background: #fff; display: flex; flex-direction: column; justify-content: center; }
.local-copy h2 { max-width: 10ch; }
.local-copy .lead { margin-top: 24px; }
.local-address { display: grid; gap: 12px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.local-address a { font-weight: 720; }
.local-media { min-height: 560px; }
.local-media picture, .local-media img { width: 100%; height: 100%; object-fit: cover; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 120px); }
.faq-layout > div:first-child { position: sticky; top: 130px; align-self: start; }
.faq-list { border-top: 1px solid var(--line); }
details.faq { border-bottom: 1px solid var(--line); }
details.faq summary { list-style: none; cursor: pointer; padding: 25px 54px 25px 0; position: relative; font-size: clamp(1.2rem, 1.8vw, 1.6rem); font-weight: 660; letter-spacing: -.025em; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::before, details.faq summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 18px; height: 2px; background: var(--ink); transition: transform .25s ease; }
details.faq summary::after { transform: rotate(90deg); }
details.faq[open] summary::after { transform: rotate(0); }
details.faq p { max-width: 70ch; padding: 0 40px 26px 0; }

/* Footer CTA */
.final-cta { overflow: hidden; }
.final-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
.final-cta h2 { max-width: 11ch; }
.final-cta-actions { display: grid; gap: 10px; min-width: 290px; }
.final-cta-number { display: block; margin-top: 22px; font-size: clamp(1.7rem, 3vw, 3.2rem); font-weight: 700; letter-spacing: -.04em; }

.site-footer { padding: 90px 0 30px; color: #fff; background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 54px; padding-bottom: 60px; }
.footer-brand img { height: 47px; width: auto; filter: brightness(0) invert(1); margin-bottom: 24px; }
.footer-brand p { max-width: 37ch; color: rgba(255,255,255,.57); }
.footer-column { display: grid; align-content: start; gap: 11px; }
.footer-column h3 { margin-bottom: 10px; color: rgba(255,255,255,.45); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-column a, .footer-column p { color: rgba(255,255,255,.72); font-size: .91rem; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: .8rem; }

/* Floating conversion controls */
.conversion-dock { position: fixed; z-index: 85; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 8px; padding: 7px; border: 1px solid rgba(11,12,14,.08); border-radius: 999px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-md); backdrop-filter: blur(18px); }
.conversion-dock button, .conversion-dock a { min-height: 43px; padding: 0 16px; border: 0; border-radius: 999px; font-weight: 740; cursor: pointer; }
.conversion-dock button { background: var(--ink); color: #fff; }
.conversion-dock a { display: inline-flex; align-items: center; color: #fff; background: var(--red); }
.mobile-contact-bar { display: none; }

/* Dialog */
dialog.callback-dialog { width: min(650px, calc(100% - 30px)); padding: 0; border: 0; border-radius: var(--radius-l); background: #fff; box-shadow: var(--shadow-md); }
dialog.callback-dialog::backdrop { background: rgba(11,12,14,.55); backdrop-filter: blur(8px); }
.dialog-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; padding: 32px 34px 20px; }
.dialog-head h2 { max-width: 9ch; font-size: clamp(2.5rem, 6vw, 4.7rem); }
.dialog-close { width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; font-size: 1.4rem; }
.dialog-body { padding: 0 34px 34px; }

/* Forms */
.form-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr); gap: 24px; }
.form-card, .contact-card { padding: clamp(28px, 4vw, 54px); border: 1px solid var(--line); border-radius: var(--radius-l); background: #fff; }
.form-card h2, .contact-card h2 { font-size: clamp(2.6rem, 5vw, 5rem); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; margin-top: 34px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label, .field > span { color: var(--ink); font-size: .81rem; font-weight: 740; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-s); padding: 15px 16px; color: var(--ink); background: var(--paper); outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); background: #fff; box-shadow: 0 0 0 4px rgba(227,6,19,.09); }
.field textarea { min-height: 170px; resize: vertical; }
.checkbox { display: flex; gap: 12px; align-items: start; margin: 22px 0; }
.checkbox input { margin-top: 4px; accent-color: var(--red); }
.checkbox label { font-size: .86rem; color: var(--muted); }
.checkbox a { text-decoration: underline; }
.honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-status { padding: 13px 15px; margin: 14px 0 0; border-radius: 14px; font-size: .9rem; display: none; }
.form-status.error { display: block; color: #79202a; background: var(--red-soft); }
.contact-card.dark-card { color: #fff; background: var(--ink); border-color: var(--ink); }
.contact-card.dark-card p { color: rgba(255,255,255,.66); }
.contact-lines { margin-top: 26px; border-top: 1px solid var(--line-dark); }
.contact-lines a, .contact-lines div { display: grid; gap: 4px; padding: 19px 0; border-bottom: 1px solid var(--line-dark); }
.contact-lines small { color: rgba(255,255,255,.42); font-size: .67rem; font-weight: 760; text-transform: uppercase; letter-spacing: .11em; }
.contact-lines strong { color: #fff; font-size: 1.18rem; }
.notice { padding: 17px 19px; margin-top: 24px; border-radius: 18px; color: #552027; background: var(--red-soft); border: 1px solid #ffd1d5; }

/* Page hero */
.page-hero { min-height: 100svh; padding: calc(var(--header-h) + 30px) 0 42px; display: flex; align-items: stretch; overflow: clip; }
.page-hero-grid { flex: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.page-hero-copy h1 { max-width: 8.6ch; font-size: clamp(4.2rem, 8.2vw, 9.8rem); }
.page-hero-copy .lead { margin-top: 26px; max-width: 54ch; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: var(--muted); font-size: .78rem; }
.breadcrumb a:hover { color: var(--red); }
.page-hero-media { height: calc(100svh - var(--header-h) - 72px); min-height: 600px; position: relative; overflow: hidden; border-radius: var(--radius-xl); }
.page-hero-media picture, .page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(0,0,0,.28)); }
.page-hero-index { position: absolute; z-index: 2; left: 24px; bottom: 22px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; color: #fff; font-size: .7rem; font-weight: 780; letter-spacing: .09em; text-transform: uppercase; backdrop-filter: blur(12px); }

/* Service page */
.service-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 120px); }
.service-intro h2 { max-width: 9ch; position: sticky; top: 130px; }
.service-prose { display: grid; gap: 24px; }
.service-prose p { font-size: 1.08rem; line-height: 1.75; }
.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.scope-item { min-height: 230px; padding: 24px; border-radius: var(--radius-m); background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; }
.scope-item span { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.scope-item h3 { margin-top: auto; font-size: 1.55rem; }
.scope-item p { margin-top: 12px; font-size: .9rem; }
.service-image-split { display: grid; grid-template-columns: 1.14fr .86fr; min-height: 760px; }
.service-image { min-height: 580px; overflow: hidden; border-radius: var(--radius-l); }
.service-image picture, .service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-image-copy { padding: clamp(42px, 7vw, 100px); display: flex; flex-direction: column; justify-content: center; }
.service-image-copy h2 { max-width: 10ch; }
.service-image-copy p { margin-top: 24px; }
.process-head { display: grid; grid-template-columns: 1fr .7fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.process-list { border-top: 1px solid var(--line); counter-reset: process; }
.process-row { counter-increment: process; display: grid; grid-template-columns: 90px minmax(220px,.8fr) 1.2fr; gap: 30px; padding: 29px 0; border-bottom: 1px solid var(--line); align-items: start; }
.process-row::before { content: "0" counter(process); color: var(--red); font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.process-row h3 { font-size: 1.6rem; }
.process-row p { max-width: 60ch; }
.usecase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.usecase { min-height: 360px; position: relative; overflow: hidden; padding: 28px; border-radius: var(--radius-l); background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: end; }
.usecase::before { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -55px; top: -55px; background: radial-gradient(circle, rgba(227,6,19,.14), transparent 67%); }
.usecase h3, .usecase p { position: relative; }
.usecase p { margin-top: 14px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.related-card { min-height: 260px; padding: 26px; border-radius: var(--radius-m); background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; transition: transform .3s var(--ease), box-shadow .3s ease; }
.related-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.related-card span { color: var(--red); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.related-card h3 { max-width: 12ch; }
.related-card b { color: var(--red); font-size: 1.3rem; }

/* Hub / index pages */
.hub-hero { padding: calc(var(--header-h) + 80px) 0 85px; background: #fff; }
.hub-hero-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 70px; align-items: end; }
.hub-hero h1 { max-width: 9ch; }
.hub-hero .lead { margin-left: auto; }
.service-directory { border-top: 1px solid var(--line); }
.directory-row { display: grid; grid-template-columns: 80px minmax(260px, .9fr) 1.1fr 40px; gap: 28px; align-items: center; min-height: 164px; border-bottom: 1px solid var(--line); transition: background .25s ease, padding .35s var(--ease); }
.directory-row:hover { background: #fff; padding-inline: 20px; }
.directory-row > span { color: var(--red); font-size: .76rem; font-weight: 800; }
.directory-row h2 { font-size: clamp(2rem, 3.6vw, 4rem); letter-spacing: -.05em; }
.directory-row p { max-width: 53ch; }
.directory-row b { font-size: 1.4rem; color: var(--red); }
.category-head { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; margin-bottom: 34px; }
.category-head h2 { max-width: 10ch; }

/* Article pages */
.article-hero { padding: calc(var(--header-h) + 60px) 0 70px; background: #fff; }
.article-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: end; }
.article-hero h1 { max-width: 12ch; font-size: clamp(3.8rem, 7.3vw, 8.2rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.article-meta span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .74rem; }
.article-hero-media { min-height: 560px; border-radius: var(--radius-l); overflow: hidden; }
.article-hero-media picture, .article-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { display: grid; grid-template-columns: 260px minmax(0, 820px); gap: 70px; justify-content: center; }
.article-toc { position: sticky; top: 120px; align-self: start; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.article-toc h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 13px; }
.article-toc a { display: block; padding: 8px 0; color: var(--muted); font-size: .86rem; }
.article-toc a:hover { color: var(--red); }
.article-content h2 { margin: 58px 0 20px; font-size: clamp(2.3rem, 4vw, 4rem); max-width: 14ch; }
.article-content h3 { margin: 34px 0 14px; font-size: 1.6rem; }
.article-content p, .article-content li { font-size: 1.08rem; line-height: 1.75; }
.article-content p { margin: 0 0 20px; }
.article-content ul, .article-content ol { padding-left: 22px; }
.article-callout { margin: 34px 0; padding: 26px; border-left: 4px solid var(--red); border-radius: 0 20px 20px 0; background: #fff; }
.article-callout strong { display: block; margin-bottom: 8px; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.price-card { padding: 36px; border-radius: var(--radius-l); border: 1px solid var(--line); background: #fff; }
.price-card.featured { color: #fff; background: var(--ink); border-color: var(--ink); }
.price-card.featured p { color: rgba(255,255,255,.62); }
.price-row { display: flex; justify-content: space-between; gap: 25px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.featured .price-row { border-color: var(--line-dark); }
.price-row strong { text-align: right; }
.price-total { display: flex; justify-content: space-between; gap: 20px; align-items: end; padding-top: 28px; }
.price-total strong { font-size: clamp(2.6rem, 5vw, 5.5rem); letter-spacing: -.07em; }

/* Legal / utility */
.legal-hero { padding: calc(var(--header-h) + 70px) 0 70px; background: #fff; }
.legal-hero h1 { font-size: clamp(4rem, 8vw, 9rem); }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 800px); gap: 80px; justify-content: center; }
.legal-nav { position: sticky; top: 120px; align-self: start; color: var(--muted); font-size: .82rem; }
.legal-content h2 { margin: 44px 0 14px; font-size: 1.8rem; letter-spacing: -.035em; }
.legal-content p, .legal-content li { line-height: 1.75; }
.utility-page { min-height: 100svh; display: flex; align-items: center; padding: 130px 0 80px; background: radial-gradient(circle at 15% 20%, rgba(227,6,19,.09), transparent 35%), var(--paper); }
.utility-page h1 { max-width: 9ch; }
.utility-mark { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 50%; color: #fff; background: var(--red); font-size: 1.6rem; }

/* Motion fallbacks and enhancements */
.js [data-reveal] { opacity: 0; transform: translateY(32px); }
.js [data-reveal].is-visible { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal-delay="1"].is-visible { transition-delay: .08s; }
.js [data-reveal-delay="2"].is-visible { transition-delay: .16s; }
.js [data-reveal-delay="3"].is-visible { transition-delay: .24s; }
.split-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .05em; }
.split-word > span { display: inline-block; transform: translateY(110%); opacity: 0; }
.split-ready .split-word > span { animation: word-in .86s var(--ease) forwards; animation-delay: calc(var(--word-index) * 38ms); }
@keyframes word-in { to { transform: none; opacity: 1; } }
[data-parallax] img { will-change: transform; }
.spotlight { position: fixed; z-index: -1; width: 420px; height: 420px; left: 0; top: 0; border-radius: 50%; background: radial-gradient(circle, rgba(227,6,19,.07), transparent 66%); pointer-events: none; transform: translate(-50%, -50%); opacity: 0; transition: opacity .3s ease; }
body:hover .spotlight { opacity: 1; }

@supports (animation-timeline: view()) {
  .scroll-reveal-native { animation: native-reveal both; animation-timeline: view(); animation-range: entry 5% cover 32%; }
  @keyframes native-reveal { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: none; } }
}

/* Responsive */
@media (max-width: 1180px) {
  :root { --shell: min(100% - 42px, 1040px); }
  .primary-nav { gap: 18px; }
  .header-call { display: none; }
  .hero-grid, .page-hero-grid { grid-template-columns: .92fr 1.08fr; gap: 34px; }
  .hero-media, .page-hero-media { min-height: 560px; }
  .choice-grid { grid-template-columns: repeat(2, 1fr); }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.25fr 1fr 1fr; }
  .footer-top > :last-child { grid-column: 2 / -1; }
  .directory-row { grid-template-columns: 60px minmax(240px,.9fr) 1.1fr 30px; }
}

@media (max-width: 920px) {
  :root { --header-h: 74px; --shell: calc(100% - 30px); }
  .site-header { height: var(--header-h); }
  .brand img { height: 38px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: 0; z-index: -1; padding: calc(var(--header-h) + 30px) 24px 40px; color: var(--ink); background: var(--paper);
    display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-22px); transition: opacity .3s ease, visibility .3s, transform .45s var(--ease);
  }
  .primary-nav.open { opacity: 1; visibility: visible; transform: none; }
  .primary-nav > a, .nav-services > button { width: 100%; text-align: left; padding: 9px 0; font-size: clamp(2.1rem, 8vw, 4.3rem); letter-spacing: -.055em; }
  .primary-nav > a::after, .nav-services > button::after { display: none; }
  .nav-services { width: 100%; }
  .mega-menu { position: static; width: 100%; padding: 0; border: 0; border-radius: 0; box-shadow: none; background: transparent; opacity: 1; visibility: visible; transform: none; display: none; }
  .nav-services.open .mega-menu { display: block; }
  .mega-grid { grid-template-columns: 1fr; padding: 12px 0 20px; }
  .mega-feature { display: none; }
  .mega-column h4 { margin-left: 0; }
  .mega-column a { padding: 8px 0; font-size: 1rem; }
  .header-actions .btn { display: none; }
  .home-hero { padding-top: calc(var(--header-h) + 25px); }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 30px 0 18px; }
  .hero-copy h1 { font-size: clamp(4rem, 14vw, 7.2rem); }
  .hero-media { height: 68svh; min-height: 520px; }
  .scroll-cue { display: none; }
  .trust-rail-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-rail article:nth-child(2) { border-right: 0; }
  .trust-rail article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .intro-layout, .qualification-layout, .faq-layout, .service-intro, .form-layout, .article-layout, .local-layout { grid-template-columns: 1fr; }
  .intro-layout h2, .qualification-layout h2, .faq-layout > div:first-child, .service-intro h2, .article-toc { position: static; }
  .service-reel-head, .choice-head, .process-head, .hub-hero-grid, .article-hero-grid, .final-cta-grid { grid-template-columns: 1fr; }
  .service-reel-stage { height: auto; min-height: auto; position: static; padding-bottom: 75px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .service-reel-stage::-webkit-scrollbar { display: none; }
  .service-track { transform: none !important; padding: 0 15px; }
  .service-slide { width: min(86vw, 680px); height: 65svh; min-height: 520px; scroll-snap-align: center; }
  .reel-progress { display: none; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-main { min-height: 650px; grid-row: auto; }
  .editorial-side { min-height: 450px; }
  .local-copy { padding: 65px 24px; }
  .local-media { min-height: 520px; }
  .page-hero { min-height: auto; padding-top: calc(var(--header-h) + 50px); }
  .page-hero-copy h1 { font-size: clamp(4rem, 13vw, 7rem); }
  .page-hero-media { height: 67svh; min-height: 520px; }
  .service-image-split { grid-template-columns: 1fr; min-height: auto; }
  .service-image { min-height: 600px; border-radius: 0; }
  .usecase-grid, .related-grid { grid-template-columns: 1fr; }
  .usecase { min-height: 280px; }
  .directory-row { grid-template-columns: 45px 1fr 28px; gap: 15px; padding: 22px 0; }
  .directory-row p { grid-column: 2 / -1; }
  .article-hero-media { min-height: 480px; }
  .price-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 20px; }
  .legal-nav { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :last-child { grid-column: auto; }
  .conversion-dock { display: none; }
  .mobile-contact-bar { position: fixed; z-index: 90; display: grid; grid-template-columns: 1fr 1fr; left: 12px; right: 12px; bottom: 12px; padding: 6px; border: 1px solid rgba(11,12,14,.08); border-radius: 999px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-md); backdrop-filter: blur(18px); }
  .mobile-contact-bar a, .mobile-contact-bar button { min-height: 48px; display: grid; place-items: center; border: 0; border-radius: 999px; font-weight: 780; }
  .mobile-contact-bar button { color: #fff; background: var(--ink); }
  .mobile-contact-bar a { color: #fff; background: var(--red); }
  .site-footer { padding-bottom: 105px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 24px); --radius-l: 28px; --radius-xl: 32px; }
  .section { padding: 82px 0; }
  h1 { font-size: clamp(3.5rem, 17vw, 6.2rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.8rem); }
  .hero-copy h1, .page-hero-copy h1 { font-size: clamp(3.55rem, 17vw, 5.9rem); }
  .hero-media { min-height: 470px; height: 62svh; }
  .hero-label { display: block; left: 18px; right: 18px; bottom: 18px; }
  .hero-label span { display: block; margin-top: 7px; }
  .hero-line { width: 88px; height: 88px; right: 12px; top: 12px; }
  .hero-actions { display: grid; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .trust-rail-grid { grid-template-columns: 1fr; }
  .trust-rail article { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-rail article:last-child { border-bottom: 0; }
  .mini-facts, .choice-grid, .scope-grid, .form-grid { grid-template-columns: 1fr; }
  .service-slide { width: 88vw; height: 66svh; min-height: 500px; border-radius: 28px; }
  .service-slide-copy { inset: auto 22px 22px; grid-template-columns: 1fr; }
  .service-slide h3 { font-size: 3rem; }
  .service-slide-link { width: 50px; height: 50px; }
  .editorial-main { min-height: 560px; }
  .editorial-side { min-height: 360px; }
  .credential { grid-template-columns: 58px 1fr; }
  .credential time { grid-column: 2; }
  .page-hero-media { min-height: 430px; height: 58svh; }
  .service-image { min-height: 480px; }
  .process-row { grid-template-columns: 46px 1fr; gap: 16px; }
  .process-row p { grid-column: 2; }
  .directory-row { grid-template-columns: 36px 1fr 24px; }
  .directory-row h2 { font-size: 2rem; }
  .article-hero-media { min-height: 400px; }
  .article-layout { gap: 30px; }
  .article-toc { display: none; }
  .form-card, .contact-card { padding: 26px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .dialog-head { padding: 25px 22px 16px; }
  .dialog-body { padding: 0 22px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .split-word > span { transform: none !important; opacity: 1 !important; }
  .service-track { transform: none !important; }
  [data-parallax] img { transform: none !important; }
  .spotlight { display: none; }
}

[id]{scroll-margin-top:110px}.contextual-parent-link{display:inline-flex;margin:1rem 0 0}.related-card-guide{outline:1px solid rgba(227,6,19,.18)}


/* ===== Servicewelt Update 2026: full-image sales pages ===== */
body.service-page-v2 { background: var(--white); }
body.service-page-v2 .site-header:not(.scrolled) { color:#fff; }
body.service-page-v2 .site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
body.service-page-v2 .site-header:not(.scrolled) .primary-nav > a,
body.service-page-v2 .site-header:not(.scrolled) .nav-services > button,
body.service-page-v2 .site-header:not(.scrolled) .header-call strong { color:#fff; }
body.service-page-v2 .site-header:not(.scrolled) .header-call { border-color:rgba(255,255,255,.25); }
body.service-page-v2 .site-header:not(.scrolled) .header-call small { color:rgba(255,255,255,.66); }
body.service-page-v2 .site-header:not(.scrolled) .menu-toggle { border-color:rgba(255,255,255,.35); background:rgba(0,0,0,.15); }
body.service-page-v2 .site-header:not(.scrolled) .menu-toggle span { background:#fff; }
body.service-page-v2 .site-header:not(.scrolled) .btn-outline { color:#fff; border-color:rgba(255,255,255,.32); }

.service-hero-v2 { position:relative; min-height:100svh; color:#fff; overflow:hidden; isolation:isolate; background:#111; }
.service-hero-picture, .service-hero-picture img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.service-hero-picture img { transform:scale(1.035); will-change:transform; }
.service-hero-overlay { position:absolute; inset:0; z-index:1; background:
  linear-gradient(90deg,rgba(5,6,8,.88) 0%,rgba(5,6,8,.68) 42%,rgba(5,6,8,.12) 78%,rgba(5,6,8,.22) 100%),
  linear-gradient(180deg,rgba(5,6,8,.44) 0%,transparent 34%,rgba(5,6,8,.72) 100%); }
.service-hero-v2-inner { min-height:100svh; padding-top:calc(var(--header-h) + 70px); padding-bottom:54px; position:relative; z-index:2; display:flex; flex-direction:column; justify-content:flex-end; }
.service-hero-v2-copy { max-width:min(920px,78vw); padding-bottom:90px; }
.service-breadcrumb { display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin-bottom:34px; color:rgba(255,255,255,.58); font-size:.78rem; font-weight:670; }
.service-breadcrumb strong { color:#fff; }
.service-kicker { margin:0 0 20px; color:#fff; font-size:.78rem; font-weight:800; text-transform:uppercase; letter-spacing:.14em; }
.service-kicker::before { content:""; display:inline-block; width:34px; height:2px; margin:0 12px 4px 0; background:var(--red); }
.service-hero-v2 h1 { max-width:10.5ch; font-size:clamp(4.2rem,8.2vw,10.2rem); line-height:.88; letter-spacing:-.07em; }
.service-hero-v2 h1 em { color:#fff; font-style:normal; position:relative; }
.service-hero-v2 h1 em::after { content:""; position:absolute; left:0; right:0; bottom:.03em; height:.055em; background:var(--red); transform:scaleX(.98); transform-origin:left; }
.service-hero-lead { max-width:66ch; margin-top:28px; color:rgba(255,255,255,.78); font-size:clamp(1.08rem,1.5vw,1.38rem); }
.service-hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:34px; }
.service-ghost { color:#fff; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.28); backdrop-filter:blur(12px); }
.service-ghost:hover { background:#fff; color:var(--ink); }
.service-hero-proof { position:absolute; left:0; right:0; bottom:0; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); border-top:1px solid rgba(255,255,255,.22); color:rgba(255,255,255,.8); }
.service-hero-proof span { min-height:64px; display:flex; align-items:center; padding:0 28px; border-right:1px solid rgba(255,255,255,.2); font-size:.78rem; font-weight:760; letter-spacing:.035em; text-transform:uppercase; }
.service-hero-proof span:first-child { padding-left:0; }
.service-scroll-cue { position:absolute; right:0; bottom:87px; display:flex; align-items:center; gap:13px; color:rgba(255,255,255,.72); font-size:.72rem; font-weight:750; text-transform:uppercase; letter-spacing:.1em; }
.service-scroll-cue i { width:44px; height:44px; border:1px solid rgba(255,255,255,.35); border-radius:50%; position:relative; }
.service-scroll-cue i::after { content:""; position:absolute; width:7px; height:7px; border-right:2px solid #fff; border-bottom:2px solid #fff; transform:rotate(45deg); left:17px; top:14px; animation:scrollCue 1.8s ease-in-out infinite; }
@keyframes scrollCue { 0%,100%{transform:translateY(-2px) rotate(45deg);opacity:.5}50%{transform:translateY(5px) rotate(45deg);opacity:1} }

.service-jump-nav { position:sticky; top:var(--header-h); z-index:48; background:rgba(255,255,255,.92); border-bottom:1px solid var(--line); backdrop-filter:blur(18px) saturate(130%); }
.service-jump-nav .shell { min-height:62px; display:flex; align-items:center; gap:26px; overflow-x:auto; scrollbar-width:none; }
.service-jump-nav .shell::-webkit-scrollbar { display:none; }
.service-jump-nav a { flex:0 0 auto; color:var(--muted); font-size:.82rem; font-weight:730; }
.service-jump-nav a.is-active { color:var(--ink); }
.service-jump-nav a.is-active::before { content:""; display:inline-block; width:7px; height:7px; margin-right:8px; border-radius:50%; background:var(--red); }
.service-jump-nav .service-jump-cta { margin-left:auto; padding:10px 16px; border-radius:999px; color:#fff; background:var(--red); }

.service-opening-grid { display:grid; grid-template-columns:minmax(0,1.18fr) minmax(360px,.82fr); gap:clamp(60px,9vw,150px); align-items:start; }
.service-opening h2 { max-width:13ch; }
.service-opening-copy { padding-top:18px; }
.service-opening-copy h3 { margin-bottom:18px; max-width:19ch; }
.service-check-list { list-style:none; display:grid; gap:14px; padding:0; margin:28px 0 30px; }
.service-check-list li { display:grid; grid-template-columns:25px 1fr; gap:12px; align-items:start; color:var(--muted); }
.service-check-list svg { width:22px; height:22px; padding:4px; border-radius:50%; color:#fff; background:var(--red); }
.service-alert { width:var(--shell); margin:55px auto 0; padding:24px 28px; display:grid; grid-template-columns:180px 1fr; gap:25px; border-radius:24px; color:#fff; background:var(--red); }
.service-alert p { color:rgba(255,255,255,.78); }

.service-section-head { display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.55fr); gap:60px; align-items:end; margin-bottom:52px; }
.service-section-head h2 { max-width:12ch; }
.service-capability-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.service-capability { min-height:320px; padding:34px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); background:rgba(255,255,255,.62); transition:background .35s ease,transform .35s var(--ease),box-shadow .35s ease; }
.service-capability:hover { position:relative; z-index:2; background:#fff; transform:translateY(-7px); box-shadow:var(--shadow-md); }
.service-capability > span { display:block; margin-bottom:66px; color:var(--red); font-size:.72rem; font-weight:800; letter-spacing:.1em; }
.service-capability h3 { margin-bottom:16px; }

.service-benefit-layout { display:grid; grid-template-columns:minmax(0,.84fr) minmax(0,1.16fr); gap:clamp(60px,9vw,150px); }
.service-sticky-copy { position:sticky; top:calc(var(--header-h) + 108px); align-self:start; }
.service-sticky-copy h2 { max-width:10.5ch; }
.service-sticky-copy .lead { margin:26px 0 30px; }
.service-benefit-cards { display:grid; gap:18px; }
.service-benefit-cards article { min-height:270px; padding:38px; border-radius:var(--radius-l); color:#fff; background:var(--ink); position:relative; overflow:hidden; }
.service-benefit-cards article:nth-child(2) { color:var(--ink); background:var(--paper); border:1px solid var(--line); }
.service-benefit-cards article:nth-child(3) { background:var(--red); }
.service-benefit-cards strong { display:block; margin-bottom:60px; font-size:.72rem; letter-spacing:.12em; }
.service-benefit-cards h3 { font-size:clamp(2rem,3.4vw,3.8rem); }
.service-benefit-cards p { max-width:42ch; margin-top:14px; color:rgba(255,255,255,.67); }
.service-benefit-cards article:nth-child(2) p { color:var(--muted); }

.service-visual-break { position:relative; min-height:86svh; display:flex; align-items:flex-end; overflow:hidden; isolation:isolate; color:#fff; }
.service-visual-picture, .service-visual-picture img { position:absolute; inset:-6%; width:112%; height:112%; object-fit:cover; }
.service-visual-overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(180deg,rgba(0,0,0,.04) 20%,rgba(0,0,0,.82) 100%); }
.service-visual-copy { position:relative; z-index:2; padding-bottom:clamp(70px,9vw,130px); }
.service-visual-copy h2 { max-width:11ch; }
.service-visual-copy p { max-width:56ch; margin-top:24px; color:rgba(255,255,255,.72); font-size:1.2rem; }
.service-visual-copy .eyebrow { color:#fff; }

.service-process-layout { display:grid; grid-template-columns:minmax(0,.75fr) minmax(0,1.25fr); gap:clamp(60px,9vw,150px); }
.service-process-intro { position:sticky; top:calc(var(--header-h) + 100px); align-self:start; }
.service-process-intro h2 { max-width:10ch; }
.service-process-intro .lead { margin-top:28px; }
.service-process-list { border-top:1px solid var(--line); }
.service-process-step { display:grid; grid-template-columns:92px 1fr; gap:28px; padding:34px 0; border-bottom:1px solid var(--line); }
.service-process-step > span { color:var(--red); font-size:.78rem; font-weight:800; letter-spacing:.08em; }
.service-process-step h3 { margin-bottom:10px; }

.service-quote-grid { display:grid; grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr); gap:22px; align-items:stretch; }
.service-quote-media { min-height:720px; border-radius:var(--radius-xl); overflow:hidden; }
.service-quote-picture, .service-quote-picture img { width:100%; height:100%; object-fit:cover; }
.service-quote-card { display:flex; flex-direction:column; justify-content:center; padding:clamp(34px,5vw,72px); border-radius:var(--radius-xl); color:#fff; background:var(--ink); }
.service-quote-card .eyebrow { color:#fff; }
.service-quote-card h2 { font-size:clamp(3rem,5vw,6rem); }
.service-quote-card > p { margin-top:22px; color:rgba(255,255,255,.67); }
.service-quote-card .service-check-list li { color:rgba(255,255,255,.72); }
.service-quote-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:10px; }
.service-quote-card .btn-outline { color:#fff; border-color:rgba(255,255,255,.26); }

.service-faq-v2 { align-items:start; }
.service-related-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; margin-top:45px; }
.service-related-card { min-height:300px; padding:30px; border:1px solid var(--line); border-radius:var(--radius-l); background:#fff; position:relative; display:flex; flex-direction:column; justify-content:flex-end; transition:transform .35s var(--ease),box-shadow .35s ease,border-color .35s ease; }
.service-related-card:hover { transform:translateY(-8px); border-color:transparent; box-shadow:var(--shadow-md); }
.service-related-card span { position:absolute; top:28px; left:30px; color:var(--red); font-size:.72rem; font-weight:800; text-transform:uppercase; letter-spacing:.1em; }
.service-related-card h3 { max-width:10ch; font-size:clamp(2rem,3vw,3.2rem); }
.service-related-card b { position:absolute; right:28px; top:25px; font-size:1.5rem; color:var(--red); }

.service-final-cta { min-height:78svh; position:relative; display:flex; align-items:center; color:#fff; overflow:hidden; isolation:isolate; }
.service-final-bg, .service-final-picture, .service-final-picture img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.service-final-overlay { position:absolute; inset:0; z-index:1; background:linear-gradient(90deg,rgba(5,6,8,.92),rgba(5,6,8,.54) 62%,rgba(5,6,8,.2)); }
.service-final-inner { position:relative; z-index:2; display:grid; grid-template-columns:minmax(0,1fr) auto; gap:60px; align-items:end; padding-block:100px; }
.service-final-inner h2 { max-width:11ch; }
.service-final-inner p { max-width:54ch; margin-top:24px; color:rgba(255,255,255,.7); font-size:1.15rem; }
.service-final-actions { display:grid; gap:12px; min-width:290px; }

@supports (animation-timeline: view()) {
  .service-capability { animation:serviceCardIn linear both; animation-timeline:view(); animation-range:entry 0% cover 32%; }
  @keyframes serviceCardIn { from{opacity:.2;transform:translateY(36px)} to{opacity:1;transform:none} }
}

@media (max-width:1100px) {
  .service-hero-v2-copy { max-width:86vw; }
  .service-opening-grid,.service-section-head,.service-benefit-layout,.service-process-layout,.service-quote-grid { grid-template-columns:1fr; }
  .service-sticky-copy,.service-process-intro { position:static; }
  .service-capability-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .service-quote-media { min-height:560px; }
  .service-final-inner { grid-template-columns:1fr; }
  .service-final-actions { min-width:0; display:flex; flex-wrap:wrap; }
}
@media (max-width:920px) {
  body.service-page-v2 .site-header:not(.scrolled) .primary-nav { color:var(--ink); }
  .service-hero-v2-copy { max-width:100%; padding-bottom:122px; }
  .service-hero-overlay { background:linear-gradient(180deg,rgba(5,6,8,.58),rgba(5,6,8,.44) 28%,rgba(5,6,8,.9) 100%); }
  .service-hero-proof { grid-template-columns:1fr; }
  .service-hero-proof span { min-height:44px; padding:0; border-right:0; border-bottom:1px solid rgba(255,255,255,.15); }
  .service-hero-proof span:nth-child(2),.service-hero-proof span:nth-child(3) { display:none; }
  .service-scroll-cue { display:none; }
  .service-jump-nav { top:0; }
  .service-jump-nav .service-jump-cta { display:none; }
  .service-related-grid { grid-template-columns:1fr; }
}
@media (max-width:700px) {
  .service-hero-v2-inner { padding-top:calc(var(--header-h) + 40px); padding-bottom:28px; }
  .service-hero-v2 h1 { font-size:clamp(3.4rem,16vw,5.7rem); }
  .service-hero-v2-copy { padding-bottom:88px; }
  .service-breadcrumb { margin-bottom:22px; }
  .service-hero-actions { display:grid; }
  .service-hero-actions .btn { width:100%; }
  .service-jump-nav .shell { gap:18px; min-height:56px; }
  .service-opening-grid { gap:45px; }
  .service-alert { grid-template-columns:1fr; }
  .service-capability-grid { grid-template-columns:1fr; }
  .service-capability { min-height:250px; padding:28px; }
  .service-capability > span { margin-bottom:38px; }
  .service-benefit-cards article { min-height:240px; padding:30px; }
  .service-visual-break { min-height:70svh; }
  .service-process-step { grid-template-columns:52px 1fr; }
  .service-quote-media { min-height:420px; }
  .service-quote-card { padding:34px 24px; }
  .service-related-card { min-height:230px; }
  .service-final-cta { min-height:72svh; }
  .service-final-inner { padding-block:76px 110px; }
  .service-final-actions { display:grid; }
}
@media (prefers-reduced-motion:reduce) {
  .service-hero-picture img,.service-visual-picture img { transform:none!important; }
  .service-scroll-cue i::after { animation:none; }
}
