:root {
  --bg: #06090b;
  --bg-2: #0a0e11;
  --panel: rgba(15, 19, 22, .92);
  --panel-2: rgba(20, 24, 28, .94);
  --line: rgba(255, 126, 22, .28);
  --line-strong: rgba(255, 126, 22, .52);
  --orange: #ff7a14;
  --orange-2: #ff9a2f;
  --orange-3: #ffbb63;
  --text: #f6f4ef;
  --muted: #a7adb2;
  --muted-2: #777e84;
  --success: #27c66f;
  --shadow: 0 22px 80px rgba(0,0,0,.45);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1440px, calc(100% - 40px));
  --header-h: 88px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 0%, rgba(255,111,0,.08), transparent 27%),
    linear-gradient(180deg, #050709 0%, #080c0f 38%, #050709 100%);
  font-family: Inter, Manrope, Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 96px 0; scroll-margin-top: 100px; }
.section.compact { padding: 68px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange));
}
.section-title {
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
  font-weight: 950;
}
.section-title .accent { color: var(--orange); }
.section-copy { max-width: 780px; color: var(--muted); font-size: 18px; margin: 20px 0 0; }
.panel {
  background: linear-gradient(180deg, rgba(18,22,25,.95), rgba(10,13,16,.98));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: inset 0 1px rgba(255,255,255,.04), var(--shadow);
  overflow: hidden;
}
.panel.fire-border { border-color: var(--line); box-shadow: inset 0 1px rgba(255,255,255,.05), 0 0 0 1px rgba(255,119,16,.04), var(--shadow); }
.metal-title {
  background:
    linear-gradient(180deg, #ffffff 0%, #d7d9da 16%, #6d7378 43%, #f7f7f6 56%, #767b80 76%, #1c2023 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 0 #171a1c) drop-shadow(0 5px 0 #090a0b) drop-shadow(0 11px 16px rgba(0,0,0,.7));
  text-shadow: 0 0 1px rgba(255,255,255,.35);
}
.fire-text {
  background: linear-gradient(180deg, #ffd18b 0%, #ff9d2a 35%, #ff6b00 68%, #9f2e00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 0 #5a1700) drop-shadow(0 8px 18px rgba(255,78,0,.33));
}
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(14,18,21,.88);
  color: #fff;
  font-weight: 900;
  letter-spacing: .01em;
  cursor: pointer;
  transition: .22s ease;
  position: relative;
  isolation: isolate;
}
.button:hover { transform: translateY(-2px); border-color: rgba(255,139,45,.6); box-shadow: 0 14px 34px rgba(0,0,0,.35); }
.button.primary {
  background: linear-gradient(180deg, #ff9a28, #ed6200);
  border-color: rgba(255,180,95,.75);
  color: #140b04;
  box-shadow: 0 10px 28px rgba(255,94,0,.27), inset 0 1px rgba(255,255,255,.36);
}
.button.primary:hover { box-shadow: 0 16px 38px rgba(255,94,0,.38); }
.button.phone { background: linear-gradient(180deg, #ff9b30, #df5700); color: #fff; }
.button.max { background: linear-gradient(180deg, #39dd79, #17a758); color: #061b0e; }
.button.wa { background: linear-gradient(180deg, #31d06f, #13954a); color: #061b0e; }
.button.tg { background: linear-gradient(180deg, #45b9f2, #1888c2); color: #04131c; }
.button.ghost { background: rgba(6,9,11,.68); backdrop-filter: blur(10px); }
.button svg { width: 22px; height: 22px; flex: none; }
.button small { display: block; font-weight: 700; opacity: .78; font-size: 12px; }
.button.stack { flex-direction: row; gap: 12px; align-items: center; min-width: 210px; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(3,5,6,.96), rgba(5,8,10,.78));
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
  transition: .25s ease;
}
.site-header.scrolled { height: 76px; background: rgba(4,7,9,.96); box-shadow: 0 12px 30px rgba(0,0,0,.32); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; flex: none; }
.brand img { width: 80px; height: 80px; object-fit: contain; filter: drop-shadow(0 0 16px rgba(255,104,0,.25)); transition: .25s ease; }
.scrolled .brand img { width: 64px; height: 64px; }
.brand-copy { line-height: 1; }
.brand-copy strong { display: block; font-size: 22px; letter-spacing: .05em; font-weight: 950; }
.brand-copy span { display: block; color: var(--orange-2); font-size: 11px; margin-top: 7px; text-transform: uppercase; letter-spacing: .13em; font-weight: 900; }
.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(14px, 1.4vw, 28px); }
.nav a { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: #d9dcde; transition: .2s ease; white-space: nowrap; }
.nav a:hover { color: var(--orange-2); }
.header-contact { display: flex; align-items: center; gap: 16px; margin-left: 10px; }
.header-phone { text-align: right; line-height: 1.05; }
.header-phone b { font-size: 20px; color: var(--orange-2); white-space: nowrap; }
.header-phone span { display: block; font-size: 12px; color: var(--muted); margin-top: 7px; }
.header-cta { min-height: 46px; padding: 10px 18px; font-size: 13px; }
.menu-button { display: none; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: #0c1114; position: relative; cursor: pointer; }
.menu-button span, .menu-button::before, .menu-button::after { content: ""; position: absolute; left: 12px; right: 12px; height: 2px; background: #fff; transition: .2s ease; }
.menu-button span { top: 23px; }
.menu-button::before { top: 16px; }
.menu-button::after { top: 30px; }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: 820px;
  padding-top: var(--header-h);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050708;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../images/hero/hero-fire.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.015);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,4,5,.98) 0%, rgba(2,4,5,.9) 34%, rgba(2,4,5,.22) 67%, rgba(2,4,5,.16) 100%),
    linear-gradient(180deg, rgba(2,4,5,.25), rgba(2,4,5,.08) 58%, #06090b 100%);
}
.hero .container { position: relative; z-index: 2; padding: 92px 0 64px; }
.hero-content { width: min(780px, 60%); }
.hero-kicker { display: flex; align-items: center; gap: 12px; color: var(--orange-2); font-weight: 950; text-transform: uppercase; letter-spacing: .15em; font-size: 14px; margin-bottom: 22px; }
.hero-kicker::before { content: ""; width: 55px; height: 2px; background: linear-gradient(90deg, var(--orange), transparent); }
.hero h1 { margin: 0; text-transform: uppercase; font-size: clamp(52px, 6vw, 98px); line-height: .86; letter-spacing: -.055em; font-weight: 1000; }
.hero h1 span { display: block; }
.hero h1 .wide { font-size: .72em; letter-spacing: -.035em; }
.hero-copy { max-width: 690px; margin: 30px 0 0; color: #d7dbdd; font-size: clamp(17px, 1.5vw, 22px); text-shadow: 0 2px 18px rgba(0,0,0,.8); }
.hero-bullets { margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-bullets span { display: inline-flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.12); background: rgba(3,6,8,.58); backdrop-filter: blur(8px); border-radius: 999px; font-size: 13px; font-weight: 850; }
.hero-bullets i { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 14px var(--orange); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-actions .button { min-width: 178px; }
.hero-media-actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.media-button { border: 0; background: transparent; color: #e6e8e9; font-weight: 850; padding: 9px 0; display: inline-flex; gap: 10px; align-items: center; cursor: pointer; }
.media-button:hover { color: var(--orange-2); }
.play-dot { width: 38px; height: 38px; display: inline-grid; place-items: center; border-radius: 50%; background: linear-gradient(180deg, var(--orange-2), #e85e00); color: #180a00; box-shadow: 0 0 0 6px rgba(255,119,20,.12), 0 0 24px rgba(255,94,0,.32); }
.hero-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  border-top: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(180deg, rgba(5,8,10,.25), rgba(5,8,10,.94));
  backdrop-filter: blur(12px);
}
.hero-bottom .container { padding: 18px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-chip { display: flex; align-items: center; gap: 13px; min-height: 58px; }
.trust-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,121,20,.1); border: 1px solid rgba(255,121,20,.25); display: grid; place-items: center; color: var(--orange); font-size: 19px; }
.trust-chip b { display: block; font-size: 15px; }
.trust-chip span { display: block; color: var(--muted); font-size: 12px; margin-top: 3px; }

.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 38px; }
.service-card { padding: 24px 20px 22px; min-height: 250px; display: flex; flex-direction: column; transition: .25s ease; position: relative; overflow: hidden; }
.service-card::after { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,104,0,.08); filter: blur(35px); right: -50px; bottom: -55px; }
.service-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.service-icon { width: 72px; height: 72px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(145deg, #161c20, #0b0f12); border: 1px solid rgba(255,126,22,.28); color: var(--orange-2); margin-bottom: 28px; box-shadow: inset 0 1px rgba(255,255,255,.05); }
.service-icon svg { width: 40px; height: 40px; }
.service-card h3 { margin: 0 0 10px; font-size: 20px; text-transform: uppercase; line-height: 1.05; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card a { margin-top: auto; padding-top: 20px; color: var(--orange-2); font-weight: 900; font-size: 14px; }

.price-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; margin-top: 40px; }
.price-list { padding: 28px; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.price-row:last-child { border-bottom: 0; }
.price-row b { font-size: 17px; }
.price-row span { color: var(--orange-2); font-size: 19px; font-weight: 950; white-space: nowrap; }
.price-card { min-height: 100%; padding: 36px; display: flex; flex-direction: column; justify-content: center; background:
  linear-gradient(90deg, rgba(7,10,12,.96), rgba(7,10,12,.62)),
  radial-gradient(circle at 85% 20%, rgba(255,108,0,.22), transparent 34%),
  #0d1114;
}
.price-card h3 { margin: 0; font-size: 34px; text-transform: uppercase; line-height: 1; }
.price-card p { color: var(--muted); font-size: 17px; max-width: 520px; }
.price-card .button { align-self: flex-start; margin-top: 14px; }
.price-note { margin: 20px 0 0; color: var(--muted-2); font-size: 13px; }

.vehicle-wrap { margin-top: 42px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr); gap: 24px; }
.vehicle-main { position: relative; min-height: 590px; overflow: hidden; }
.vehicle-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s ease, transform .5s ease; }
.vehicle-main img.switching { opacity: .15; }
.vehicle-main::after { content: ""; position: absolute; inset: auto 0 0; height: 48%; background: linear-gradient(transparent, rgba(3,6,8,.94)); pointer-events: none; }
.vehicle-caption { position: absolute; z-index: 2; left: 28px; bottom: 25px; max-width: 620px; }
.vehicle-caption strong { font-size: 30px; text-transform: uppercase; }
.vehicle-caption span { display: block; margin-top: 8px; color: #c8cdcf; }
.vehicle-info { padding: 28px; display: flex; flex-direction: column; }
.vehicle-info h3 { font-size: 28px; margin: 0; text-transform: uppercase; line-height: 1.05; }
.vehicle-features { display: grid; gap: 14px; margin: 28px 0; }
.vehicle-feature { display: flex; align-items: flex-start; gap: 14px; padding: 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: rgba(255,255,255,.025); }
.vehicle-feature i { width: 33px; height: 33px; border-radius: 9px; display: grid; place-items: center; background: rgba(255,111,0,.1); color: var(--orange); font-style: normal; font-weight: 950; }
.vehicle-feature b { display: block; }
.vehicle-feature span { color: var(--muted); font-size: 13px; }
.vehicle-thumbs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: auto; }
.vehicle-thumb { border: 1px solid rgba(255,255,255,.09); border-radius: 12px; overflow: hidden; background: #0b0e10; padding: 0; cursor: pointer; transition: .2s ease; }
.vehicle-thumb:hover, .vehicle-thumb.active { border-color: var(--orange); transform: translateY(-2px); }
.vehicle-thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.case-card { position: relative; min-height: 390px; overflow: hidden; cursor: pointer; transition: .25s ease; }
.case-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.case-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.case-card:hover img { transform: scale(1.035); }
.case-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(3,5,7,.96) 100%); }
.case-content { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 22px; }
.case-content small { color: var(--orange-2); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.case-content h3 { font-size: 23px; margin: 8px 0 8px; line-height: 1.05; }
.case-content p { margin: 0; color: #c8cdcf; font-size: 14px; }
.proof-note { margin-top: 24px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 14px; }
.proof-note i { width: 34px; height: 34px; border-radius: 50%; background: rgba(39,198,111,.12); color: var(--success); display: grid; place-items: center; font-style: normal; font-weight: 950; }

.brands { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; margin-top: 32px; }
.brand-pill { min-height: 82px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.08); border-radius: 16px; background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); font-size: 18px; font-weight: 950; letter-spacing: .06em; color: #cbd0d2; transition: .2s ease; }
.brand-pill:hover { color: var(--orange-2); border-color: var(--line-strong); }

.fleet-founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 42px; }
.fleet-card { min-height: 520px; padding: 38px; display: flex; align-items: flex-end; position: relative; background:
  linear-gradient(180deg, rgba(6,9,11,.05), rgba(6,9,11,.96)),
  url('../images/cases/ural-cinematic-work.webp') center/cover no-repeat;
}
.fleet-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,7,9,.96), rgba(4,7,9,.28)); }
.fleet-content { position: relative; z-index: 2; max-width: 540px; }
.fleet-content h3, .founder-content h3 { margin: 0; font-size: 36px; line-height: 1; text-transform: uppercase; }
.check-list { display: grid; gap: 13px; margin: 26px 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; color: #d4d7d9; }
.check-list li::before { content: "✓"; color: var(--orange); font-weight: 950; }
.founder-card { display: grid; grid-template-columns: .78fr 1.22fr; min-height: 520px; }
.founder-photo { min-height: 100%; position: relative; overflow: hidden; background: #090c0f; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 58%, rgba(8,11,13,.88)); }
.founder-content { padding: 38px 38px 38px 12px; display: flex; flex-direction: column; justify-content: center; }
.founder-content p { color: var(--muted); font-size: 17px; }
.founder-quote { padding: 16px 18px; border-left: 3px solid var(--orange); background: rgba(255,112,0,.06); color: #ecedef; margin: 12px 0; }
.signature { color: var(--orange-2); font-family: cursive; font-size: 28px; transform: rotate(-3deg); margin-top: 12px; }

.faq-contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 24px; margin-top: 42px; }
.faq-panel { padding: 28px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-item:last-child { border-bottom: 0; }
.faq-item button { width: 100%; padding: 20px 0; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; font-weight: 900; font-size: 17px; }
.faq-item button::after { content: "+"; font-size: 24px; color: var(--orange); transition: .2s ease; }
.faq-item.open button::after { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: .25s ease; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer div { overflow: hidden; }
.faq-answer p { color: var(--muted); margin: 0; padding: 0 0 20px; }
.contact-panel { min-height: 520px; position: relative; background: #090c0e; }
.contact-map { position: absolute; inset: 0; }
.contact-map img { width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.contact-map::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,10,.97) 0%, rgba(5,8,10,.77) 45%, rgba(5,8,10,.1) 100%); }
.contact-content { position: relative; z-index: 2; width: min(520px, 60%); padding: 38px; }
.contact-content h3 { margin: 0; font-size: 38px; text-transform: uppercase; line-height: 1; }
.contact-list { display: grid; gap: 14px; margin: 30px 0; }
.contact-item { display: flex; align-items: center; gap: 13px; }
.contact-item i { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,111,0,.1); color: var(--orange); font-style: normal; font-size: 19px; }
.contact-item b { display: block; }
.contact-item span { color: var(--muted); font-size: 13px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.form-section { background: radial-gradient(circle at 85% 20%, rgba(255,104,0,.13), transparent 30%); }
.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 26px; margin-top: 40px; }
.form-copy { padding: 38px; }
.form-copy h3 { margin: 0; font-size: 42px; line-height: 1; text-transform: uppercase; }
.form-copy p { color: var(--muted); font-size: 17px; }
.form-points { display: grid; gap: 10px; margin-top: 24px; }
.form-points span { display: flex; align-items: center; gap: 10px; color: #d5d8da; }
.form-points span::before { content: "•"; color: var(--orange); font-size: 28px; }
.request-form { padding: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: 13px; font-weight: 900; color: #d8dbdd; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: #0a0e11;
  color: #fff;
  padding: 15px 16px;
  outline: none;
  transition: .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,111,0,.1); }
.field textarea { min-height: 125px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.form-note { color: var(--muted-2); font-size: 12px; margin-top: 14px; }
.form-note a { text-decoration: underline; }

.site-footer { border-top: 1px solid rgba(255,255,255,.07); background: #040607; padding: 38px 0 110px; }
.footer-top { display: grid; grid-template-columns: 1.1fr 1.5fr .8fr; gap: 32px; align-items: start; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 78px; height: 78px; object-fit: contain; }
.footer-brand strong { font-size: 22px; display: block; }
.footer-brand span { color: var(--orange-2); font-weight: 900; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 22px; }
.footer-nav a { color: var(--muted); font-size: 14px; }
.footer-nav a:hover { color: var(--orange-2); }
.footer-contact { text-align: right; }
.footer-contact a { display: block; }
.footer-contact .phone { color: var(--orange-2); font-size: 22px; font-weight: 950; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); margin-top: 30px; padding-top: 20px; display: flex; justify-content: space-between; color: var(--muted-2); font-size: 12px; }

.mobile-actions { display: none; position: fixed; z-index: 990; left: 10px; right: 10px; bottom: 10px; background: rgba(5,8,10,.94); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(16px); border-radius: 18px; padding: 8px; box-shadow: 0 15px 45px rgba(0,0,0,.5); grid-template-columns: repeat(4, 1fr); gap: 6px; }
.mobile-action { min-height: 56px; border-radius: 12px; display: grid; place-items: center; align-content: center; gap: 2px; font-size: 11px; font-weight: 900; background: rgba(255,255,255,.04); }
.mobile-action b { font-size: 17px; line-height: 1; }
.mobile-action.call { background: linear-gradient(180deg, #ff9228, #dc5400); }

.modal, .lightbox { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; background: rgba(0,0,0,.88); padding: 20px; backdrop-filter: blur(12px); }
.modal.open, .lightbox.open { display: grid; }
.modal-card { width: min(1000px, 94vw); background: #070a0c; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 14px; position: relative; box-shadow: 0 30px 100px rgba(0,0,0,.7); }
.modal video { width: 100%; border-radius: 14px; max-height: 78vh; background: #000; }
.modal-close, .lightbox-close { position: absolute; z-index: 3; top: 14px; right: 14px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); background: rgba(5,8,10,.84); color: #fff; cursor: pointer; font-size: 25px; }
.lightbox img { max-width: 94vw; max-height: 88vh; border-radius: 16px; box-shadow: 0 30px 90px rgba(0,0,0,.7); }
#toast { position: fixed; z-index: 3000; left: 50%; bottom: 100px; transform: translate(-50%, 30px); background: #11171b; color: #fff; border: 1px solid rgba(255,126,22,.45); border-radius: 12px; padding: 13px 18px; opacity: 0; pointer-events: none; transition: .25s ease; box-shadow: 0 16px 50px rgba(0,0,0,.5); }
#toast.show { opacity: 1; transform: translate(-50%, 0); }

.inner-hero { padding: 170px 0 80px; background: linear-gradient(90deg, rgba(3,5,7,.96), rgba(3,5,7,.68)), url('../images/hero/hero-fire.webp') center/cover; }
.inner-hero h1 { margin: 0; font-size: clamp(46px, 6vw, 84px); text-transform: uppercase; line-height: .95; }
.inner-hero p { max-width: 760px; color: #d0d4d6; font-size: 19px; }
.content-page { padding: 70px 0 110px; }
.content-page .content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; }
.article { padding: 36px; }
.article h2 { font-size: 34px; line-height: 1.05; margin-top: 42px; text-transform: uppercase; }
.article h2:first-child { margin-top: 0; }
.article h3 { font-size: 24px; }
.article p, .article li { color: #b8bec2; font-size: 17px; }
.article ul { padding-left: 22px; }
.sidebar { padding: 26px; position: sticky; top: 100px; height: max-content; }
.sidebar h3 { margin-top: 0; font-size: 24px; text-transform: uppercase; }
.sidebar-links { display: grid; gap: 9px; }
.sidebar-links a { padding: 12px 14px; border-radius: 10px; background: rgba(255,255,255,.03); color: #d6d9db; }
.sidebar-links a:hover { background: rgba(255,115,0,.08); color: var(--orange-2); }

@media (max-width: 1200px) {
  :root { --container: min(100% - 30px, 1180px); }
  .brand-copy { display: none; }
  .nav { gap: 13px; }
  .nav a { font-size: 11px; }
  .header-cta { display: none; }
  .hero { min-height: 780px; }
  .hero-content { width: min(760px, 68%); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: span 1; }
  .brands { grid-template-columns: repeat(4, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 74px; --container: min(100% - 24px, 860px); }
  .site-header, .site-header.scrolled { height: var(--header-h); }
  .brand img, .scrolled .brand img { width: 60px; height: 60px; }
  .menu-button { display: block; margin-left: auto; }
  .header-contact { display: none; }
  .nav { position: fixed; top: var(--header-h); left: 12px; right: 12px; max-height: 0; overflow: hidden; opacity: 0; pointer-events: none; display: grid; gap: 0; background: rgba(5,8,10,.98); border: 1px solid rgba(255,255,255,.1); border-radius: 0 0 18px 18px; transition: .25s ease; box-shadow: 0 30px 60px rgba(0,0,0,.5); }
  .nav.open { max-height: 560px; opacity: 1; pointer-events: auto; padding: 10px; }
  .nav a { font-size: 15px; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero::before { background-position: 65% center; }
  .hero::after { background: linear-gradient(180deg, rgba(2,4,5,.5), rgba(2,4,5,.72) 48%, #06090b 96%); }
  .hero .container { padding: 116px 0 86px; }
  .hero-content { width: 100%; }
  .hero h1 { font-size: clamp(48px, 12vw, 78px); max-width: 680px; }
  .hero-copy { max-width: 580px; }
  .hero-bottom { position: relative; }
  .hero-bottom .container { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .price-layout, .vehicle-wrap, .fleet-founder-grid, .faq-contact-grid, .form-layout { grid-template-columns: 1fr; }
  .vehicle-main { min-height: 480px; }
  .founder-card { grid-template-columns: .8fr 1.2fr; }
  .contact-panel { min-height: 500px; }
  .contact-content { width: 68%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { text-align: left; }
  .content-page .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: relative; top: auto; }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 20px); --radius: 18px; }
  .section { padding: 72px 0; }
  .section-title { font-size: 38px; }
  .section-copy { font-size: 16px; }
  .hero::before { background-position: 71% center; }
  .hero::after { background: linear-gradient(180deg, rgba(2,4,5,.34), rgba(2,4,5,.74) 42%, #06090b 94%); }
  .hero .container { padding: 104px 0 68px; }
  .hero h1 { font-size: clamp(42px, 14vw, 62px); line-height: .88; }
  .hero h1 .wide { font-size: .78em; }
  .hero-copy { font-size: 17px; max-width: 94%; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .button { min-width: 0; min-height: 54px; padding: 12px 9px; font-size: 13px; }
  .hero-actions .button:first-child, .hero-actions .button:last-child { grid-column: span 2; }
  .hero-bullets { gap: 7px; }
  .hero-bullets span { font-size: 11px; padding: 8px 10px; }
  .hero-bottom .container { grid-template-columns: 1fr; gap: 5px; padding: 13px 0; }
  .trust-chip { min-height: 52px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .price-list, .price-card, .vehicle-info, .faq-panel, .request-form, .form-copy { padding: 22px; }
  .price-row { grid-template-columns: 1fr; gap: 3px; }
  .price-row span { font-size: 17px; }
  .vehicle-main { min-height: 360px; }
  .vehicle-caption { left: 18px; right: 18px; bottom: 18px; }
  .vehicle-caption strong { font-size: 22px; }
  .vehicle-thumbs { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 350px; }
  .brands { grid-template-columns: repeat(2, 1fr); }
  .fleet-card { min-height: 530px; padding: 24px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-photo { min-height: 430px; }
  .founder-photo::after { background: linear-gradient(180deg, transparent 62%, rgba(8,11,13,.92)); }
  .founder-content { padding: 24px; }
  .contact-panel { min-height: 620px; }
  .contact-map::after { background: linear-gradient(180deg, rgba(5,8,10,.94) 0%, rgba(5,8,10,.74) 56%, rgba(5,8,10,.18) 100%); }
  .contact-content { width: 100%; padding: 24px; }
  .contact-content h3 { font-size: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { display: grid; gap: 10px; }
  .mobile-actions { display: grid; }
  .site-footer { padding-bottom: 106px; }
  .inner-hero { padding: 130px 0 65px; }
  .article { padding: 22px; }
}

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