:root {
  --bg: #080a0d;
  --bg-soft: #0d1116;
  --panel: #11161c;
  --panel-2: #151b22;
  --line: rgba(255, 255, 255, 0.11);
  --line-soft: rgba(255, 255, 255, 0.065);
  --text: #f4f7f9;
  --muted: #8e9aa5;
  --blue: #0877cf;
  --blue-bright: #2ba9ff;
  --blue-deep: #054176;
  --font-display: "Unbounded", "Arial Black", sans-serif;
  --font-body: "Golos Text", Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; min-width: 320px; background: var(--bg); color: var(--text); font-family: var(--font-body); overflow-x: hidden; }
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }
::selection { color: white; background: var(--blue); }
:where(a, button, input, textarea, select, summary):focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 4px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.grain { position: fixed; inset: 0; z-index: 90; opacity: .035; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); }
.cursor-glow { position: fixed; width: 480px; height: 480px; margin: -240px 0 0 -240px; border-radius: 50%; background: radial-gradient(circle, rgba(17, 122, 205, .08), transparent 66%); pointer-events: none; z-index: 1; opacity: 0; transition: opacity .4s; }
body:hover .cursor-glow { opacity: 1; }
.cursor-ring { position: fixed; z-index: 910; left: 0; top: 0; width: 34px; height: 34px; margin: -17px 0 0 -17px; border: 1px solid rgba(164,209,239,.55); border-radius: 50%; pointer-events: none; opacity: 0; transition: width .22s, height .22s, margin .22s, border-color .22s, background .22s, opacity .3s; mix-blend-mode: difference; }
.cursor-ring span { position: absolute; left: 50%; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: white; transform: translate(-50%,-50%); }
body:hover .cursor-ring { opacity: 1; }
body.cursor-active .cursor-ring { width: 54px; height: 54px; margin: -27px 0 0 -27px; border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); }

.page-loader { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: #050608; transition: visibility .28s .08s, opacity .28s .08s; animation: loaderExit .3s .72s forwards; }
.page-loader::before { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 38%, rgba(7, 114, 197, .3) 50%, transparent 62%); transform: translateX(-100%); animation: loaderBeam .68s ease both; }
.page-loader__mark { position: relative; text-align: center; font-family: var(--font-display); }
.page-loader__mark span { display: block; font-size: clamp(28px, 4vw, 58px); font-weight: 600; letter-spacing: .04em; }
.page-loader__mark small { display: block; margin-top: 8px; color: #7d8b97; font: 500 9px/1 var(--font-mono); letter-spacing: .42em; }
.page-loader__rail { position: absolute; left: 50%; bottom: 18%; width: 160px; height: 1px; transform: translateX(-50%); background: #1c232a; overflow: hidden; }
.page-loader__rail span { display: block; width: 100%; height: 100%; background: var(--blue-bright); transform: translateX(-100%); animation: loaderRail .64s cubic-bezier(.7, 0, .2, 1) forwards; }
body.is-loaded .page-loader { opacity: 0; visibility: hidden; }
@keyframes loaderRail { to { transform: none; } }
@keyframes loaderBeam { 50%, 100% { transform: translateX(100%); } }
@keyframes loaderExit { to { opacity: 0; visibility: hidden; } }

.section-transition { position: fixed; inset: 0; z-index: 950; visibility: hidden; pointer-events: none; display: grid; place-items: center; background: #06080b; clip-path: inset(0 100% 0 0); }
.section-transition.is-active { visibility: visible; animation: sectionWipe .64s cubic-bezier(.76, 0, .24, 1) both; }
.section-transition__beam { position: absolute; inset: 0; background: linear-gradient(105deg, transparent 38%, rgba(0, 113, 203, .35) 51%, transparent 64%); transform: translateX(-85%); }
.section-transition.is-active .section-transition__beam { animation: transitionBeam .64s ease both; }
.section-transition__label { display: flex; flex-direction: column; align-items: center; gap: 7px; font-family: var(--font-display); opacity: 0; }
.section-transition.is-active .section-transition__label { animation: transitionLabel .42s .1s ease both; }
.section-transition__label span { color: #64717d; font: 500 9px/1 var(--font-mono); letter-spacing: .4em; }
.section-transition__label strong { font-size: clamp(24px, 4vw, 56px); letter-spacing: .04em; }
@keyframes sectionWipe { 0% { clip-path: inset(0 100% 0 0); } 40%, 62% { clip-path: inset(0 0 0 0); } 100% { clip-path: inset(0 0 0 100%); } }
@keyframes transitionBeam { to { transform: translateX(85%); } }
@keyframes transitionLabel { 0% { opacity: 0; transform: translateY(8px); } 45%, 65% { opacity: 1; transform: none; } 100% { opacity: 0; transform: translateY(-8px); } }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: 116px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(22px, 4.4vw, 84px); border-bottom: 1px solid rgba(255, 255, 255, .08); background: rgba(8, 10, 13, .62); backdrop-filter: blur(18px); transition: height .3s, background .3s; }
.site-header::after { content: ""; position: absolute; left: 0; bottom: -1px; width: calc(var(--scroll-progress, 0) * 1%); height: 1px; background: linear-gradient(90deg, #075f9e, var(--blue-bright)); box-shadow: 0 0 10px rgba(43,169,255,.55); }
.site-header.is-scrolled { height: 96px; background: rgba(7, 9, 12, .9); }
.brand { display: inline-flex; align-items: center; gap: 17px; }
.brand__roundel { position: relative; width: 56px; height: 56px; flex: 0 0 56px; border: 1px solid #8ea6b6; border-radius: 50%; display: grid; place-items: center; overflow: hidden; background: #f8fcff; box-shadow: inset 0 0 0 3px #fff, 0 7px 20px rgba(20,74,110,.14); }
.brand__roundel::before { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: conic-gradient(#d83358 0 25%, #229bda 25% 50%, #f7fcff 50% 75%, #0866ac 75% 100%); box-shadow: inset 0 0 0 1px rgba(9,75,119,.2); }
.brand__roundel::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: linear-gradient(90deg, transparent calc(50% - .5px), rgba(255,255,255,.86) calc(50% - .5px) calc(50% + .5px), transparent calc(50% + .5px)), linear-gradient(0deg, transparent calc(50% - .5px), rgba(255,255,255,.86) calc(50% - .5px) calc(50% + .5px), transparent calc(50% + .5px)); }
.brand__cross { display: none; }
.brand__roundel b { position: relative; z-index: 2; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #0b2a3d; background: rgba(250,253,255,.94); box-shadow: 0 2px 8px rgba(3,39,63,.18); font: 700 9px/1 var(--font-mono); letter-spacing: -.06em; }
.brand__text { display: flex; flex-direction: column; gap: 4px; }
.brand__text strong { font: 600 16px/1 var(--font-display); letter-spacing: .035em; }
.brand__text small { color: #75818c; font: 500 11px/1 var(--font-mono); letter-spacing: .12em; }
.desktop-nav { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: clamp(20px, 2.25vw, 40px); }
.desktop-nav a { position: relative; color: #c0c7ce; font: 500 12px/1 var(--font-mono); letter-spacing: .12em; transition: color .25s; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; top: 18px; height: 1px; background: var(--blue-bright); transition: right .25s; }
.desktop-nav a:hover, .desktop-nav a.active { color: white; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-contact { min-width: 220px; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.header-messengers { display: flex; align-items: center; justify-content: flex-end; gap: 10px; color: #c5d2dc; }
.messenger-link { width: 40px; height: 40px; display: inline-grid; place-items: center; border: 1px solid rgba(197,210,220,.48); border-radius: 50%; color: inherit; background: rgba(255,255,255,.045); transition: color .25s, border-color .25s, background .25s, transform .25s; }
.messenger-link svg { display: block; fill: currentColor; stroke: none; }
.messenger-link .messenger-icon--max { width: 18px; height: 18px; }
.messenger-link .messenger-icon--whatsapp { width: 22px; height: 22px; }
.messenger-link .messenger-icon--telegram { width: 18px; height: 18px; }
.messenger-link:hover { color: var(--blue-bright); border-color: currentColor; background: rgba(43,169,255,.08); transform: translateY(-2px); }
.header-phone { text-align: right; display: flex; align-items: baseline; gap: 10px; }
.header-phone small { color: #687581; font: 500 10px/1 var(--font-mono); letter-spacing: .1em; }
.header-phone span { font: 500 15px/1 var(--font-mono); }
.button { min-height: 54px; padding: 0 24px; display: inline-flex; justify-content: center; align-items: center; gap: 24px; border: 1px solid rgba(255,255,255,.25); color: white; background: transparent; font: 600 10px/1 var(--font-display); letter-spacing: .08em; cursor: pointer; position: relative; overflow: hidden; translate: var(--magnetic-x, 0) var(--magnetic-y, 0); transition: border-color .25s, transform .25s, translate .35s cubic-bezier(.16,1,.3,1); }
.button::before { content: ""; position: absolute; inset: 0; background: white; transform: translateX(-102%); transition: transform .35s cubic-bezier(.7,0,.2,1); }
.button span, .button svg { position: relative; z-index: 1; }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .25s; }
.button:hover { color: #071019; border-color: white; transform: translateY(-2px); }
.button:hover::before { transform: none; }
.button:hover svg { transform: translateX(4px); }
.button--compact { min-height: 48px; padding: 0 20px; gap: 12px; font-size: 10px; }
.button--primary { border-color: var(--blue); background: var(--blue); }
.button--primary::before { background: #e8f6ff; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 0; }
.menu-toggle span { display: block; width: 23px; height: 1px; margin: 7px auto; background: white; transition: transform .3s; }
.menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 96px 0 0; z-index: 99; visibility: hidden; opacity: 0; background: rgba(7,9,12,.98); padding: 44px 24px; transition: opacity .3s, visibility .3s; }
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { padding: 22px 0; border-bottom: 1px solid var(--line); font: 500 clamp(22px, 7vw, 36px)/1 var(--font-display); }
.mobile-menu nav span { margin-right: 18px; color: var(--blue-bright); font: 500 10px/1 var(--font-mono); }
.mobile-contacts { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.mobile-phone { display: block; margin-bottom: 18px; font: 500 17px/1 var(--font-mono); }
.header-messengers--mobile { justify-content: flex-start; gap: 12px; }
.header-messengers--mobile .messenger-link { width: 48px; height: 48px; }
.header-messengers--mobile .messenger-link .messenger-icon--max { width: 20px; height: 20px; }
.header-messengers--mobile .messenger-link .messenger-icon--whatsapp { width: 24px; height: 24px; }
.header-messengers--mobile .messenger-link .messenger-icon--telegram { width: 20px; height: 20px; }
.mobile-menu .button { width: 100%; margin-top: 32px; }

.home-page .site-header { color: #111b24; border-bottom-color: rgba(15,42,62,.1); background: rgba(244,249,252,.72); }
.home-page .site-header.is-scrolled { background: rgba(244,249,252,.94); box-shadow: 0 12px 36px rgba(23,57,82,.08); }
.home-page .desktop-nav a { color: #40515e; }
.home-page .desktop-nav a:hover, .home-page .desktop-nav a.active { color: #07131d; }
.home-page .header-phone small, .home-page .brand__text small { color: #647681; }
.home-page .header-messengers { color: #24465d; }
.home-page .messenger-link { border-color: rgba(31,70,97,.28); background: rgba(255,255,255,.34); }
.home-page .messenger-link:hover { color: var(--blue); border-color: currentColor; background: rgba(8,119,207,.07); }
.home-page .site-header .button--compact { color: #fff; border-color: #0b2234; background: #0b2234; }
.home-page .site-header .button--compact::before { background: var(--blue); }
.home-page .site-header .button--compact:hover { color: #fff; border-color: var(--blue); }
.home-page .menu-toggle span { background: #10212e; }
.home-page .mobile-menu { color: #101b24; background: rgba(244,249,252,.985); }
.home-page .mobile-menu .button { color: #fff; border-color: #0b2234; background: #0b2234; }
.home-page .mobile-menu .button::before { background: var(--blue); }

.hero { position: relative; min-height: 900px; height: 100svh; max-height: 1080px; padding: 116px clamp(22px, 4.4vw, 84px) 48px; display: flex; align-items: center; overflow: hidden; color: #101a23; background: radial-gradient(circle at 78% 47%, rgba(10,120,203,.22), transparent 29%), radial-gradient(circle at 35% 100%, rgba(115,208,249,.24), transparent 34%), linear-gradient(118deg, #fbfdfe 0%, #eef5f8 42%, #dbe8ef 100%); }
.hero::after { content: ""; position: absolute; z-index: 0; width: 37vw; height: 115%; right: 9vw; top: -8%; background: linear-gradient(180deg, rgba(7,119,207,.09), rgba(80,190,242,.02)); transform: skewX(-13deg); border-left: 1px solid rgba(7,119,207,.15); border-right: 1px solid rgba(7,119,207,.08); pointer-events: none; }
.hero__grid { position: absolute; inset: 116px 0 0; background-image: linear-gradient(rgba(15,52,77,.065) 1px, transparent 1px), linear-gradient(90deg, rgba(15,52,77,.048) 1px, transparent 1px); background-size: 100% 25%, 12.5% 100%; mask-image: linear-gradient(to right, black, transparent 88%); }
.hero__halo { position: absolute; z-index: 1; width: 40vw; height: 40vw; right: 2vw; top: 20%; border: 1px solid rgba(7,119,207,.2); border-radius: 50%; box-shadow: 0 0 100px rgba(7,105,180,.09), inset 0 0 100px rgba(255,255,255,.38); }
.hero__halo::after { content: ""; position: absolute; inset: 11%; border: 1px dashed rgba(53,162,234,.09); border-radius: inherit; animation: orbit 40s linear infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }
.hero__copy { position: relative; z-index: 5; width: 56%; margin-top: -2vh; }
.hero__copy::before { content: ""; display: block; width: 84px; height: 4px; margin-bottom: 27px; background: linear-gradient(90deg, #67c9ed 0 33%, #1265b4 33% 66%, #d83358 66%); transform: skewX(-24deg); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; color: #40525f; font: 500 9px/1 var(--font-mono); letter-spacing: .18em; }
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 14px var(--blue-bright); }
.eyebrow em { margin-left: 6px; color: var(--blue-bright); font-style: normal; }
.hero__title { margin: 0; font: 600 clamp(49px, 5.6vw, 108px)/.91 var(--font-display); letter-spacing: -.065em; }
.title-line { display: block; overflow: hidden; }
.title-line i { display: block; font-style: normal; transform: translateY(110%); animation: titleIn .85s cubic-bezier(.16,1,.3,1) forwards; animation-play-state: paused; }
body.is-loaded .title-line i { animation-play-state: running; }
.title-line--two { color: #0877cf; }
.title-line--two i { animation-delay: .1s; }
.title-line--three i { animation-delay: .2s; }
@keyframes titleIn { to { transform: none; } }
.hero__descriptor { margin-top: 34px; display: flex; align-items: center; gap: 28px; max-width: 690px; }
.descriptor-script { flex: 0 0 auto; color: var(--blue-bright); font: 600 italic clamp(25px, 2.2vw, 42px)/1 var(--font-serif); transform: rotate(-4deg); }
.hero__descriptor p { margin: 0; max-width: 430px; color: #4b5d69; font-size: clamp(13px, .95vw, 16px); line-height: 1.65; }
.hero__actions { display: flex; align-items: center; gap: 34px; margin-top: 37px; }
.text-link { display: inline-flex; flex-direction: column; gap: 8px; color: #1e3443; font: 600 8px/1 var(--font-display); letter-spacing: .1em; }
.text-link i { display: block; width: 100%; height: 1px; background: #8a9aa5; position: relative; overflow: hidden; }
.text-link i::after { content: ""; position: absolute; inset: 0; background: var(--blue-bright); transform: translateX(-101%); transition: transform .3s; }
.text-link:hover i::after { transform: none; }
.hero-car { position: absolute; z-index: 4; width: min(60vw, 1020px); right: -1vw; top: 49%; transform: translate(112%, -42%); opacity: 0; animation: carEnter 1.3s .45s cubic-bezier(.16,1,.3,1) forwards; animation-play-state: paused; will-change: transform; }
body.is-loaded .hero-car { animation-play-state: running; }
@keyframes carEnter { to { opacity: 1; transform: translate(0, -42%); } }
@keyframes carEnterMobile { to { opacity: 1; transform: none; } }
.hero-car__svg { display: block; width: 100%; height: auto; overflow: visible; filter: drop-shadow(0 30px 38px rgba(14,44,64,.28)); transition: transform .18s ease-out; }
.hero-car__legacy { display: none !important; }
.hero-car--photo { width: min(59vw, 1040px); right: .5vw; top: 51%; }
.hero-car--photo::before { content: ""; position: absolute; z-index: 0; inset: -14px 16px 15px -18px; background: linear-gradient(135deg, rgba(13,126,203,.2), rgba(255,255,255,.08)); border: 1px solid rgba(20,111,169,.18); clip-path: polygon(8% 0, 100% 0, 100% 84%, 92% 100%, 0 100%, 0 18%); }
.hero-car--photo .hero-car__svg { position: relative; z-index: 1; aspect-ratio: 1693 / 929; object-fit: cover; object-position: center; clip-path: polygon(8% 0, 100% 0, 100% 84%, 92% 100%, 0 100%, 0 18%); filter: saturate(.92) contrast(1.04) brightness(1.03) drop-shadow(0 30px 38px rgba(14,44,64,.2)); }
.hero-car--photo .hero-car__meta--bottom { bottom: 8%; color: #f3f9fc; text-shadow: 0 1px 10px rgba(2,18,29,.9); }
.hero-car__meta { position: absolute; z-index: 2; display: flex; color: #426071; font: 500 8px/1 var(--font-mono); letter-spacing: .16em; }
.hero-car__meta--top { top: 2%; left: 29%; right: 10%; justify-content: space-between; align-items: center; }
.hero-car__meta--top b { width: 28px; height: 28px; border: 1px solid #8ba7b8; border-radius: 50%; display: grid; place-items: center; color: #24495f; background: rgba(255,255,255,.46); font-weight: 400; }
.hero-car__meta--bottom { bottom: 3%; left: 20%; gap: 30px; }
.hero-car__speedline { position: absolute; left: 16%; right: 0; bottom: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(26, 140, 220, .65), transparent); transform-origin: right; animation: speedline 2.8s ease-in-out infinite; }
@keyframes speedline { 0%,100% { transform: scaleX(.35); opacity: .3; } 50% { transform: scaleX(1); opacity: .8; } }
.car-wheel .wheel-spokes { transform-box: fill-box; transform-origin: center; transform: rotate(var(--wheel-turn, 0deg)); }
body.is-loaded:not(.car-arrived) .car-wheel .wheel-spokes { animation: wheelArrival 1.3s .4s cubic-bezier(.16,1,.3,1) both; }
@keyframes wheelArrival { from { transform: rotate(-540deg); } to { transform: rotate(0deg); } }
.hero__footnote { position: absolute; z-index: 6; left: clamp(22px, 4.4vw, 84px); bottom: 48px; display: flex; align-items: center; gap: 14px; color: #5b6e7a; font: 500 7px/1 var(--font-mono); letter-spacing: .18em; }
.hero__footnote i { display: block; width: 42px; height: 1px; background: #8da0ac; }
.scroll-cue { position: absolute; z-index: 6; right: clamp(22px, 4.4vw, 84px); bottom: 44px; display: flex; align-items: center; gap: 14px; color: #536976; font: 500 7px/1 var(--font-mono); letter-spacing: .18em; }
.scroll-cue div { width: 24px; height: 38px; border: 1px solid #8298a6; border-radius: 16px; position: relative; }
.scroll-cue i { position: absolute; top: 8px; left: 50%; width: 2px; height: 7px; background: var(--blue-bright); transform: translateX(-50%); animation: scrollCue 1.8s ease infinite; }
@keyframes scrollCue { 0% { opacity: 0; transform: translate(-50%,0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,14px); } }

.ticker { position: relative; z-index: 5; width: calc(100% - 8px); height: 68px; margin-inline: 4px; overflow: hidden; background: var(--blue); display: flex; align-items: center; transform: rotate(-.35deg); box-shadow: 0 15px 40px rgba(0,91,160,.2); }
.ticker__track { width: max-content; display: flex; align-items: center; gap: 36px; animation: ticker 28s linear infinite; }
.ticker span { white-space: nowrap; font: 600 11px/1 var(--font-display); letter-spacing: .1em; }
.ticker i { width: 7px; height: 7px; border: 1px solid white; border-radius: 50%; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { position: relative; padding: 150px clamp(22px, 7.3vw, 140px); }
.services { background: #f0f2f3; color: #101419; }
.section-heading { display: grid; grid-template-columns: 28% 72%; margin-bottom: 70px; }
.section-heading > div:last-child { display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; }
.section-kicker { display: flex; align-items: center; gap: 12px; padding-top: 10px; color: #6e7880; font: 500 8px/1 var(--font-mono); letter-spacing: .17em; }
.section-kicker span { color: var(--blue); }
.section-kicker i { width: 35px; height: 1px; background: #9ca4aa; }
.section-kicker em { font-style: normal; }
.section-kicker--light { color: #7f8b95; }
.section-heading h2, .approach h2, .about h2, .booking h2 { margin: 0; font: 600 clamp(38px, 4.15vw, 76px)/1.03 var(--font-display); letter-spacing: -.06em; }
.section-heading h2 span, .approach h2 span, .booking h2 span { color: var(--blue); }
.section-heading p { max-width: 370px; margin: 0 0 5px; color: #67717a; font-size: 15px; line-height: 1.65; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #cfd5d9; border-left: 1px solid #cfd5d9; }
.service-card { min-width: 0; display: grid; grid-template-columns: 42% 58%; min-height: 310px; color: inherit; background: #f5f6f6; border-right: 1px solid #cfd5d9; border-bottom: 1px solid #cfd5d9; overflow: hidden; outline: none; transition: background .5s, box-shadow .5s, transform .55s cubic-bezier(.16,1,.3,1); }
.service-card:hover { position: relative; z-index: 2; background: #fff; box-shadow: 0 24px 70px rgba(24,36,45,.12); }
.service-card:focus-visible { position: relative; z-index: 3; box-shadow: inset 0 0 0 2px var(--blue), 0 24px 70px rgba(24,36,45,.12); }
.service-card--featured { grid-column: 1 / -1; grid-template-columns: 54% 46%; min-height: 410px; }
.service-card__visual { position: relative; min-height: 100%; background: #0a1017; overflow: hidden; isolation: isolate; }
.service-card__visual::before { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(2,7,11,.66) 0%, transparent 36%, rgba(2,7,11,.62) 100%), linear-gradient(90deg, rgba(3,10,16,.2), transparent 60%); }
.service-card__visual::after { content: ""; position: absolute; z-index: 3; inset: 0; pointer-events: none; opacity: .32; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 100% 50%, 25% 100%; mix-blend-mode: soft-light; transition: opacity .45s; }
.service-photo { position: absolute; z-index: 0; inset: -5% 0; width: 100%; height: 110%; object-fit: cover; object-position: center; filter: grayscale(.42) saturate(.78) contrast(1.13) brightness(.76); clip-path: inset(100% 0 0 0); transform: translate3d(0, var(--photo-shift, 0px), 0) scale(1.045); transition: clip-path 1.05s cubic-bezier(.16,1,.3,1), filter .65s ease, transform 1.1s cubic-bezier(.16,1,.3,1); will-change: transform, clip-path; }
.service-card.is-visible .service-photo { clip-path: inset(0 0 0 0); }
.service-card:hover .service-photo { filter: grayscale(.06) saturate(1) contrast(1.08) brightness(.86); transform: translate3d(0, var(--photo-shift, 0px), 0) scale(1.085); }
.service-card:hover .service-card__visual::after { opacity: .16; }
.service-card--featured .service-photo { object-position: center 52%; }
.service-card__visual--engine .service-photo { object-position: center 49%; }
.service-card__visual--chassis .service-photo { object-position: center; }
.service-card__visual--electric .service-photo { object-position: center 36%; }
.service-card__visual--gearbox .service-photo { object-position: center 48%; }
.service-card__visual--maintenance .service-photo { object-position: center 48%; }
.service-card__visual--coding .service-photo { object-position: center; }
.visual-index { position: absolute; z-index: 5; top: 17px; left: 18px; color: rgba(255,255,255,.74); font: 500 7px/1 var(--font-mono); letter-spacing: .12em; }
.service-visual__meta { position: absolute; z-index: 5; left: 18px; right: 18px; bottom: 17px; display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.66); font: 500 6px/1 var(--font-mono); letter-spacing: .15em; }
.service-visual__meta b { color: white; font-weight: 500; }
.service-visual__focus { position: absolute; z-index: 5; right: 18px; top: 17px; width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; transition: transform .7s cubic-bezier(.16,1,.3,1), border-color .4s; }
.service-visual__focus::before, .service-visual__focus::after { content: ""; position: absolute; left: 50%; top: 50%; background: rgba(255,255,255,.48); transform: translate(-50%,-50%); }
.service-visual__focus::before { width: 10px; height: 1px; }
.service-visual__focus::after { width: 1px; height: 10px; }
.service-visual__focus i { position: absolute; left: 50%; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: var(--blue-bright); transform: translate(-50%,-50%); box-shadow: 0 0 8px var(--blue-bright); }
.service-card:hover .service-visual__focus { transform: rotate(135deg) scale(1.12); border-color: rgba(255,255,255,.75); }
.service-card__body { position: relative; padding: 40px 36px 76px; display: grid; grid-template-columns: 38px 1fr; align-content: center; gap: 12px; }
.service-card__number { padding-top: 5px; color: var(--blue); font: 500 10px/1 var(--font-mono); }
.service-card h3 { margin: 0 0 20px; font: 600 clamp(19px, 1.45vw, 26px)/1.2 var(--font-display); letter-spacing: -.035em; }
.service-card p { max-width: 380px; margin: 0; color: #69737b; font-size: 13px; line-height: 1.65; }
.service-card__tag { width: max-content; display: block; margin: 0 0 14px; padding: 7px 9px 6px; color: #0a6eb4; border: 1px solid rgba(8,119,207,.34); background: rgba(43,169,255,.07); font: 600 8px/1 var(--font-mono); letter-spacing: .11em; }
.service-card__cta { position: absolute; right: 26px; bottom: 24px; min-width: 126px; height: 36px; padding: 0 9px 0 14px; display: inline-flex; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid #b9c3c9; border-radius: 999px; color: #4d5a63; background: rgba(255,255,255,.38); font: 600 7px/1 var(--font-display); letter-spacing: .11em; overflow: hidden; transition: color .35s, border-color .35s, background .35s, min-width .45s cubic-bezier(.16,1,.3,1); }
.service-card__cta::before { content: ""; position: absolute; inset: 0; background: var(--blue); transform: translateX(-102%); transition: transform .42s cubic-bezier(.16,1,.3,1); }
.service-card__cta span, .service-card__cta svg { position: relative; z-index: 1; }
.service-card__cta svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .35s cubic-bezier(.16,1,.3,1); }
.service-card:hover .service-card__cta { min-width: 138px; color: white; border-color: var(--blue); background: var(--blue); }
.service-card:hover .service-card__cta::before { transform: none; }
.service-card:hover .service-card__cta svg { transform: translateX(3px); }
.secondary-brand { margin-top: 46px; min-height: 115px; display: grid; grid-template-columns: 66px 1fr 1.5fr auto; gap: 26px; align-items: center; padding: 24px 30px; border: 1px solid #ccd2d6; background: rgba(255,255,255,.35); }
.secondary-brand__icon { width: 50px; height: 50px; border: 1px solid #9ba4aa; border-radius: 50%; display: grid; place-items: center; font-size: 24px; }
.secondary-brand__icon + div { display: flex; flex-direction: column; gap: 8px; }
.secondary-brand__icon + div span { color: #7a858d; font: 500 7px/1 var(--font-mono); letter-spacing: .15em; }
.secondary-brand__icon + div strong { font: 500 14px/1 var(--font-display); }
.secondary-brand p { margin: 0; color: #717b83; font-size: 13px; line-height: 1.55; }
.secondary-brand > a { color: #24313b; font: 600 8px/1 var(--font-display); letter-spacing: .07em; }
.secondary-brand > a span { margin-left: 10px; color: var(--blue); }

.approach { display: grid; grid-template-columns: minmax(0, 38fr) minmax(0, 62fr); gap: 8vw; background: radial-gradient(circle at 90% 16%, rgba(17,119,198,.17), transparent 34%), linear-gradient(135deg, #111820, #07111b); }
.approach__sticky { position: sticky; top: 120px; align-self: start; }
.approach h2 { margin-top: 55px; font-size: clamp(39px, 4.4vw, 78px); }
.approach__sticky > p { max-width: 410px; margin: 30px 0 0; color: #84909a; font-size: 15px; line-height: 1.7; }
.approach__quote { display: flex; gap: 16px; max-width: 410px; margin-top: 70px; padding-top: 26px; border-top: 1px solid var(--line); }
.approach__quote span { color: var(--blue-bright); font: italic 600 44px/.8 var(--font-serif); }
.approach__quote p { margin: 0; color: #bec6cc; font: italic 500 20px/1.4 var(--font-serif); }
.process-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-item { min-height: 390px; padding: 25px 28px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s; }
.process-item:hover { background: #10161d; }
.process-item__head { display: flex; justify-content: space-between; color: var(--blue-bright); font: 500 9px/1 var(--font-mono); }
.process-item__head small { color: #46535e; font: inherit; letter-spacing: .15em; }
.process-icon { width: 80px; height: 80px; margin: 48px 0 35px; border: 1px solid #26333e; border-radius: 50%; display: grid; place-items: center; transition: border-color .3s, box-shadow .3s; }
.process-item:hover .process-icon { border-color: var(--blue); box-shadow: 0 0 30px rgba(9,118,200,.13); }
.process-icon svg { width: 48px; fill: none; stroke: #5fb8ee; stroke-width: 1.5; }
.process-item h3 { margin: 0 0 18px; font: 500 20px/1.25 var(--font-display); letter-spacing: -.03em; }
.process-item p { max-width: 280px; margin: 0; color: #6f7c87; font-size: 13px; line-height: 1.65; }

.about { min-height: 990px; background: #076bb4; overflow: hidden; }
.about::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(0,0,0,.18), transparent 45%), radial-gradient(circle at 80% 100%, rgba(95,206,255,.18), transparent 42%); }
.about__backdrop { position: absolute; left: 0; right: 0; bottom: -7%; color: rgba(255,255,255,.045); font: 600 min(27vw, 500px)/.8 var(--font-display); letter-spacing: -.1em; white-space: nowrap; }
.about > *:not(.about__backdrop) { position: relative; z-index: 1; }
.about .section-kicker { color: #c4e7fb; }
.about .section-kicker span { color: white; }
.about .section-kicker i { background: rgba(255,255,255,.45); }
.about__header { margin: 55px 0 80px 28%; display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; }
.about h2 span { color: #9cd9ff; }
.about__lead { max-width: 390px; }
.about__lead p { margin: 0 0 17px; font-size: 16px; line-height: 1.65; }
.about__lead span { color: #b8def4; font-size: 14px; }
.experience-panel { display: grid; grid-template-columns: 28% 42% 30%; min-height: 430px; border: 1px solid rgba(255,255,255,.28); background: rgba(4,37,65,.17); backdrop-filter: blur(10px); }
.experience-panel__year { padding: 45px 35px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.24); }
.experience-panel__year > span { font: 500 10px/1 var(--font-mono); letter-spacing: .17em; }
.experience-panel__year strong { margin: 13px 0 18px; font: 600 clamp(57px, 6.7vw, 122px)/.9 var(--font-display); letter-spacing: -.08em; }
.experience-panel__year small { color: #b7ddf3; font: 500 8px/1 var(--font-mono); letter-spacing: .18em; }
.experience-panel__feature { padding: 44px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.24); }
.feature-orbit { width: 66px; height: 66px; margin-bottom: 28px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.44); border-radius: 50%; position: relative; }
.feature-orbit::before { content: ""; position: absolute; width: 8px; height: 8px; top: -4px; left: 50%; border-radius: 50%; background: white; box-shadow: 0 0 14px white; }
.feature-orbit span { font: 500 6px/1 var(--font-mono); letter-spacing: .14em; }
.experience-panel__feature h3 { margin: 0 0 22px; font: 500 clamp(21px, 1.8vw, 32px)/1.2 var(--font-display); }
.experience-panel__feature p { max-width: 400px; margin: 0; color: #c5e3f4; font-size: 13px; line-height: 1.65; }
.experience-panel__stats { display: grid; grid-template-rows: repeat(3, 1fr); }
.stat { padding: 24px 30px; display: flex; align-items: center; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.24); }
.stat:last-child { border-bottom: 0; }
.stat strong { min-width: 80px; font: 500 clamp(32px, 3.1vw, 58px)/1 var(--font-display); letter-spacing: -.06em; }
.stat strong::after { content: "+"; font-size: .45em; vertical-align: top; margin-left: 2px; }
.stat:last-child strong::after { content: ""; }
.stat--plain strong::after { content: ""; }
.stat--word strong { font-size: clamp(24px, 2.2vw, 38px); letter-spacing: -.03em; }
.stat span { color: #c2e2f5; font: 500 8px/1.5 var(--font-mono); letter-spacing: .14em; }

.booking { background: #e9edef; color: #101419; overflow: hidden; }
.booking__beam { position: absolute; width: 26vw; height: 150%; top: -25%; left: 44%; background: linear-gradient(90deg, transparent, rgba(7,108,181,.08), transparent); transform: rotate(18deg); }
.booking__grid { display: grid; grid-template-columns: minmax(0, 38fr) minmax(0, 62fr); gap: 8vw; margin-top: 55px; }
.booking__copy { align-self: start; }
.booking__copy > p { max-width: 390px; margin: 30px 0 60px; color: #68737c; line-height: 1.65; }
.booking__contact { display: flex; flex-direction: column; gap: 12px; }
.booking__contact small { color: #78838c; font: 500 8px/1 var(--font-mono); letter-spacing: .15em; }
.booking__contact a { font: 500 clamp(20px, 1.7vw, 30px)/1 var(--font-display); }
.booking-form { position: relative; padding: 45px; background: white; box-shadow: 0 20px 70px rgba(21,37,49,.09); }
.form-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 30px; }
.booking-form label:not(.consent) { display: flex; flex-direction: column; gap: 8px; margin-bottom: 32px; }
.booking-form label > span { color: #65717a; font: 600 7px/1 var(--font-mono); letter-spacing: .13em; }
.booking-form input, .booking-form textarea, .booking-form select { width: 100%; padding: 10px 0 14px; border: 0; border-bottom: 1px solid #cbd1d5; border-radius: 0; outline: none; color: #11161a; background: transparent; font-size: 15px; resize: vertical; transition: border-color .25s; }
.booking-form input:focus, .booking-form textarea:focus, .booking-form select:focus { border-color: var(--blue); }
.booking-form input[aria-invalid="true"] { border-color: #c62f4f; }
.booking-form input::placeholder, .booking-form textarea::placeholder { color: #a3abb1; }
.field-error { display: none; margin-top: 2px; color: #ad2744; font-size: 12px; line-height: 1.35; }
.field-error.is-visible { display: block; }
.form-submit { margin-top: 10px; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.consent { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.consent input { position: absolute; opacity: 0; width: 0; }
.consent span { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 1px; border: 1px solid #8c989f; position: relative; }
.consent input:focus-visible + span { outline: 3px solid rgba(43,169,255,.55); outline-offset: 3px; }
.consent input:checked + span { border-color: var(--blue); background: var(--blue); }
.consent input:checked + span::after { content: ""; position: absolute; left: 4px; top: 1px; width: 4px; height: 8px; border: solid white; border-width: 0 1px 1px 0; transform: rotate(45deg); }
.consent small { max-width: 330px; color: #66727b; font-size: 12px; line-height: 1.5; }
.consent small a { color: #0a6fac; text-decoration: underline; text-decoration-color: rgba(10,111,172,.35); text-underline-offset: 2px; }
.consent small a:hover { text-decoration-color: currentColor; }
.form-success { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px; color: white; background: var(--blue); opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.form-success.is-visible { opacity: 1; visibility: visible; }
.form-success strong { font: 600 24px/1 var(--font-display); }
.form-success span { color: #d4efff; font-size: 14px; }

.contacts { min-height: 610px; display: grid; grid-template-columns: 48% 52%; background: linear-gradient(135deg, #101a24, #07243b); }
.contacts__map { position: relative; min-height: 610px; background: radial-gradient(circle at 70% 30%, rgba(43,169,255,.14), transparent 34%), linear-gradient(145deg, #101a24, #071018 66%); overflow: hidden; }
.contacts__map::before { content: ""; position: absolute; z-index: 0; inset: 0; opacity: .25; background-image: linear-gradient(rgba(103,181,229,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(103,181,229,.12) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(135deg, #000, transparent 80%); }
.contacts__map::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(5,12,18,.18), transparent 50%), linear-gradient(0deg, rgba(4,9,14,.35), transparent 35%); mix-blend-mode: multiply; }
.contacts__map iframe { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; min-height: 610px; border: 0; opacity: 0; filter: saturate(.92) contrast(1.04) brightness(.92); transition: opacity .45s ease; }
.contacts__map.is-loaded iframe { opacity: 1; }
.map-consent { position: absolute; z-index: 3; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 28px; color: white; text-align: center; transition: opacity .38s ease, visibility .38s ease, transform .38s ease; }
.contacts__map.is-loaded .map-consent { opacity: 0; visibility: hidden; transform: scale(1.02); pointer-events: none; }
.map-consent__mark { position: relative; width: 56px; height: 56px; margin-bottom: 28px; border: 1px solid rgba(145,207,244,.42); border-radius: 50%; }
.map-consent__mark::before, .map-consent__mark::after { content: ""; position: absolute; left: 50%; top: 50%; border: 1px solid rgba(43,169,255,.28); border-radius: 50%; transform: translate(-50%,-50%); }
.map-consent__mark::before { width: 82px; height: 82px; }
.map-consent__mark::after { width: 112px; height: 112px; opacity: .45; }
.map-consent__mark span { position: absolute; left: 50%; top: 50%; width: 12px; height: 12px; border: 2px solid var(--blue-bright); border-radius: 50% 50% 50% 0; transform: translate(-50%,-62%) rotate(-45deg); box-shadow: 0 0 18px rgba(43,169,255,.62); }
.map-consent__eyebrow { margin-bottom: 18px; color: #7fcfff; font: 600 10px/1 var(--font-mono); letter-spacing: .22em; }
.map-consent > strong { font: 600 clamp(23px, 2.5vw, 38px)/1.08 var(--font-display); letter-spacing: -.045em; }
.map-consent > p { max-width: 390px; margin: 18px 0 26px; color: #9cabb6; font-size: 14px; line-height: 1.55; }
.map-consent__button { min-width: 230px; }
.map-consent > a { margin-top: 22px; color: #758692; font: 500 9px/1.35 var(--font-mono); letter-spacing: .1em; transition: color .25s; }
.map-consent > a:hover { color: white; }
.map-consent__button:disabled { cursor: wait; opacity: .72; }
.map-location-badge { position: absolute; z-index: 2; left: 26px; bottom: 26px; min-width: 185px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.18); color: white; background: rgba(7,12,17,.86); opacity: 0; backdrop-filter: blur(12px); pointer-events: none; transition: opacity .35s .15s; }
.contacts__map.is-loaded .map-location-badge { opacity: 1; }
.map-location-badge span { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; color: #aab8c2; font: 500 7px/1 var(--font-mono); letter-spacing: .14em; }
.map-location-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 12px var(--blue-bright); }
.map-location-badge strong { font: 500 10px/1.55 var(--font-mono); letter-spacing: .08em; }
.contacts__card { padding: 90px clamp(35px, 6vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.contacts__card h2 { max-width: 660px; margin: 45px 0 40px; font: 500 clamp(28px, 3vw, 52px)/1.15 var(--font-display); letter-spacing: -.05em; }
.contact-details { display: grid; grid-template-columns: repeat(2,1fr); gap: 25px; max-width: 590px; margin-bottom: 42px; }
.contact-details > div { display: flex; flex-direction: column; gap: 10px; }
.contact-details small { color: #5f6c76; font: 500 7px/1 var(--font-mono); letter-spacing: .17em; }
.contact-details strong, .contact-details a { font-size: 14px; font-weight: 500; }
.contacts__card .button { align-self: flex-start; }

.site-footer { min-height: 125px; padding: 35px clamp(22px, 4.4vw, 84px); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; border-top: 1px solid var(--line); background: #06080a; }
.site-footer > p { max-width: 590px; margin: 0; color: #69737c; font-size: 11px; line-height: 1.6; text-align: center; }
.site-footer > p strong { color: #9ca7b0; font-weight: 500; }
.site-footer > p small { color: #56616b; font-size: 9px; line-height: 1.45; }
.site-footer > div { justify-self: end; display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: 12px 24px; color: #56616b; font: 500 7px/1 var(--font-mono); letter-spacing: .08em; }

/* Readability pass: the technical microcopy remains compact, but no longer feels miniature. */
.page-loader__mark small, .section-transition__label span, .eyebrow, .desktop-nav a,
.hero-car__meta, .section-kicker, .process-item__head { font-size: 11px; }
.text-link, .hero__footnote, .scroll-cue, .visual-index, .service-card__cta,
.secondary-brand__icon + div span, .secondary-brand > a, .experience-panel__year small,
.booking__contact small, .booking-form label > span, .map-location-badge span,
.contact-details small, .site-footer > div { font-size: 10px; }
.service-visual__meta, .feature-orbit span { font-size: 9px; }
.site-footer > p { font-size: 11px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-card { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1), background .35s, box-shadow .35s; }
.reveal-card.is-visible { opacity: 1; transform: none; }

@media (max-width: 1320px) {
  .header-phone small, .header-messengers > span { display: none; }
  .header-contact { min-width: 192px; }
  .hero { min-height: 780px; }
  .hero__copy { width: 60%; }
  .hero-car { right: -3vw; width: 63vw; }
  .hero-car--photo { right: -1vw; width: min(61vw, 950px); }
  .section { padding-left: 5vw; padding-right: 5vw; }
  .approach { gap: 5vw; }
  .booking__grid { gap: 5vw; }
}

@media (max-width: 1080px) {
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .hero { height: auto; min-height: 860px; align-items: flex-start; padding-top: 172px; }
  .hero__copy { width: 78%; }
  .hero-car { width: 72vw; top: 58%; right: -12vw; }
  .hero-car--photo { width: 75vw; top: 59%; right: -11vw; }
  .section-heading { grid-template-columns: 1fr; gap: 36px; }
  .section-heading > div:last-child { align-items: flex-start; }
  .service-card { grid-template-columns: 45% 55%; }
  .service-card--featured { grid-template-columns: 50% 50%; }
  .approach { grid-template-columns: 1fr; }
  .approach__sticky { position: static; }
  .approach__quote { display: none; }
  .about__header { margin-left: 0; }
  .experience-panel { grid-template-columns: 1fr 1.25fr; }
  .experience-panel__stats { grid-column: 1/-1; grid-template-columns: repeat(3,1fr); grid-template-rows: auto; border-top: 1px solid rgba(255,255,255,.24); }
  .stat { border-bottom: 0; border-right: 1px solid rgba(255,255,255,.24); }
  .booking__grid { grid-template-columns: 1fr; }
  .booking__copy { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; }
  .booking__copy h2 { grid-column: 1/-1; }
  .booking__copy > p { margin: 20px 0 0; }
  .contacts { grid-template-columns: 43% 57%; }
}

@media (max-width: 760px) {
  .cursor-glow, .cursor-ring { display: none; }
  .site-header, .site-header.is-scrolled { height: 86px; padding: 0 18px; }
  .brand__roundel { width: 46px; height: 46px; flex-basis: 46px; }
  .brand__roundel b { width: 20px; height: 20px; font-size: 8px; }
  .brand__text strong { font-size: 13px; }
  .brand__text small { font-size: 10px; }
  .mobile-menu { inset: 86px 0 0; padding-top: 30px; overflow-y: auto; }
  .mobile-menu nav a { padding: 18px 0; }
  .hero { min-height: 800px; height: auto; padding: 140px 18px 88px; display: block; }
  .hero__grid { inset: 86px 0 0; background-size: 100% 25%, 25% 100%; }
  .hero__halo { width: 78vw; height: 78vw; right: -22vw; top: 47%; }
  .hero__copy { width: 100%; min-width: 0; }
  .eyebrow { flex-wrap: wrap; gap: 10px; margin-bottom: 28px; font-size: 9px; }
  .hero__title { font-size: clamp(31px, 9.1vw, 46px); line-height: .96; }
  .hero__descriptor { margin-top: 24px; display: block; }
  .descriptor-script { font-size: 25px; }
  .hero__descriptor p { max-width: 100%; margin-top: 12px; font-size: 14px; line-height: 1.55; overflow-wrap: anywhere; }
  .hero__actions { margin-top: 28px; flex-direction: column; align-items: stretch; gap: 18px; }
  .hero__actions .button { width: 100%; min-height: 52px; padding: 0 18px; justify-content: space-between; font-size: 10px; gap: 13px; }
  .text-link { font-size: 10px; }
  .hero-car { width: 107vw; top: 69%; right: -3vw; }
  .hero-car--photo { position: relative; width: 100%; top: auto; right: auto; margin: 36px 0 0; transform: translateX(112%); animation-name: carEnterMobile; }
  .hero-car--photo::before { inset: -8px 7px 8px -7px; clip-path: polygon(5% 0, 100% 0, 100% 88%, 94% 100%, 0 100%, 0 12%); }
  .hero-car--photo .hero-car__svg { clip-path: polygon(5% 0, 100% 0, 100% 88%, 94% 100%, 0 100%, 0 12%); }
  .hero-car__meta { display: none; }
  .hero__footnote { left: 18px; bottom: 24px; }
  .scroll-cue { display: none; }
  .ticker { height: 54px; }
  .ticker__track { gap: 24px; }
  .ticker span { font-size: 10px; }
  .section { padding: 95px 18px; }
  .section-heading { margin-bottom: 45px; }
  .section-heading > div:last-child { display: block; }
  .section-heading h2, .approach h2, .about h2, .booking h2 { font-size: clamp(34px, 10.2vw, 50px); }
  .section-heading p { margin-top: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card--featured { grid-column: auto; grid-template-columns: 1fr; min-height: 0; }
  .service-card__visual { height: 230px; }
  .service-card--featured .service-card__visual { height: 270px; }
  .service-card__body { min-height: 250px; padding: 30px 24px 78px; }
  .service-card__cta { right: 22px; bottom: 22px; }
  .service-card h3 { font-size: 21px; }
  .service-card__tag { font-size: 8px; }
  .secondary-brand { grid-template-columns: 50px 1fr; gap: 18px; padding: 23px 20px; }
  .secondary-brand p, .secondary-brand > a { grid-column: 1/-1; }
  .process-list { grid-template-columns: 1fr; }
  .process-item { min-height: 340px; }
  .approach h2 { margin-top: 35px; }
  .about { min-height: auto; }
  .about__header { margin: 38px 0 45px; display: block; }
  .about__lead { margin-top: 28px; }
  .experience-panel { grid-template-columns: 1fr; }
  .experience-panel__year, .experience-panel__feature { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .experience-panel__stats { grid-template-columns: 1fr; border-top: 0; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .booking__copy { display: block; }
  .booking__copy > p { margin: 25px 0 35px; }
  .booking-form { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { flex-direction: column; align-items: stretch; }
  .form-submit .button { width: 100%; margin-top: 12px; }
  .contacts { display: flex; flex-direction: column-reverse; }
  .contacts__map { min-height: 340px; }
  .contacts__map iframe { min-height: 340px; }
  .map-consent { padding: 44px 20px; }
  .map-consent__mark { width: 44px; height: 44px; margin-bottom: 22px; }
  .map-consent__mark::before { width: 64px; height: 64px; }
  .map-consent__mark::after { width: 84px; height: 84px; }
  .map-consent > strong { font-size: 21px; }
  .map-consent > p { margin: 14px 0 20px; font-size: 13px; }
  .map-consent__button { min-width: 210px; min-height: 50px; }
  .map-consent > a { margin-top: 17px; }
  .map-location-badge { left: 16px; bottom: 16px; min-width: 165px; padding: 13px 15px; }
  .contacts__card { padding: 80px 22px 70px; }
  .contact-details { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; text-align: left; }
  .site-footer > p { text-align: left; }
  .site-footer > div { justify-self: start; flex-wrap: wrap; }
}

.privacy-page { min-height: 100vh; color: #101820; background: radial-gradient(circle at 78% 18%, rgba(43,169,255,.17), transparent 26%), linear-gradient(135deg, #f8fbfd 0%, #e6f0f5 58%, #d5e6ef 100%); }
.privacy-header { position: relative; height: 116px; padding: 0 clamp(22px, 4.4vw, 84px); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(20,55,78,.12); }
.privacy-back { display: inline-flex; align-items: center; gap: 12px; color: #315065; font: 600 11px/1 var(--font-mono); letter-spacing: .1em; }
.privacy-back svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; transform: rotate(180deg); }
.privacy-main { min-height: calc(100vh - 116px); padding: clamp(72px, 10vw, 150px) clamp(22px, 7.3vw, 140px); display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .55fr); gap: clamp(50px, 10vw, 180px); align-items: center; }
.privacy-copy { min-width: 0; max-width: 900px; }
.privacy-eyebrow { display: flex; align-items: center; gap: 12px; color: #476276; font: 600 10px/1 var(--font-mono); letter-spacing: .16em; }
.privacy-eyebrow::before { content: ""; width: 58px; height: 3px; background: linear-gradient(90deg, #67c9ed 0 33%, #1265b4 33% 66%, #d83358 66%); transform: skewX(-24deg); }
.privacy-copy h1 { margin: 36px 0 30px; font: 600 clamp(46px, 6vw, 104px)/.94 var(--font-display); letter-spacing: -.07em; }
.privacy-copy h1 span { display: block; color: var(--blue); }
.privacy-copy > p { max-width: 700px; margin: 0; color: #526978; font-size: clamp(16px, 1.3vw, 20px); line-height: 1.7; }
.privacy-note { position: relative; min-width: 0; width: 100%; padding: 38px; border: 1px solid rgba(17,78,116,.18); background: rgba(255,255,255,.52); box-shadow: 0 28px 80px rgba(30,75,104,.12); backdrop-filter: blur(12px); }
.privacy-note::before { content: ""; position: absolute; left: -1px; top: 38px; width: 3px; height: 56px; background: #d83358; }
.privacy-note span { color: #648093; font: 600 10px/1 var(--font-mono); letter-spacing: .14em; }
.privacy-note strong { display: block; margin: 22px 0 16px; font: 600 clamp(20px, 2vw, 30px)/1.25 var(--font-display); letter-spacing: -.04em; overflow-wrap: anywhere; }
.privacy-note p { margin: 0; color: #607686; font-size: 14px; line-height: 1.7; }
.privacy-note a { display: inline-block; margin-top: 28px; color: #0b6cab; font: 600 12px/1 var(--font-mono); }
.legal-hero { min-height: 720px; }
.legal-draft-note { border-color: rgba(216,51,88,.22); }
.legal-document { position: relative; padding: 120px clamp(22px, 7.3vw, 140px) 150px; display: grid; grid-template-columns: minmax(210px, .32fr) minmax(0, 1fr); gap: clamp(55px, 9vw, 150px); color: #161c21; background: #f7f9fa; border-top: 1px solid rgba(20,55,78,.12); }
.legal-document--single { grid-template-columns: minmax(0, 920px); justify-content: center; }
.legal-toc { position: sticky; top: 124px; align-self: start; display: flex; flex-direction: column; gap: 0; padding-top: 8px; }
.legal-toc > span { margin-bottom: 22px; color: #718493; font: 600 10px/1 var(--font-mono); letter-spacing: .16em; }
.legal-toc a { padding: 14px 0; border-bottom: 1px solid #d9dfe3; color: #536978; font: 500 11px/1.35 var(--font-mono); transition: color .25s, padding-left .25s; }
.legal-toc a:hover { padding-left: 7px; color: var(--blue); }
.legal-article { min-width: 0; max-width: 980px; }
.legal-article > section { scroll-margin-top: 125px; padding: 0 0 94px; margin: 0 0 94px; border-bottom: 1px solid #d4dbe0; }
.legal-article > section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.legal-section-number { margin-bottom: 24px; color: var(--blue); font: 600 11px/1 var(--font-mono); letter-spacing: .15em; }
.legal-article h2 { margin: 0 0 38px; font: 600 clamp(30px, 3.3vw, 54px)/1.08 var(--font-display); letter-spacing: -.055em; }
.legal-article h3 { margin: 46px 0 18px; color: #253e50; font: 600 15px/1.35 var(--font-display); letter-spacing: -.025em; }
.legal-article p { margin: 0 0 21px; color: #52636f; font-size: 16px; line-height: 1.78; }
.legal-article p:last-child { margin-bottom: 0; }
.legal-article p strong { color: #18232b; font-weight: 600; }
.legal-article p a, .legal-details a { color: #0872b9; text-decoration: underline; text-decoration-color: rgba(8,114,185,.28); text-underline-offset: 3px; }
.legal-details { margin: 38px 0 0; border-top: 1px solid #cfd7dc; }
.legal-details > div { min-height: 72px; padding: 17px 0; display: grid; grid-template-columns: minmax(160px, .42fr) 1fr; gap: 26px; align-items: center; border-bottom: 1px solid #d9dfe3; }
.legal-details dt { color: #73838e; font: 600 10px/1.35 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.legal-details dd { min-width: 0; margin: 0; color: #24343f; font-size: 15px; line-height: 1.55; overflow-wrap: anywhere; }
.legal-placeholder { padding: 4px 7px; color: #a92a48; background: rgba(216,51,88,.09); box-decoration-break: clone; -webkit-box-decoration-break: clone; font: 600 10px/1.7 var(--font-mono); letter-spacing: .07em; }
.legal-callout { margin: 34px 0; padding: 28px 30px; border-left: 3px solid #d83358; background: #edf2f5; }
.legal-callout > span { display: block; margin-bottom: 13px; color: #647886; font: 600 10px/1 var(--font-mono); letter-spacing: .13em; }
.legal-callout p { margin: 0; }
.legal-footer { min-height: 110px; padding: 34px clamp(22px, 7.3vw, 140px); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #75838d; background: #091016; font: 500 10px/1.4 var(--font-mono); letter-spacing: .1em; }
.legal-footer a { color: #d4e7f2; transition: color .25s; }
.legal-footer a:hover { color: var(--blue-bright); }

@media (max-width: 900px) {
  .privacy-main { grid-template-columns: 1fr; align-items: start; }
  .privacy-note { max-width: 620px; }
  .legal-hero { min-height: 0; }
  .legal-document { grid-template-columns: 1fr; padding-top: 90px; }
  .legal-toc { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 28px; }
  .legal-toc > span { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .privacy-header { height: 86px; padding: 0 18px; }
  .privacy-header .brand { gap: 12px; }
  .privacy-back { width: 42px; height: 42px; justify-content: center; border: 1px solid rgba(31,70,97,.22); border-radius: 50%; }
  .privacy-back span { display: none; }
  .privacy-main { min-height: calc(100vh - 86px); padding: 72px 22px 80px; gap: 48px; }
  .privacy-copy h1 { font-size: 42px; }
  .privacy-copy h1 span { margin-top: 6px; font-size: clamp(17px, 5.5vw, 22px); line-height: 1.06; letter-spacing: -.06em; white-space: nowrap; }
  .privacy-note { padding: 30px 26px; }
  .privacy-note strong { font-size: 18px; }
  .legal-document { padding: 72px 22px 92px; gap: 70px; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-article > section { padding-bottom: 68px; margin-bottom: 68px; }
  .legal-article h2 { margin-bottom: 30px; font-size: 29px; }
  .legal-article h3 { margin-top: 38px; font-size: 14px; }
  .legal-article p { font-size: 15px; line-height: 1.72; }
  .legal-details > div { grid-template-columns: 1fr; gap: 9px; }
  .legal-callout { padding: 24px 22px; }
  .legal-footer { align-items: flex-start; flex-direction: column; }
}

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

/* Branded not-found page for both GitHub Pages and the production server. */
.not-found-page { min-height: 100vh; background: #070a0d; }
.not-found { position: relative; min-height: 100vh; padding: 52px clamp(22px, 5vw, 84px); display: flex; flex-direction: column; justify-content: center; overflow: hidden; isolation: isolate; }
.not-found::before { content: ""; position: absolute; z-index: -3; inset: 0; background: radial-gradient(circle at 72% 48%, rgba(43,169,255,.18), transparent 27%), linear-gradient(125deg, #080b0e 10%, #0b1720 62%, #06101a); }
.not-found__grid { position: absolute; z-index: -2; inset: 0; opacity: .14; background-image: linear-gradient(rgba(117,180,219,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(117,180,219,.22) 1px, transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(90deg, #000, transparent 78%); }
.not-found__brand { position: absolute; top: 46px; left: clamp(22px, 5vw, 84px); }
.not-found__code { position: absolute; z-index: -1; right: -2vw; top: 50%; color: transparent; font: 600 clamp(180px, 32vw, 590px)/.8 var(--font-display); letter-spacing: -.12em; -webkit-text-stroke: 1px rgba(126,194,235,.14); transform: translateY(-50%); user-select: none; }
.not-found__copy { width: min(790px, 70vw); }
.not-found__copy > span { display: flex; align-items: center; gap: 14px; color: #7dcfff; font: 600 10px/1 var(--font-mono); letter-spacing: .2em; }
.not-found__copy > span::before { content: ""; width: 56px; height: 3px; background: linear-gradient(90deg, #67c9ed 0 33%, #1265b4 33% 66%, #d83358 66%); transform: skewX(-24deg); }
.not-found__copy h1 { margin: 32px 0 25px; font: 600 clamp(38px, 5.6vw, 90px)/.98 var(--font-display); letter-spacing: -.07em; }
.not-found__copy p { max-width: 540px; margin: 0; color: #8f9da7; font-size: 17px; line-height: 1.65; }
.not-found__actions { margin-top: 42px; display: flex; align-items: center; gap: 34px; }
.not-found__phone { position: absolute; left: clamp(22px, 5vw, 84px); bottom: 46px; display: flex; align-items: baseline; gap: 18px; }
.not-found__phone small { color: #62717c; font: 500 9px/1 var(--font-mono); letter-spacing: .13em; }
.not-found__phone strong { font: 600 15px/1 var(--font-mono); }

@media (max-width: 760px) {
  .not-found { padding-top: 125px; padding-bottom: 125px; justify-content: center; }
  .not-found__brand { top: 28px; }
  .not-found__brand .brand__roundel { width: 48px; height: 48px; flex-basis: 48px; }
  .not-found__brand .brand__text strong { font-size: 13px; }
  .not-found__brand .brand__text small { font-size: 8px; }
  .not-found__code { right: -10vw; top: 39%; font-size: 52vw; }
  .not-found__copy { width: 100%; }
  .not-found__copy h1 { margin-top: 27px; font-size: clamp(35px, 11vw, 54px); }
  .not-found__copy p { font-size: 15px; }
  .not-found__actions { align-items: stretch; flex-direction: column; gap: 24px; }
  .not-found__actions .button { width: 100%; }
  .not-found__phone { bottom: 30px; align-items: flex-start; flex-direction: column; gap: 9px; }
}
