:root {
  --bg: #f7f9fc;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --card: rgba(255, 255, 255, 0.9);
  --text: #0f172a;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: rgba(0, 51, 128, 0.12);
  --navy: #003380;
  --navy-2: #00245c;
  --brand: #ff5500;
  --brand-2: #e64d00;
  --green: #16a34a;
  --red: #ef4444;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
  --shadow-soft: 0 12px 34px rgba(15, 23, 42, 0.07);
  --radius: 28px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 85, 0, 0.14), transparent 26rem),
    radial-gradient(circle at 88% 12%, rgba(0, 51, 128, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 44%, #eef2f8 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 72%);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topline {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  color: var(--muted);
  font-size: 13px;
}

.topline__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}

.topline__contacts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.topline a:hover,
.footer a:hover {
  color: var(--brand);
}

.topline strong {
  color: var(--text);
  font-weight: 800;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(24px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__img {
  width: auto;
  max-width: min(240px, 62vw);
  height: 48px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 750;
}

.menu a:hover {
  color: var(--navy);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6a24, var(--brand-2));
  box-shadow: 0 16px 36px rgba(255, 85, 0, 0.28);
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

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

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a24, var(--brand-2));
  box-shadow: 0 16px 36px rgba(255, 85, 0, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 20px 44px rgba(255, 85, 0, 0.38);
}

.btn--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-link:hover {
  border-color: rgba(255, 85, 0, 0.26);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.social-link svg,
.float-contact svg {
  width: 20px;
  height: 20px;
  display: block;
  flex: 0 0 auto;
}

.social-link--telegram,
.float-contact--telegram {
  background: #229ed9;
  color: #ffffff;
}

.social-link--whatsapp,
.float-contact--whatsapp {
  background: #16a34a;
  color: #ffffff;
}

.social-link--vk,
.float-contact--vk {
  background: #0077ff;
  color: #ffffff;
}

.social-link--tiktok,
.float-contact--tiktok {
  background: #111827;
  color: #ffffff;
}

.contact-menu {
  position: relative;
  display: inline-flex;
}

.contact-menu > summary {
  list-style: none;
  cursor: pointer;
}

.contact-menu > summary::-webkit-details-marker {
  display: none;
}

.contact-menu__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 60;
  min-width: 230px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(16px);
}

.contact-menu__panel a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}

.contact-menu__panel a:hover {
  background: rgba(34, 158, 217, 0.1);
  color: #0878ad;
}

.contact-menu--float .contact-menu__panel {
  right: auto;
  left: 0;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  font-size: 24px;
}

.mobile-menu {
  display: none;
  padding: 0 0 18px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-weight: 750;
}

.hero {
  position: relative;
  padding: 78px 0 64px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border: 1px solid rgba(0, 51, 128, 0.18);
  border-radius: 999px;
  background: rgba(0, 51, 128, 0.06);
  color: var(--navy);
  font-size: 14px;
  font-weight: 850;
  box-shadow: var(--shadow-soft);
}

h1 {
  margin: 22px 0 20px;
  color: var(--navy);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
}

.accent {
  color: transparent;
  background: linear-gradient(135deg, var(--navy), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 650px;
}

.stat {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.stat b {
  display: block;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: 0;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 42px;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 85, 0, 0.2), transparent 15rem),
    radial-gradient(circle at 14% 12%, rgba(0, 51, 128, 0.14), transparent 17rem),
    linear-gradient(180deg, #ffffff, #f0f4fa);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 32px;
  pointer-events: none;
}

.hero-card--image {
  min-height: 560px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-card--image::before,
.hero-card--image::after {
  display: none;
}

.hero-card__image {
  position: absolute;
  left: 50%;
  top: 45%;
  width: min(118%, 680px);
  max-width: none;
  max-height: 100%;
  height: auto;
  object-position: center;
  filter: drop-shadow(0 28px 42px rgba(15, 23, 42, 0.18));
  transform: translate(-50%, -50%);
}

.hero-card--image .floating {
  display: none;
}

.hero-card__eyebrow {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero-card--image .hero-card__eyebrow {
  bottom: 34px;
}

.road {
  position: absolute;
  inset: auto -12% -28% 10%;
  height: 390px;
  border-radius: 60px 60px 0 0;
  background:
    linear-gradient(90deg, transparent 0 26%, rgba(255, 255, 255, 0.7) 26% 27%, transparent 27% 48%, rgba(255, 255, 255, 0.7) 48% 50%, transparent 50% 72%, rgba(255, 255, 255, 0.7) 72% 73%, transparent 73%),
    linear-gradient(180deg, #cbd5e1, #94a3b8);
  transform: perspective(700px) rotateX(60deg) rotateZ(-10deg);
}

.car {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(78%, 460px);
  aspect-ratio: 1.65 / 1;
  border-radius: 36px 36px 22px 22px;
  background: linear-gradient(165deg, #002a66, var(--navy) 52%, rgba(255, 85, 0, 0.92) 100%);
  box-shadow: 0 28px 70px rgba(0, 51, 128, 0.22);
  transform: translate(-50%, -50%);
}

.car::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 16%;
  top: 13%;
  height: 33%;
  border: 6px solid rgba(15, 23, 42, 0.22);
  border-radius: 28px 28px 8px 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(191, 219, 254, 0.55));
}

.wheel {
  position: absolute;
  bottom: -28px;
  width: 78px;
  height: 78px;
  border: 12px solid #334e7a;
  border-radius: 50%;
  background: var(--navy);
}

.wheel--l {
  left: 15%;
}

.wheel--r {
  right: 15%;
}

.plate {
  position: absolute;
  left: 50%;
  bottom: 24px;
  padding: 8px 16px;
  border-radius: 10px;
  background: #ffffff;
  color: #111111;
  font-weight: 950;
  letter-spacing: 0.14em;
  transform: translateX(-50%);
}

.floating {
  position: absolute;
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.floating b {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.floating span {
  color: var(--muted);
  font-size: 14px;
}

.floating--one {
  left: 22px;
  top: 24px;
}

.floating--two {
  right: 22px;
  bottom: 34px;
}

section {
  padding: 74px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.feature,
.price-card,
.benefit,
.contact-card,
.form-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.feature,
.benefit,
.review-card,
.contact-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature:hover,
.benefit:hover,
.review-card:hover,
.contact-card:hover {
  border-color: rgba(255, 85, 0, 0.22);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature {
  min-height: 220px;
  padding: 26px;
}

.icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 51, 128, 0.07), #ffffff);
  box-shadow: inset 0 0 0 1px rgba(0, 51, 128, 0.12);
  color: var(--brand);
  font-size: 26px;
}

.feature h3,
.benefit h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: 0;
}

.feature p,
.benefit p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.notice {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(0, 51, 128, 0.14);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0, 51, 128, 0.05), rgba(255, 85, 0, 0.06));
  box-shadow: var(--shadow-soft);
  color: var(--navy-2);
  line-height: 1.55;
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tab {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  color: var(--text);
  cursor: pointer;
  font-weight: 850;
}

.tab.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #ff6a24, var(--brand-2));
  color: #ffffff;
}

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

.price-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--brand));
  opacity: 0.72;
}

.price-card.is-hidden {
  display: none;
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.1);
  color: #15803d;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge--hit {
  background: rgba(255, 85, 0, 0.14);
  color: #c2410c;
}

.price-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: 0;
}

.price {
  margin: 0 0 18px;
}

.price del {
  display: block;
  color: var(--muted-2);
  font-weight: 850;
}

.price strong {
  font-size: 34px;
  letter-spacing: 0;
}

.price small {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--muted);
  line-height: 1.35;
  list-style: none;
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 950;
}

.price-card .btn {
  width: 100%;
  margin-top: auto;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(0, 51, 128, 0.12);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(0, 51, 128, 0.06), rgba(255, 85, 0, 0.08));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: 0;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
}

.benefit {
  padding: 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 22px;
}

.about-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 244, 250, 0.9));
  box-shadow: var(--shadow-soft);
}

.about-card h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1;
  letter-spacing: 0;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.step__num {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--navy);
  color: #ffffff;
  font-weight: 950;
}

.step h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.review-card {
  padding: 24px;
}

.stars {
  margin-bottom: 16px;
  color: var(--brand-2);
  letter-spacing: 2px;
}

.review-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.review-card b {
  display: block;
  color: var(--navy);
}

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

.gallery-photo {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  padding: 0;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-photo::after {
  content: "Увеличить";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.gallery-photo:hover img,
.gallery-photo:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.gallery-photo:hover::after,
.gallery-photo:focus-visible::after {
  opacity: 1;
}

.gallery-empty {
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 1px dashed rgba(0, 51, 128, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-weight: 800;
}

.gallery-empty p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(3, 7, 18, 0.82);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox__img {
  max-width: min(1100px, 94vw);
  max-height: 84vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 22px;
}

.contacts-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-card {
  padding: 22px;
}

.contact-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.contact-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.45;
}

.contact-card a {
  color: var(--brand);
  font-weight: 950;
}

.form-card {
  position: sticky;
  top: 108px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #f5f8fc);
}

.form-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 28px;
  letter-spacing: 0;
}

.form-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 7px;
  color: var(--navy-2);
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  color: var(--text);
  font: inherit;
}

.field textarea {
  min-height: 110px;
  padding: 14px 16px;
  resize: vertical;
}

.field-hint {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 85, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 85, 0, 0.12);
}

.field--trap {
  position: absolute;
  left: -9999px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.35;
}

.check input {
  width: auto;
  margin-top: 4px;
}

.form-note {
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.contact-cta {
  align-self: start;
  display: grid;
  gap: 14px;
}

.contact-cta .btn {
  width: max-content;
  max-width: 100%;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(10px);
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal__panel {
  position: relative;
  width: min(100%, 500px);
  max-height: min(720px, calc(100vh - 48px));
  overflow-y: auto;
  border-radius: 26px;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.28);
}

.lead-modal__form {
  position: static;
  top: auto;
}

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  box-shadow: var(--shadow-soft);
}

.lead-modal__close:hover {
  color: var(--brand);
}

.form-message {
  margin: 0;
  font-weight: 800;
}

.form-message--success {
  color: var(--green);
}

.form-message--error {
  color: var(--red);
}

.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer__contacts {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.social-links--footer {
  justify-content: flex-end;
}

.social-links--footer .social-link {
  min-height: 36px;
  padding: 0 12px;
  box-shadow: none;
  font-size: 13px;
}

.social-links--footer .social-link svg {
  width: 18px;
  height: 18px;
}

.logo__img--footer {
  max-width: 200px;
  height: 36px;
}

.footer-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 2px;
  color: rgba(100, 116, 139, 0.34);
  font-weight: 900;
  vertical-align: middle;
}

.footer-admin-link:hover,
.footer-admin-link:focus-visible {
  color: var(--brand);
  outline: none;
}

.float-contacts {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(16px);
}

.float-contact {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  font-weight: 950;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.float-contact--phone {
  background: linear-gradient(135deg, #ff6a24, var(--brand-2));
}

.admin-page {
  background: #f4f4f2;
}

.admin-login,
.admin-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 48px auto;
}

.admin-login .lead-form {
  max-width: 420px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-header h1 {
  font-size: 34px;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 850;
}

.admin-nav a.is-active {
  border-color: rgba(255, 85, 0, 0.28);
  background: rgba(255, 85, 0, 0.1);
  color: var(--brand-2);
}

.admin-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.admin-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.admin-card strong {
  color: var(--navy);
  font-size: 24px;
}

.admin-card span {
  color: var(--muted);
  line-height: 1.5;
}

.admin-message {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #ffffff;
}

.admin-content-form {
  display: grid;
  gap: 18px;
}

.admin-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.admin-panel h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 24px;
  letter-spacing: 0;
}

.admin-leads-settings {
  margin-bottom: 18px;
}

.admin-leads-settings .lead-form {
  max-width: 520px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.admin-logo-preview,
.admin-image-preview {
  display: grid;
  gap: 7px;
  color: var(--navy-2);
  font-weight: 800;
}

.admin-logo-preview img,
.admin-image-preview img {
  width: min(260px, 100%);
  height: 74px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 12px;
}

.admin-image-preview img {
  height: 160px;
  object-fit: cover;
}

.admin-image-preview__empty {
  min-height: 160px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--muted);
  text-align: center;
}

.admin-delete-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
}

.admin-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.admin-gallery__item {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--muted);
  font-weight: 750;
}

.admin-gallery__item img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.admin-gallery__item span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.field--wide {
  grid-column: 1 / -1;
}

.code-field {
  min-height: 260px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.45;
}

.admin-savebar {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0;
  background: linear-gradient(180deg, rgba(244, 244, 242, 0), #f4f4f2 34%);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-solid);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1060px) {
  .menu,
  .nav__actions {
    display: none;
  }

  .burger {
    display: inline-grid;
    place-items: center;
  }

  .hero__grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-card--image {
    min-height: 420px;
  }

  .features,
  .benefits,
  .reviews,
  .gallery-grid,
  .admin-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .form-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .topline {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .logo__img {
    height: 40px;
  }

  .hero {
    padding: 44px 0 38px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .social-link {
    flex: 1 1 155px;
    justify-content: flex-start;
  }

  .hero__stats,
  .features,
  .benefits,
  .reviews,
  .gallery-grid,
  .pricing,
  .contacts-list,
  .admin-cards,
  .admin-form-grid,
  .admin-gallery {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 390px;
    border-radius: 30px;
  }

  .hero-card--image {
    min-height: 300px;
    border-radius: 0;
  }

  .hero-card__image {
    width: 108%;
  }

  .hero-card__eyebrow {
    bottom: 8px;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .floating {
    padding: 12px 14px;
  }

  .floating--one {
    left: 12px;
    top: 12px;
  }

  .floating--two {
    right: 12px;
    bottom: 20px;
  }

  .car {
    width: 88%;
  }

  .lead-modal {
    align-items: flex-end;
    padding: 12px;
  }

  .lead-modal__panel {
    width: 100%;
    max-height: calc(100vh - 24px);
    border-radius: 22px;
  }

  .lead-modal__form {
    padding: 22px;
  }

  .lead-modal__form h3 {
    padding-right: 44px;
    font-size: 24px;
  }

  .wheel {
    bottom: -20px;
    width: 58px;
    height: 58px;
    border-width: 9px;
  }

  section {
    padding: 52px 0;
  }

  .section-head {
    display: block;
  }

  .section-head h2 {
    margin-bottom: 14px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 28px;
  }

  .cta-band .btn {
    width: 100%;
  }

  .about-card {
    padding: 24px;
    border-radius: 28px;
  }

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

  .footer__contacts {
    justify-items: start;
  }

  .social-links--footer {
    justify-content: flex-start;
  }

  .float-contacts {
    right: 12px;
    bottom: 12px;
    gap: 8px;
    padding: 7px;
  }

  .float-contact {
    width: 46px;
    height: 46px;
  }

  .float-contact svg {
    width: 19px;
    height: 19px;
  }

  .footer__inner {
    align-items: flex-start;
  }

  .contact-cta .btn {
    width: 100%;
    justify-content: center;
  }

  body {
    padding-bottom: 76px;
  }
}
