:root {
  --bg: #08090b;
  --bg-2: #0b0d10;
  --panel: #111318;
  --panel-2: #15181d;
  --panel-3: #1b1e24;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(214, 154, 67, 0.4);
  --text: #f5f2eb;
  --muted: #a3a6ad;
  --muted-2: #72767f;
  --gold: #d79a42;
  --gold-light: #f3c77c;
  --gold-deep: #9d6328;
  --green: #4dcc83;
  --danger: #e26d6d;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --container: 1280px;
  --header-height: 84px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% -8%, rgba(213, 145, 55, 0.08), transparent 31rem),
    linear-gradient(180deg, #08090b 0%, #0a0c0f 45%, #08090b 100%);
  color: var(--text);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 1em;
  height: 1em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

::selection {
  background: var(--gold);
  color: #111;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-140%);
  border-radius: 8px;
  background: #fff;
  color: #000;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.page-glow {
  position: fixed;
  z-index: -1;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: .12;
}

.page-glow--one {
  top: 15vh;
  right: -26rem;
  background: #d48e31;
}

.page-glow--two {
  bottom: -18rem;
  left: -26rem;
  background: #5d391f;
}

.topbar {
  position: relative;
  z-index: 60;
  height: 34px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  background: #050607;
  color: #8e9299;
  font-size: 12px;
}

.topbar__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c4c6cb;
}

.topbar__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(77, 204, 131, .08), 0 0 14px rgba(77, 204, 131, .55);
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar__meta > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar__meta svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(8, 9, 11, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 8, 10, .94);
  box-shadow: 0 12px 42px rgba(0,0,0,.25);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.logo__mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(224, 168, 87, .78);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(214, 154, 67, .07), 0 0 26px rgba(214, 154, 67, .08);
}

.logo__rotor {
  position: relative;
  width: 27px;
  height: 27px;
  animation: rotor-drift 16s linear infinite;
}

.logo__rotor::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border: 2px solid #0c0d0f;
  border-radius: 50%;
  background: var(--gold-light);
  content: "";
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1px var(--gold-deep);
}

.logo__rotor i {
  position: absolute;
  top: 1px;
  left: 11px;
  width: 7px;
  height: 13px;
  transform-origin: 3.5px 12.5px;
  border-radius: 100% 8% 100% 15%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
}

.logo__rotor i:nth-child(1) { transform: rotate(0deg); }
.logo__rotor i:nth-child(2) { transform: rotate(60deg); }
.logo__rotor i:nth-child(3) { transform: rotate(120deg); }
.logo__rotor i:nth-child(4) { transform: rotate(180deg); }
.logo__rotor i:nth-child(5) { transform: rotate(240deg); }
.logo__rotor i:nth-child(6) { transform: rotate(300deg); }

@keyframes rotor-drift {
  to { transform: rotate(360deg); }
}

.logo__word {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.logo__word b {
  font-size: 21px;
  letter-spacing: .14em;
  line-height: 1;
}

.logo__word em {
  color: var(--gold);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .22em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
  color: #d5d6d9;
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding-block: 14px;
  transition: color .2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-phone > span:first-child {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
}

.header-phone svg {
  width: 18px;
  height: 18px;
}

.header-phone > span:last-child {
  display: grid;
  gap: 1px;
}

.header-phone b {
  font-size: 12px;
  font-weight: 750;
}

.header-phone small {
  color: var(--muted-2);
  font-size: 10px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
  transition: transform .25s ease;
}

.burger[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  overflow: hidden;
  max-height: 0;
  border-top: 1px solid transparent;
  background: rgba(8, 9, 11, .98);
  transition: max-height .35s var(--ease), border-color .2s ease;
}

.mobile-menu.is-open {
  max-height: 520px;
  border-top-color: var(--line);
}

.mobile-menu__inner {
  display: grid;
  gap: 0;
  padding-block: 14px 22px;
}

.mobile-menu a {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-weight: 700;
}

.mobile-menu .btn {
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .045em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: transform .22s var(--ease), border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn--compact {
  min-height: 44px;
  padding-inline: 21px;
  font-size: 11px;
}

.btn--large {
  min-height: 62px;
  padding-inline: 28px;
}

.btn--gold {
  background: linear-gradient(115deg, var(--gold-light), var(--gold) 62%, #bd752d);
  color: #15100a;
  box-shadow: inset 0 1px rgba(255,255,255,.48), 0 16px 35px rgba(177, 109, 40, .2);
}

.btn--gold:hover {
  box-shadow: inset 0 1px rgba(255,255,255,.6), 0 20px 44px rgba(177, 109, 40, .31);
}

.btn--outline {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
  color: #fff;
}

.btn--outline:hover,
.btn--dark:hover {
  border-color: rgba(214,154,67,.48);
  background: rgba(214,154,67,.08);
}

.btn--dark {
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  color: #fff;
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 34px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 78% 44%, rgba(213, 151, 66, .15), transparent 31%),
    radial-gradient(circle at 55% 100%, rgba(154, 94, 34, .08), transparent 25%),
    linear-gradient(90deg, #090a0c 0%, #0a0b0d 62%, #11100e 100%);
  content: "";
}

.hero__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.5) 28%, transparent 78%);
  opacity: .55;
}

.hero__layout {
  display: grid;
  min-height: min(706px, calc(100vh - 118px));
  grid-template-columns: minmax(0, 1.9fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
  padding-block: clamp(56px, 7vh, 92px) 58px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 790px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  color: #c3c4c8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.eyebrow span,
.kicker::before {
  width: 38px;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--gold), rgba(214,154,67,0));
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #f7f4ee;
  font-size: clamp(58px, 6.2vw, 102px);
  font-weight: 850;
  letter-spacing: -.065em;
  line-height: .94;
}

.hero h1 strong {
  font-weight: inherit;
}

.hero__accent {
  max-width: 800px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, #f1c77e 0%, #d99c45 56%, #a8652e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(24px, 2.35vw, 38px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero__text {
  max-width: 690px;
  margin-bottom: 34px;
  color: #b2b4b9;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__benefits {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.mini-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.mini-benefit > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold);
}

.mini-benefit span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.mini-benefit b {
  color: #e7e6e3;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.mini-benefit small {
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.35;
}

.hero__photo-wrap {
  position: relative;
  align-self: stretch;
  min-height: 580px;
  overflow: hidden;
  border-left: 1px solid rgba(214,154,67,.12);
  border-radius: 0 0 0 42px;
  background:
    radial-gradient(circle at 48% 30%, rgba(213, 151, 66, .18), transparent 36%),
    linear-gradient(180deg, rgba(18,17,15,.18), rgba(8,9,11,.92));
  box-shadow: -50px 0 90px rgba(0,0,0,.28);
}

.hero__photo-wrap::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #090a0c 0%, rgba(9,10,12,.48) 13%, transparent 34%),
    linear-gradient(180deg, rgba(8,9,11,.24) 0%, transparent 25%, transparent 72%, rgba(8,9,11,.8) 100%);
  content: "";
  pointer-events: none;
}

.hero__photo-wrap::after {
  position: absolute;
  z-index: 3;
  right: -110px;
  bottom: -120px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(214,154,67,.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 44px rgba(214,154,67,.018), 0 0 0 90px rgba(214,154,67,.012);
}

.hero__photo {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(.96) contrast(1.04) brightness(.9);
  mask-image: linear-gradient(to left, transparent 0, #000 8%, #000 92%, transparent 100%), linear-gradient(to bottom, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, transparent 0, #000 8%, #000 92%, transparent 100%), linear-gradient(to bottom, #000 82%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}

.hero__photo-shade {
  position: absolute;
  z-index: 2;
  inset: auto 4% 2% 4%;
  height: 32%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,.7), transparent 70%);
  filter: blur(18px);
}

.hero__photo-label {
  position: absolute;
  z-index: 5;
  display: flex;
  width: 184px;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(14, 16, 19, .78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero__photo-label svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  color: var(--gold);
}

.hero__photo-label span {
  display: grid;
  gap: 2px;
}

.hero__photo-label b {
  color: #e7e5df;
  font-size: 11px;
  text-transform: uppercase;
}

.hero__photo-label small {
  color: #858991;
  font-size: 9px;
  line-height: 1.35;
}

.hero__photo-label--top {
  top: 16%;
  right: 0;
}

.hero__photo-label--bottom {
  right: 0;
  bottom: 8%;
  width: 145px;
}

.section {
  position: relative;
  padding-block: clamp(86px, 9vw, 132px);
  border-bottom: 1px solid var(--line);
}

.section--compact {
  position: relative;
  padding-block: clamp(56px, 6vw, 82px);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.section-head--row > div {
  max-width: 760px;
}

.section-head--row > p,
.section-head--center > p {
  max-width: 500px;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 15px;
}

.section-head--center {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-head--center .kicker {
  justify-content: center;
}

.section-head--center > p {
  margin: 20px auto 0;
}

.section-head--small {
  margin-bottom: 28px;
}

.section-head h2,
.workshop h2,
.faq h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 780;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.section-head h2 em,
.workshop h2 em,
.faq h2 em,
.final-cta h2 em {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.section-head--small h2 {
  font-size: clamp(32px, 3.5vw, 48px);
}

.kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 10px;
}

.symptoms {
  background: linear-gradient(180deg, #0b0d10, #0a0c0f);
}

.symptoms__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.symptom-card {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: start;
  justify-items: start;
  gap: 12px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  cursor: pointer;
  text-align: left;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease;
}

.symptom-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,154,67,.13), transparent 68%);
  content: "";
}

.symptom-card:hover {
  transform: translateY(-7px);
  border-color: rgba(214,154,67,.36);
  background: linear-gradient(145deg, rgba(214,154,67,.08), rgba(255,255,255,.012));
}

.icon-box {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(214,154,67,.2);
  border-radius: 13px;
  background: rgba(214,154,67,.06);
  color: var(--gold);
}

.icon-box svg {
  width: 23px;
  height: 23px;
}

.symptom-card b {
  max-width: 170px;
  font-size: 15px;
  line-height: 1.25;
}

.symptom-card small {
  max-width: 160px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.solutions {
  background:
    radial-gradient(circle at 50% 48%, rgba(195, 120, 42, .07), transparent 32%),
    #080a0d;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, #15181d 0%, #101216 64%, #0d0f12 100%);
  box-shadow: 0 20px 80px rgba(0,0,0,.22);
  transition: transform .25s var(--ease), border-color .25s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214,154,67,.35);
}

.solution-card--featured {
  border-color: rgba(225, 171, 90, .52);
  background:
    linear-gradient(155deg, rgba(216, 152, 65, .24), rgba(61, 37, 18, .2) 42%, #121318 100%),
    #111318;
  box-shadow: 0 24px 90px rgba(167, 94, 28, .18);
}

.solution-card__badge {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(8,9,11,.58);
  color: #efd1a1;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.solution-card__top {
  position: relative;
  height: 210px;
  margin: -4px -4px 16px;
}

.solution-card__number {
  position: relative;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(214,154,67,.34);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
}

.turbo-art {
  position: absolute;
  right: -20px;
  bottom: -9px;
  width: 230px;
  height: 190px;
  filter: drop-shadow(0 25px 30px rgba(0,0,0,.55));
}

.turbo-art__outer {
  position: absolute;
  right: 35px;
  bottom: 4px;
  width: 155px;
  height: 155px;
  border: 12px solid #777c82;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 0 24%, #25282d 25% 32%, #b2b5b7 33% 37%, #44484d 38% 51%, #17191c 52% 100%);
  box-shadow: inset 8px 7px 14px rgba(255,255,255,.3), inset -14px -12px 18px rgba(0,0,0,.45), 0 0 0 3px #2a2d31;
}

.turbo-art__outer::before {
  position: absolute;
  inset: 23px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 6deg, #d4a55c 0deg 7deg, #5b3518 8deg 14deg);
  content: "";
  box-shadow: inset 0 0 0 13px #1b1d21;
}

.turbo-art__outer::after {
  position: absolute;
  inset: 62px;
  border-radius: 50%;
  background: #d9b271;
  content: "";
  box-shadow: 0 0 0 4px #191b1e;
}

.turbo-art__outer i {
  position: absolute;
  z-index: -1;
  top: 19px;
  left: -48px;
  width: 120px;
  height: 95px;
  border: 14px solid #6c7177;
  border-right: 0;
  border-radius: 70px 0 0 70px;
  transform: rotate(-18deg);
  box-shadow: inset 6px 5px 10px rgba(255,255,255,.2), inset -8px -7px 11px rgba(0,0,0,.4);
}

.turbo-art__pipe {
  position: absolute;
  top: 43px;
  right: -13px;
  width: 95px;
  height: 64px;
  border: 10px solid #73787d;
  border-left: 0;
  border-radius: 0 36px 36px 0;
  transform: rotate(6deg);
  box-shadow: inset -6px 4px 9px rgba(255,255,255,.2), inset 0 -7px 10px rgba(0,0,0,.38);
}

.turbo-art--cartridge {
  transform: scale(.94) rotate(-4deg);
}

.turbo-art--cartridge .turbo-art__outer::before {
  background: repeating-conic-gradient(from 4deg, #caa266 0deg 6deg, #422819 7deg 13deg);
}

.turbo-art--new {
  transform: rotate(7deg);
}

.turbo-art--new .turbo-art__outer {
  border-color: #858b91;
}

.solution-card h3 {
  max-width: 290px;
  margin-bottom: 19px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.1;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  position: absolute;
  top: .5em;
  left: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 2px #121419;
}

.solution-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.solution-card__foot strong {
  color: var(--gold-light);
  font-size: 18px;
}

.solution-card__foot button {
  min-width: 92px;
  min-height: 38px;
  padding-inline: 15px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(110deg, #edc27a, #c88337);
  color: #181109;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.price-note {
  margin: 18px 0 0;
  color: var(--muted-2);
  font-size: 11px;
  text-align: center;
}

.services {
  background: linear-gradient(180deg, #0d0f12, #090a0d);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 10%, rgba(214,154,67,.08), transparent 33%),
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  transition: transform .25s var(--ease), border-color .25s ease;
}

.service-card::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(214,154,67,.12);
  border-radius: 50%;
  content: "";
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214,154,67,.36);
}

.service-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  place-items: center;
  border: 1px solid rgba(214,154,67,.25);
  border-radius: 14px;
  background: rgba(214,154,67,.06);
  color: var(--gold);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  max-width: 300px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.service-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.service-card footer strong {
  color: var(--gold-light);
  font-size: 15px;
}

.service-card footer button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(214,154,67,.36);
  border-radius: 50%;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.service-card footer button:hover {
  background: var(--gold);
  color: #111;
}

.service-card footer svg {
  width: 17px;
  height: 17px;
}

.process {
  background: #090b0d;
}

.process__line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process__line::before {
  position: absolute;
  z-index: 0;
  top: 62px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(214,154,67,.5) 0 7px, transparent 7px 14px);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-step > span {
  position: absolute;
  top: 4px;
  left: 0;
  color: #5e6269;
  font-size: 10px;
  letter-spacing: .12em;
}

.process-step__icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid rgba(214,154,67,.55);
  border-radius: 50%;
  background: #0d0f12;
  color: var(--gold);
  box-shadow: 0 0 0 8px #090b0d, 0 0 28px rgba(214,154,67,.08);
}

.process-step__icon svg {
  width: 28px;
  height: 28px;
}

.process-step h3 {
  margin-bottom: 9px;
  font-size: 17px;
}

.process-step p {
  max-width: 190px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.workshop {
  overflow: hidden;
  background:
    linear-gradient(90deg, #0b0d10 0%, #0b0d10 51%, #11100e 100%);
}

.workshop__layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: clamp(50px, 6vw, 90px);
}

.workshop__copy > p:not(.kicker) {
  max-width: 600px;
  margin: 25px 0 32px;
  color: var(--muted);
  font-size: 15px;
}

.workshop__benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.workshop__benefits > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.workshop__benefits svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--gold);
}

.workshop__benefits span {
  display: grid;
  gap: 4px;
}

.workshop__benefits b {
  font-size: 13px;
}

.workshop__benefits small {
  color: var(--muted-2);
  font-size: 11px;
}

.workshop__visual {
  position: relative;
  min-height: 460px;
}

.machine-grid {
  position: absolute;
  inset: 4% -14% -5% 0;
  border: 1px solid rgba(214,154,67,.08);
  background-image:
    linear-gradient(rgba(214,154,67,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214,154,67,.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at center, #000 8%, transparent 68%);
}

.machine-grid::after {
  position: absolute;
  inset: 12% 8%;
  border: 1px solid rgba(214,154,67,.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 38px rgba(214,154,67,.015), 0 0 0 78px rgba(214,154,67,.012);
}

.turbo-large {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 370px;
  height: 330px;
  transform: translate(-50%, -50%) rotate(-10deg);
  filter: drop-shadow(0 45px 50px rgba(0,0,0,.68)) drop-shadow(0 0 35px rgba(214,154,67,.2));
}

.turbo-large__snail {
  position: absolute;
  top: 58px;
  left: 28px;
  width: 255px;
  height: 255px;
  border: 30px solid #777c82;
  border-radius: 50%;
  background: radial-gradient(circle, #15171b 0 29%, #383c42 30% 39%, #b5b8ba 40% 43%, #3d4248 44% 100%);
  box-shadow: inset 18px 15px 26px rgba(255,255,255,.26), inset -22px -20px 30px rgba(0,0,0,.5), 0 0 0 5px #292d32;
}

.turbo-large__snail::before {
  position: absolute;
  z-index: -1;
  top: -28px;
  left: -100px;
  width: 170px;
  height: 150px;
  border: 28px solid #6d7278;
  border-right: 0;
  border-radius: 95px 0 0 95px;
  content: "";
  transform: rotate(-16deg);
  box-shadow: inset 12px 10px 20px rgba(255,255,255,.18), inset -14px -12px 20px rgba(0,0,0,.45);
}

.turbo-large__core {
  position: absolute;
  z-index: 3;
  top: 118px;
  left: 89px;
  width: 132px;
  height: 132px;
  border: 18px solid #15171a;
  border-radius: 50%;
  background: #2c2f34;
  box-shadow: 0 0 0 7px #a1a4a6, inset 0 0 22px rgba(0,0,0,.8);
  animation: core-spin 12s linear infinite;
}

.turbo-large__core i {
  position: absolute;
  top: 5px;
  left: 43px;
  width: 14px;
  height: 51px;
  transform-origin: 7px 61px;
  border-radius: 100% 15% 100% 20%;
  background: linear-gradient(90deg, #f0c174, #6f401d);
}

.turbo-large__core i:nth-child(1) { transform: rotate(0deg); }
.turbo-large__core i:nth-child(2) { transform: rotate(30deg); }
.turbo-large__core i:nth-child(3) { transform: rotate(60deg); }
.turbo-large__core i:nth-child(4) { transform: rotate(90deg); }
.turbo-large__core i:nth-child(5) { transform: rotate(120deg); }
.turbo-large__core i:nth-child(6) { transform: rotate(150deg); }
.turbo-large__core i:nth-child(7) { transform: rotate(180deg); }
.turbo-large__core i:nth-child(8) { transform: rotate(210deg); }
.turbo-large__core i:nth-child(9) { transform: rotate(240deg); }
.turbo-large__core i:nth-child(10) { transform: rotate(270deg); }
.turbo-large__core i:nth-child(11) { transform: rotate(300deg); }
.turbo-large__core i:nth-child(12) { transform: rotate(330deg); }

@keyframes core-spin {
  to { transform: rotate(360deg); }
}

.turbo-large__pipe {
  position: absolute;
  top: 64px;
  right: 1px;
  width: 160px;
  height: 105px;
  border: 24px solid #73787d;
  border-left: 0;
  border-radius: 0 65px 65px 0;
  transform: rotate(8deg);
  box-shadow: inset -12px 10px 16px rgba(255,255,255,.18), inset 0 -14px 18px rgba(0,0,0,.42);
}

.brands {
  background: #0b0d10;
}

.brands__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brands__list span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.018);
  color: #d8d9dc;
  font-size: 12px;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.brands__list span:hover {
  border-color: rgba(214,154,67,.35);
  background: rgba(214,154,67,.06);
  color: #fff;
}

.advantages {
  background: #090b0d;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.advantage-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.008));
}

.advantage-card > svg {
  width: 31px;
  height: 31px;
  margin-bottom: 30px;
  color: var(--gold);
}

.advantage-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.2;
}

.advantage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.reviews {
  background:
    radial-gradient(circle at 18% 30%, rgba(214,154,67,.06), transparent 30%),
    #0b0d10;
}

.reviews__notice {
  font-size: 12px !important;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(214,154,67,.34);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(214,154,67,.055), rgba(255,255,255,.012));
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: #efb84e;
}

.stars svg {
  width: 15px;
  height: 15px;
}

.review-card p {
  margin-bottom: 24px;
  color: #d3d4d7;
  font-size: 14px;
  line-height: 1.7;
}

.review-card footer {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.review-card footer b {
  font-size: 12px;
}

.review-card footer span {
  color: var(--muted-2);
  font-size: 10px;
}

.review-card--placeholder {
  border-style: dashed;
  opacity: .82;
}

.faq {
  background: #090a0c;
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 8vw, 120px);
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-height) + 45px);
  align-self: start;
}

.faq__intro > p:not(.kicker) {
  max-width: 400px;
  margin: 24px 0 28px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__button {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.accordion__button span {
  font-size: 15px;
  font-weight: 700;
}

.accordion__button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--gold);
  transition: transform .25s ease;
}

.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease);
}

.accordion__content > p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.accordion__item.is-open .accordion__content {
  grid-template-rows: 1fr;
}

.accordion__item.is-open .accordion__content > p {
  padding-bottom: 24px;
}

.accordion__item.is-open .accordion__button svg {
  transform: rotate(45deg);
}

.final-cta {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(214,154,67,.25);
  background:
    radial-gradient(circle at 82% 50%, rgba(214,154,67,.2), transparent 27%),
    linear-gradient(110deg, #0b0d10 0%, #0c0e11 65%, #1a120b 100%);
}

.final-cta__layout {
  position: relative;
  display: grid;
  min-height: 600px;
  grid-template-columns: .85fr 1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  padding-block: clamp(70px, 8vw, 110px);
}

.final-cta__copy {
  position: relative;
  z-index: 3;
}

.final-cta__copy > p:not(.kicker) {
  max-width: 520px;
  margin: 24px 0;
  color: var(--muted);
}

.final-cta__checks {
  display: grid;
  gap: 9px;
  color: #c8c9cc;
  font-size: 12px;
}

.final-cta__checks span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.final-cta__checks svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.lead-form,
.modal-form {
  position: relative;
  z-index: 4;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(13, 15, 18, .88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.lead-form__grid,
.modal-form {
  display: grid;
  gap: 14px;
}

.lead-form label,
.modal-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span,
.modal-form label span {
  color: #b9bbc0;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea,
.modal-form input,
.modal-form textarea,
.modal-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  outline: none;
  background: #0a0c0f;
  color: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form input,
.modal-form input,
.modal-form select {
  height: 52px;
  padding-inline: 16px;
}

.lead-form textarea,
.modal-form textarea {
  min-height: 104px;
  padding: 14px 16px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus,
.modal-form input:focus,
.modal-form textarea:focus,
.modal-form select:focus {
  border-color: rgba(214,154,67,.58);
  box-shadow: 0 0 0 3px rgba(214,154,67,.08);
}

.is-invalid {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 3px rgba(226,109,109,.08) !important;
}

.lead-form .btn,
.modal-form .btn {
  margin-top: 16px;
}

.form-legal {
  margin: 13px 0 0;
  color: var(--muted-2);
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.form-legal button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.final-cta__turbo {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -220px;
  width: 500px;
  height: 500px;
  border: 46px solid rgba(143, 100, 55, .64);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: inset 24px 20px 35px rgba(255,255,255,.18), inset -32px -28px 44px rgba(0,0,0,.65), 0 0 90px rgba(214,154,67,.22);
}

.final-cta__turbo::before {
  position: absolute;
  inset: 52px;
  border-radius: 50%;
  background: repeating-conic-gradient(#d9aa68 0deg 8deg, #5c3419 9deg 17deg);
  content: "";
  box-shadow: inset 0 0 0 44px #16181b, 0 0 0 7px #888b8e;
  animation: core-spin 16s linear infinite reverse;
}

.final-cta__turbo::after {
  position: absolute;
  inset: 206px;
  border-radius: 50%;
  background: #d9ac6c;
  content: "";
  box-shadow: 0 0 0 9px #15171a;
}

.contacts {
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
  background: #0a0c0f;
}

.contacts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.contact-card {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.016);
  text-align: left;
  transition: border-color .2s ease, background .2s ease;
}

.contact-card:hover {
  border-color: rgba(214,154,67,.32);
  background: rgba(214,154,67,.04);
}

.contact-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(214,154,67,.22);
  border-radius: 50%;
  color: var(--gold);
}

.contact-card svg {
  width: 20px;
  height: 20px;
}

.contact-card div {
  display: grid;
  gap: 2px;
}

.contact-card small {
  color: var(--muted-2);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-card b {
  font-size: 12px;
}

.contact-card--button {
  width: 100%;
  color: inherit;
  cursor: pointer;
}

.footer {
  background: #07080a;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.45fr .8fr .8fr 1fr;
  gap: 60px;
  padding-block: 58px;
}

.footer__brand p {
  max-width: 300px;
  margin: 20px 0 0;
  color: var(--muted-2);
  font-size: 12px;
}

.footer__nav,
.footer__contacts {
  display: grid;
  align-content: start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.footer__nav b,
.footer__contacts b {
  margin-bottom: 6px;
  color: #fff;
  font-size: 12px;
}

.footer__nav a:hover,
.footer__contacts a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #666a72;
  font-size: 10px;
}

.footer__bottom div {
  display: flex;
  gap: 22px;
}

.footer__bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.footer__bottom button:hover {
  color: #bbb;
}

.mobile-actions {
  display: none;
}

.modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
}

.modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  max-height: calc(100vh - 40px);
  padding: 34px;
  overflow-y: auto;
  border: 1px solid rgba(214,154,67,.32);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(214,154,67,.12), transparent 35%),
    #111318;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
  transform: translateY(18px) scale(.985);
  transition: transform .25s var(--ease);
}

.modal.is-open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__dialog > h2 {
  margin-bottom: 12px;
  font-size: 34px;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.modal__dialog > p:not(.kicker) {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.modal__close {
  position: absolute;
  z-index: 3;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  cursor: pointer;
}

.modal__close span {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 18px;
  height: 1px;
  background: #fff;
}

.modal__close span:first-child { transform: rotate(45deg); }
.modal__close span:last-child { transform: rotate(-45deg); }

.modal__dialog--policy {
  width: min(100%, 760px);
}

.modal__dialog--policy h2 {
  padding-right: 50px;
  font-size: 32px;
}

.modal__dialog--policy h3 {
  margin: 28px 0 8px;
  font-size: 17px;
}

.modal__dialog--policy p,
.modal__dialog--policy li {
  color: var(--muted);
  font-size: 13px;
}

.modal__dialog--policy ul {
  padding-left: 20px;
}

.cookie {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  display: flex;
  width: min(520px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16,18,22,.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.cookie[hidden] {
  display: none;
}

.cookie p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.cookie > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie > div > button:not(.btn) {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  text-decoration: underline;
}

.toast {
  position: fixed;
  z-index: 150;
  right: 22px;
  bottom: 22px;
  width: min(390px, calc(100% - 44px));
  padding: 16px 18px;
  border: 1px solid rgba(77,204,131,.35);
  border-radius: 14px;
  background: rgba(13,25,19,.96);
  color: #d8f5e4;
  font-size: 13px;
  box-shadow: var(--shadow);
  transform: translateY(30px);
  visibility: hidden;
  opacity: 0;
  transition: transform .3s var(--ease), opacity .3s ease, visibility .3s ease;
}

.toast.is-visible {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.noscript {
  position: fixed;
  z-index: 9999;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #fff2b8;
  color: #221b07;
  font-size: 12px;
  text-align: center;
}

.reveal {
  transform: translateY(28px);
  opacity: 0;
  transition: transform .75s var(--ease), opacity .75s ease;
}

.reveal--delay,
.reveal--1 { transition-delay: .08s; }
.reveal--2 { transition-delay: .16s; }
.reveal--3 { transition-delay: .24s; }
.reveal--4 { transition-delay: .32s; }

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1180px) {
  :root {
    --container: 1060px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a:nth-child(5) {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1.62fr) minmax(330px, .9fr);
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(56px, 7vw, 82px);
  }

  .hero__photo-label--top {
    display: none;
  }

  .symptoms__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .symptom-card:nth-child(4),
  .symptom-card:nth-child(5) {
    min-height: 170px;
  }

  .advantages__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantage-card:nth-child(4),
  .advantage-card:nth-child(5) {
    min-height: 190px;
  }

  .footer__top {
    grid-template-columns: 1.4fr .8fr .8fr;
  }

  .footer__contacts {
    grid-column: 2 / -1;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .topbar__meta span:first-child {
    display: none;
  }

  .desktop-nav,
  .site-header__actions {
    display: none;
  }

  .burger,
  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 54px;
  }

  .hero__copy {
    max-width: 800px;
  }

  .hero__photo-wrap {
    width: min(100%, 680px);
    min-height: 500px;
    justify-self: center;
    border: 1px solid rgba(214,154,67,.14);
    border-radius: 28px;
  }

  .hero__photo-wrap::before {
    background: linear-gradient(180deg, transparent 0 62%, rgba(8,9,11,.72) 100%);
  }

  .hero__photo img {
    object-fit: contain;
  }

  .hero__photo-label--bottom {
    right: 18px;
    bottom: 18px;
  }

  .section-head--row {
    display: block;
  }

  .section-head--row > p {
    margin-top: 20px;
  }

  .solutions__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 460px;
  }

  .solution-card__top {
    height: 180px;
  }

  .solution-card h3 {
    max-width: 520px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__line {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }

  .process__line::before {
    display: none;
  }

  .process-step:last-child {
    grid-column: 1 / -1;
  }

  .workshop__layout,
  .faq__layout,
  .final-cta__layout {
    grid-template-columns: 1fr;
  }

  .workshop__visual {
    min-height: 400px;
  }

  .faq__intro {
    position: static;
  }

  .final-cta__layout {
    gap: 34px;
  }

  .final-cta__turbo {
    right: -320px;
    opacity: .45;
  }

  .contacts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 70px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar {
    height: 30px;
  }

  .topbar__status {
    font-size: 10px;
  }

  .topbar__meta {
    display: none;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .logo {
    gap: 10px;
  }

  .logo__mark {
    width: 40px;
    height: 40px;
  }

  .logo__word b {
    font-size: 18px;
  }

  .hero__layout {
    padding-block: 42px 38px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .hero__accent {
    font-size: clamp(23px, 7vw, 31px);
  }

  .hero__text {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero__buttons {
    display: grid;
  }

  .hero__buttons .btn {
    width: 100%;
  }

  .hero__benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero__photo-wrap {
    min-height: 430px;
  }

  .hero__photo-label--bottom {
    display: none;
  }

  .section,
  .section--compact {
    padding-block: 68px;
  }

  .section-head h2,
  .workshop h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .section-head--small h2 {
    font-size: 36px;
  }

  .symptoms__grid,
  .services__grid,
  .advantages__grid,
  .contacts__grid {
    grid-template-columns: 1fr;
  }

  .symptom-card {
    min-height: 145px;
  }

  .solution-card {
    min-height: auto;
    padding: 22px;
  }

  .solution-card__top {
    height: 160px;
  }

  .turbo-art {
    width: 205px;
    transform: scale(.82);
    transform-origin: right bottom;
  }

  .solution-card--featured .turbo-art {
    transform: scale(.78) rotate(-4deg);
  }

  .service-card,
  .advantage-card {
    min-height: 220px;
  }

  .process__line {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-step:last-child {
    grid-column: auto;
  }

  .process-step {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    column-gap: 18px;
    text-align: left;
  }

  .process-step > span {
    top: 0;
  }

  .process-step__icon {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .process-step h3,
  .process-step p {
    max-width: none;
    margin: 0;
  }

  .workshop__benefits {
    grid-template-columns: 1fr;
  }

  .workshop__visual {
    min-height: 330px;
  }

  .turbo-large {
    left: 53%;
    transform: translate(-50%, -50%) rotate(-10deg) scale(.72);
  }

  .brands__list {
    gap: 8px;
  }

  .brands__list span {
    min-height: 42px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .lead-form,
  .modal-form {
    padding: 20px;
  }

  .final-cta__turbo {
    display: none;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer__brand,
  .footer__contacts {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    min-height: 90px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .footer__bottom div {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 66px;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,.1);
    background: rgba(8,9,11,.95);
    backdrop-filter: blur(16px);
  }

  .mobile-actions a,
  .mobile-actions button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-actions button {
    background: linear-gradient(110deg, var(--gold-light), var(--gold));
    color: #15100a;
  }

  .mobile-actions svg {
    width: 19px;
    height: 19px;
  }

  .cookie {
    right: 14px;
    bottom: 80px;
    left: 14px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie > div {
    justify-content: space-between;
  }

  .toast {
    bottom: 82px;
  }

  .modal {
    align-items: end;
    padding: 0;
  }

  .modal__dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 26px 26px 0 0;
  }
}

@media (max-width: 430px) {
  .topbar__status {
    overflow: hidden;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .hero__photo-wrap {
    min-height: 360px;
  }

  .hero__photo img {
    object-position: center bottom;
  }

  .solution-card__top {
    height: 145px;
  }

  .turbo-art {
    right: -40px;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__brand,
  .footer__contacts {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}

/* =========================================================
   DANEX TURBO — расширенная версия по референсам, 29.07.2026
   ========================================================= */

/* Первый экран: фото чуть шире, турбина полностью открыта */
.hero__layout {
  grid-template-columns: minmax(0, 1.62fr) minmax(430px, 1fr);
  gap: clamp(34px, 4vw, 64px);
}

.hero__photo-wrap {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1.06;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(214, 154, 67, .28);
  border-radius: 26px;
  background: #0c0d0f;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .025) inset;
}

.hero__photo-wrap::before {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, .34), transparent 18%, transparent 88%, rgba(8, 9, 11, .16)),
    linear-gradient(180deg, rgba(8, 9, 11, .1), transparent 58%, rgba(8, 9, 11, .66) 100%);
}

.hero__photo-wrap::after {
  right: -145px;
  bottom: -165px;
  opacity: .75;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.94) contrast(1.04) brightness(.9);
  mask-image: linear-gradient(to bottom, #000 0 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 88%, transparent 100%);
}

.hero__photo-label--top {
  top: 22px;
  right: 22px;
}

/* Производители турбин */
.turbo-makers {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(214, 154, 67, .09), transparent 38%),
    linear-gradient(180deg, #0b0d10, #090a0c);
}

.maker-features {
  display: grid;
  max-width: 1080px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: -4px auto 34px;
}

.maker-features > div {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .018);
}

.maker-features span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(214, 154, 67, .32);
  border-radius: 10px;
  color: var(--gold);
}

.maker-features svg {
  width: 19px;
  height: 19px;
}

.maker-features b {
  color: #d7d8da;
  font-size: 13px;
  font-weight: 700;
}

.maker-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.maker-logo {
  position: relative;
  display: flex;
  min-height: 126px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0, rgba(214, 154, 67, .07), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .008));
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
  text-align: center;
  transition: transform .25s var(--ease), border-color .25s ease;
}

.maker-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 154, 67, .3);
}

.maker-logo strong {
  letter-spacing: -.045em;
  line-height: 1;
}

.maker-logo small {
  color: #a8abb1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.maker-logo--garrett strong {
  color: #ed3835;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 41px;
  letter-spacing: -.02em;
}

.maker-logo--garrett small {
  color: #e7e7e7;
  letter-spacing: 0;
}

.maker-logo--ihi strong {
  color: #2763ba;
  font-family: Georgia, serif;
  font-size: 55px;
  letter-spacing: .01em;
}

.maker-logo--schwitzer strong {
  color: #ed2828;
  font-size: 31px;
  font-style: italic;
}

.maker-logo--schwitzer small {
  color: #9b9cc7;
  font-size: 17px;
  letter-spacing: -.04em;
  text-transform: lowercase;
}

.maker-logo--holset strong {
  padding: 5px 14px;
  border: 3px solid #e8e8e8;
  border-radius: 12px;
  color: #f3f3f3;
  font-size: 34px;
  letter-spacing: -.02em;
}

.maker-logo--holset small {
  margin-top: 5px;
  color: #fff;
  letter-spacing: .24em;
}

.maker-logo--kkk span {
  display: grid;
  width: 62px;
  height: 56px;
  place-items: center;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #e8e9eb;
  color: #111317;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -.08em;
}

.maker-logo--kkk small {
  color: #f0f0f0;
  font-size: 13px;
  letter-spacing: -.02em;
}

.maker-logo--borg strong {
  color: #3967c3;
  font-size: 31px;
}

.maker-logo--mitsubishi {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
}

.maker-logo--mitsubishi strong {
  align-self: end;
  color: #f1f1f1;
  font-size: 20px;
  letter-spacing: .02em;
}

.maker-logo--mitsubishi small {
  grid-column: 2;
  align-self: start;
  color: #fff;
  letter-spacing: .08em;
}

.mitsubishi-mark {
  position: relative;
  display: block;
  width: 52px;
  height: 48px;
  grid-row: 1 / 3;
}

.mitsubishi-mark i {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  background: #ef2828;
}

.mitsubishi-mark i:nth-child(1) { top: 0; left: 15px; }
.mitsubishi-mark i:nth-child(2) { right: 1px; bottom: 0; }
.mitsubishi-mark i:nth-child(3) { bottom: 0; left: 1px; }

/* Комплексные решения */
.complex-solutions {
  background:
    radial-gradient(circle at 14% 10%, rgba(214, 154, 67, .07), transparent 30%),
    linear-gradient(180deg, #090b0e, #0c0e11);
}

.complex-solutions__list {
  display: grid;
  gap: 14px;
}

.complex-row {
  position: relative;
  display: grid;
  min-height: 210px;
  grid-template-columns: minmax(225px, .9fr) minmax(225px, .95fr) minmax(330px, 1.35fr) minmax(175px, .65fr);
  align-items: center;
  gap: 28px;
  padding: 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(214, 154, 67, .25);
  border-radius: 18px;
  background:
    linear-gradient(100deg, rgba(214, 154, 67, .045), transparent 24%),
    rgba(255, 255, 255, .015);
  box-shadow: inset 0 1px rgba(255, 255, 255, .025);
}

.complex-row::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  content: "";
  opacity: .72;
}

.complex-row__title {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  column-gap: 16px;
}

.complex-row__number {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  color: #8b8f96;
  font-size: 12px;
  letter-spacing: .14em;
}

.complex-row__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(214, 154, 67, .3);
  border-radius: 14px;
  color: var(--gold);
}

.complex-row__icon svg {
  width: 25px;
  height: 25px;
}

.complex-row h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
  text-transform: uppercase;
}

.complex-row__summary {
  color: #c4c6cb;
  font-size: 13px;
  line-height: 1.55;
}

.complex-row__summary p:last-child {
  margin-bottom: 0;
}

.complex-row__summary strong {
  color: #ece9e3;
}

.complex-row__summary em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 800;
}

.complex-row__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #b8bac0;
  font-size: 12px;
  list-style: none;
}

.complex-row__list li {
  position: relative;
  padding-left: 17px;
}

.complex-row__list li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
  box-shadow: 0 0 10px rgba(214, 154, 67, .45);
}

.complex-row__button {
  width: 100%;
  min-height: 58px;
  padding-inline: 15px;
  border-color: rgba(214, 154, 67, .3);
  color: var(--gold-light);
  font-size: 10px;
  line-height: 1.35;
  text-align: center;
}

/* История сервиса */
.service-story {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 40%, rgba(214, 154, 67, .09), transparent 34%),
    linear-gradient(180deg, #0d0f12, #090b0d);
}

.service-story__layout {
  display: grid;
  grid-template-columns: minmax(390px, .95fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(46px, 6vw, 92px);
}

.service-story__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 154, 67, .25);
  border-radius: 24px;
  background: #111318;
  box-shadow: var(--shadow);
}

.service-story__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(8, 9, 11, .94) 100%);
  content: "";
  pointer-events: none;
}

.service-story__media img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.04) brightness(.88);
}

.service-story__media figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 22px;
  left: 26px;
  display: grid;
  gap: 2px;
}

.service-story__media figcaption b {
  font-size: 17px;
}

.service-story__media figcaption span {
  color: #a5a8ae;
  font-size: 12px;
}

.service-story__copy h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4.3vw, 65px);
  letter-spacing: -.05em;
  line-height: 1.02;
  text-transform: uppercase;
}

.service-story__copy h2 em {
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.service-story__copy > p:not(.kicker) {
  max-width: 760px;
  color: #b3b6bc;
  font-size: 16px;
  line-height: 1.72;
}

.service-story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.service-story__stats > div {
  display: grid;
  gap: 3px;
  padding: 24px 24px 0 0;
}

.service-story__stats > div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.service-story__stats small,
.service-story__stats span {
  color: #8f939b;
  font-size: 11px;
}

.service-story__stats strong {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: clamp(27px, 3vw, 39px);
  letter-spacing: -.045em;
  line-height: 1;
}

.service-story__stats strong svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* Карточки по маркам автомобилей */
.auto-brands {
  background:
    radial-gradient(circle at 50% 0, rgba(214, 154, 67, .06), transparent 30%),
    #090a0c;
}

.auto-brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.auto-brand {
  position: relative;
  display: grid;
  min-height: 170px;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 14px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    radial-gradient(circle at 80% 0, rgba(214, 154, 67, .07), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .008));
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform .24s var(--ease), border-color .24s ease, background .24s ease;
}

.auto-brand:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 154, 67, .38);
  background-color: rgba(214, 154, 67, .03);
}

.auto-brand__mark {
  display: grid;
  min-width: 92px;
  min-height: 66px;
  grid-column: 1 / -1;
  place-items: center;
  justify-self: start;
  color: #dfe1e4;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
}

.auto-brand__mark--round {
  width: 66px;
  min-width: 66px;
  border: 2px solid #b7bbc0;
  border-radius: 50%;
  font-size: 16px;
  letter-spacing: -.08em;
  box-shadow: inset 0 0 0 5px #14171b;
}

.auto-brand__mark--star {
  width: 66px;
  min-width: 66px;
  border: 2px solid #b7bbc0;
  border-radius: 50%;
  font-size: 37px;
}

.auto-brand__mark--rings {
  font-size: 26px;
  letter-spacing: -.3em;
  transform: translateX(-10px);
}

.auto-brand__mark--oval {
  min-width: 108px;
  min-height: 48px;
  padding-inline: 18px;
  border: 2px solid #b7bbc0;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
  letter-spacing: -.03em;
}

.auto-brand__mark--bar {
  min-width: 112px;
  min-height: 42px;
  border-top: 2px solid #bbbfc4;
  border-bottom: 2px solid #bbbfc4;
  font-size: 17px;
  letter-spacing: .08em;
}

.auto-brand__mark--chevron,
.auto-brand__mark--diamond {
  font-size: 44px;
  letter-spacing: -.18em;
}

.auto-brand__mark--shield {
  width: 58px;
  min-width: 58px;
  min-height: 66px;
  clip-path: polygon(50% 0, 92% 18%, 84% 78%, 50% 100%, 16% 78%, 8% 18%);
  background: linear-gradient(145deg, #d9aa50, #5f3e1b);
  color: #111;
  font-family: Georgia, serif;
  font-size: 31px;
}

.auto-brand b {
  align-self: end;
  font-size: 14px;
  line-height: 1.25;
}

.auto-brand > svg {
  width: 19px;
  height: 19px;
  align-self: end;
  color: var(--gold);
}

.vehicle-types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.vehicle-types span {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #b8bbc0;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.vehicle-types svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--gold);
}

/* Карта и контакты — последний блок перед футером */
.location {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 55%, rgba(214, 154, 67, .08), transparent 33%),
    linear-gradient(180deg, #090b0e, #0d1014);
}

.location__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(320px, .7fr);
  gap: 16px;
}

.location__map {
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(214, 154, 67, .24);
  border-radius: 24px;
  background: #0b0f13;
  box-shadow: var(--shadow);
}

.location__map svg {
  width: 100%;
  height: 100%;
  min-height: 470px;
}

.location__card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(214, 154, 67, .24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 154, 67, .1), transparent 40%),
    linear-gradient(160deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01));
}

.location__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(214, 154, 67, .34);
  border-radius: 15px;
  color: var(--gold);
}

.location__icon svg {
  width: 24px;
  height: 24px;
}

.location__card .kicker {
  margin-bottom: 13px;
}

.location__card .kicker::before {
  display: none;
}

.location__card h3 {
  margin-bottom: 30px;
  font-size: 31px;
  line-height: 1.08;
}

.location__details {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.location__details div {
  display: grid;
  gap: 3px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.location__details small {
  color: #797e87;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location__details b,
.location__details a {
  color: #e5e4e1;
  font-size: 13px;
  font-weight: 750;
}

.location__card .btn {
  margin-top: auto;
}

@media (max-width: 1180px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1.42fr) minmax(390px, .95fr);
  }

  .maker-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  .complex-row {
    grid-template-columns: minmax(220px, .8fr) minmax(220px, .9fr) minmax(310px, 1.25fr);
  }

  .complex-row__button {
    grid-column: 1 / -1;
    width: auto;
    min-width: 230px;
    justify-self: end;
  }

  .service-story__layout {
    grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr);
    gap: 48px;
  }

  .auto-brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vehicle-types {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__photo-wrap {
    width: min(100%, 720px);
    aspect-ratio: 1 / 1;
    justify-self: center;
  }

  .maker-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .complex-row {
    grid-template-columns: 1fr 1fr;
  }

  .complex-row__title,
  .complex-row__summary {
    align-self: start;
  }

  .complex-row__list {
    grid-column: 1 / -1;
  }

  .complex-row__button {
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
  }

  .service-story__layout,
  .location__layout {
    grid-template-columns: 1fr;
  }

  .service-story__media {
    width: min(100%, 720px);
  }

  .auto-brands__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location__card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .hero__photo-wrap {
    aspect-ratio: 1 / 1.05;
    min-height: 0;
  }

  .hero__photo-label--top {
    top: 14px;
    right: 14px;
    width: 166px;
    padding: 11px 12px;
  }

  .maker-features {
    grid-template-columns: 1fr;
  }

  .maker-features > div {
    justify-content: flex-start;
  }

  .maker-logos {
    gap: 9px;
  }

  .maker-logo {
    min-height: 105px;
  }

  .maker-logo--garrett strong { font-size: 31px; }
  .maker-logo--ihi strong { font-size: 42px; }
  .maker-logo--schwitzer strong { font-size: 24px; }
  .maker-logo--holset strong { font-size: 24px; }
  .maker-logo--borg strong { font-size: 23px; }

  .complex-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 20px;
  }

  .complex-row__list,
  .complex-row__button {
    grid-column: auto;
  }

  .complex-row__title {
    grid-template-columns: 50px 1fr;
  }

  .complex-row h3 {
    font-size: 20px;
  }

  .service-story__layout {
    gap: 30px;
  }

  .service-story__copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .service-story__stats {
    grid-template-columns: 1fr;
  }

  .service-story__stats > div,
  .service-story__stats > div + div {
    padding: 18px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .auto-brands__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .auto-brand {
    min-height: 150px;
    padding: 17px;
  }

  .auto-brand__mark {
    min-height: 54px;
    font-size: 20px;
  }

  .auto-brand b {
    font-size: 12px;
  }

  .vehicle-types {
    grid-template-columns: 1fr 1fr;
  }

  .location__map,
  .location__map svg {
    min-height: 340px;
  }

  .location__card {
    padding: 24px;
  }
}

@media (max-width: 430px) {
  .hero__photo-label--top {
    display: none;
  }

  .maker-logos {
    grid-template-columns: 1fr;
  }

  .auto-brands__grid,
  .vehicle-types {
    grid-template-columns: 1fr;
  }

  .auto-brand {
    min-height: 138px;
  }
}

/* Финальная корректировка переполнений и пропорций */
.service-story__media img {
  height: auto;
}

.complex-row {
  grid-template-columns: minmax(245px, .95fr) minmax(235px, .95fr) minmax(320px, 1.3fr) minmax(175px, .65fr);
  gap: 34px;
}

.complex-solutions .section-head h2,
.service-story__copy h2 {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .complex-row {
    grid-template-columns: minmax(220px, .8fr) minmax(220px, .9fr) minmax(310px, 1.25fr);
    gap: 28px;
  }
}

@media (max-width: 960px) {
  .complex-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .complex-solutions .section-head h2 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.02;
  }

  .service-story__copy h2 {
    font-size: clamp(31px, 8.5vw, 39px);
    line-height: 1.04;
  }

  .complex-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Типографика без разрыва длинных слов */
.service-story__copy h2 {
  max-width: 720px;
  font-size: clamp(38px, 3.45vw, 56px);
  overflow-wrap: normal;
  word-break: normal;
}

.complex-solutions .section-head h2 {
  overflow-wrap: normal;
  word-break: normal;
}

.complex-row {
  grid-template-columns: minmax(270px, 1fr) minmax(250px, .9fr) minmax(320px, 1.2fr) minmax(175px, .65fr);
}

.complex-row h3 {
  font-size: 19px;
}

@media (max-width: 1180px) {
  .complex-row {
    grid-template-columns: minmax(250px, .9fr) minmax(230px, .85fr) minmax(300px, 1.15fr);
  }
}

@media (max-width: 960px) {
  .complex-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .complex-solutions .section-head h2 {
    font-size: clamp(30px, 8vw, 36px);
    overflow-wrap: normal;
  }

  .service-story__copy h2 {
    font-size: clamp(29px, 7.8vw, 34px);
    overflow-wrap: normal;
  }

  .complex-row {
    grid-template-columns: 1fr;
  }

  .complex-row h3 {
    font-size: 20px;
  }
}

@media (max-width: 720px) {
  .service-story__copy h2 {
    font-size: clamp(27px, 7vw, 31px);
    letter-spacing: -.045em;
  }
}
