*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-dark:       #1C1C1C;
  --c-dark-2:     #242424;
  --c-dark-3:     #2E2E2E;
  --c-gray:       #3A3A3A;
  --c-gray-mid:   #555;
  --c-gray-light: #888;
  --c-red:        #D42020;
  --c-red-dark:   #A81818;
  --c-white:      #F0F0F0;
  --c-white-dim:  #BABABA;
  --font-h: 'Bebas Neue', sans-serif;
  --font-b: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--c-dark);
  color: var(--c-white);
  font-family: var(--font-b);
  font-weight: 400;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(24,24,24,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,32,32,0.25);
  transition: padding 0.35s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo img { height: 42px; width: auto; }

.nav-logo-text {
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-white);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--c-white-dim);
  text-decoration: none;
  font-family: var(--font-h);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--c-red);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--c-white); }
.nav-links a:hover::after { width: 100%; }

.nav-phone {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-red);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav-phone:hover { color: var(--c-white); }

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 45%;
  filter: brightness(0.75) saturate(0.7);
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease, transform 8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(16,16,16,0.95) 0%,
    rgba(18,18,18,0.85) 32%,
    rgba(20,20,20,0.35) 62%,
    rgba(46,12,12,0.4) 100%
  );
}

.hero-accent-bar {
  position: absolute;
  top: 0; right: 0;
  width: 5px; height: 100%;
  background: var(--c-red);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px;
  padding-top: 90px;
  max-width: 880px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 10px;
}

.hero-title .accent { color: var(--c-red); display: block; }

.hero-sub {
  font-family: var(--font-h);
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white-dim);
  margin-bottom: 38px;
}

.hero-desc {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(186,186,186,0.85);
  max-width: 530px;
  margin-bottom: 52px;
}

.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-red {
  display: inline-block;
  padding: 15px 46px;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--c-red);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 14px 100%);
  transition: background 0.22s, color 0.22s, transform 0.15s;
}

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

.btn-ghost {
  display: inline-block;
  padding: 15px 46px;
  background: transparent;
  color: var(--c-white);
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.28);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 14px 100%);
  transition: border-color 0.22s, transform 0.15s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}


.stats-bar {
  background: var(--c-red);
  padding: 26px 64px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-h);
  font-size: 0.67rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-top: 6px;
}

.stat-sep {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.22);
}

.sec { padding: 100px 64px; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.section-title em {
  color: var(--c-red);
  font-style: normal;
}

.about {
  background: var(--c-dark-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-text .section-title { margin-bottom: 30px; }

.about-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-white-dim);
  margin-bottom: 18px;
}

.about-image { position: relative; }

.about-image::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border: 2px solid var(--c-red);
  z-index: 0;
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%; height: 480px;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.95);
}

.services { background: var(--c-dark); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 20px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #2A2A2A;
}

.service-card {
  background: var(--c-dark-2);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--c-red);
  transition: width 0.4s ease;
}

.service-card:hover { background: var(--c-dark-3); }
.service-card:hover::after { width: 100%; }

.svc-num {
  font-family: var(--font-h);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.938);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.svc-line {
  width: 44px; height: 2px;
  background: var(--c-red);
  margin-bottom: 20px;
}

.svc-title {
  font-family: var(--font-h);
  font-size: 1.08rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.svc-desc {
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-white-dim);
  margin-bottom: 22px;
}

.svc-price {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: 0.04em;
}

.advantages { background: var(--c-dark-2); }

.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 56px;
}

.adv-card {
  position: relative;
  display: flex;
  gap: 26px;
  padding: 38px 36px 38px 110px;
  background: var(--c-dark);
  border-left: 3px solid var(--c-red);
  transition: transform 0.22s;
  overflow: hidden;
}

.adv-card:hover { transform: translateX(7px); }

.adv-n {
  position: absolute;
  top: -30px; bottom: -30px; left: 10px;
  font-family: var(--font-h);
  font-size: 280px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  color: rgba(212,32,32,0.08);
  letter-spacing: -0.04em;
  user-select: none;
}

.adv-title {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--c-white);
  margin-bottom: 10px;
}

.adv-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-white-dim);
}

.process { background: var(--c-dark); }

.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 29px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,32,32,0.45), transparent);
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-circle {
  width: 58px; height: 58px;
  border: 2px solid var(--c-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-red);
  margin: 0 auto 22px;
  background: var(--c-dark);
  position: relative;
  z-index: 1;
  transition: background 0.2s, color 0.2s;
}

.step:hover .step-circle {
  background: var(--c-red);
  color: var(--c-white);
}

.step-title {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--c-white-dim);
}

.gallery {
  padding: 0 64px 100px;
  background: var(--c-dark);
}

.gallery-grid {
  column-count: 4;
  column-gap: 24px;
}

.obj-card {
  break-inside: avoid;
  margin-bottom: 24px;
  background: var(--c-dark-2);
  border: 1px solid #303030;
  border-top: 3px solid var(--c-red);
  display: flex;
  flex-direction: column;
}

.obj-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #161616;
}

.obj-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.obj-slide.active { opacity: 1; }

.obj-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.78) brightness(0.92);
}

.obj-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(20,20,20,0.55);
  border: none;
  color: var(--c-white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.obj-arrow:hover { background: var(--c-red); }
.obj-arrow.prev { left: 0; }
.obj-arrow.next { right: 0; }
.obj-arrow.solo { display: none; }

.obj-dots {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 2;
}

.obj-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.2s, transform 0.2s;
}

.obj-dot.active { background: var(--c-red); transform: scale(1.25); }
.obj-dots.solo { display: none; }

.obj-count {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  font-family: var(--font-h);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  background: rgba(20,20,20,0.6);
  color: var(--c-white);
}

.obj-count.solo { display: none; }

.obj-body { padding: 24px 26px 26px; }

.obj-name {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.obj-addr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--c-white-dim);
  margin-bottom: 16px;
}

.obj-addr .geo-pin {
  flex-shrink: 0;
  width: 7px; height: 7px;
  margin-top: 6px;
  background: var(--c-red);
  border-radius: 50%;
}

.obj-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-red);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.obj-map:hover { color: var(--c-white); gap: 13px; }
.obj-map::after { content: '→'; }

.gallery-header {
  padding: 100px 64px 50px;
  background: var(--c-dark);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-section {
  position: relative;
  background: var(--c-dark-2);
  border-top: 3px solid var(--c-red);
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212,32,32,0.16), transparent 70%);
  pointer-events: none;
}

.cta-main { position: relative; z-index: 1; }
.cta-section .section-eyebrow { margin-bottom: 16px; }

.cta-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.cta-title em { color: var(--c-red); font-style: normal; }

.cta-sub {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--c-white-dim);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 520px;
}

.cta-form {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
  max-width: 640px;
}

.cta-input {
  flex: 1;
  min-width: 180px;
  padding: 14px 20px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--c-white);
  font-family: var(--font-b);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.cta-input::placeholder { color: rgba(255,255,255,0.4); }
.cta-input:focus { border-color: var(--c-red); background: rgba(0,0,0,0.35); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 38px;
  background: var(--c-red);
  color: var(--c-white);
  font-family: var(--font-h);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid var(--c-red);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(212,32,32,0.28);
}

.btn-dark::after {
  content: '→';
  transition: transform 0.2s;
}

.btn-dark:hover {
  background: var(--c-red-dark);
  border-color: var(--c-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,32,32,0.4);
}

.btn-dark:hover::after { transform: translateX(4px); }

.btn-dark:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.cta-note {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--c-gray-light);
  margin-top: 14px;
}

.form-msg {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 400;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.ok { color: #4caf50; }
.form-msg.err { color: var(--c-red); }

.cta-phone-block {
  position: relative;
  z-index: 1;
  text-align: right;
  border-left: 1px solid #383838;
  padding-left: 70px;
}

.cta-phone-label {
  font-family: var(--font-h);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gray-light);
  margin-bottom: 8px;
}

.cta-phone {
  display: block;
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--c-white);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s;
}

.cta-phone:hover { color: var(--c-red); }

.cta-phone-sub {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--c-gray-light);
  margin-top: 10px;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  align-items: flex-end;
}

.cta-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-white);
  text-decoration: none;
  padding: 9px 16px;
  border: 1px solid #383838;
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s;
}

.cta-contact:hover {
  color: var(--c-red);
  border-color: var(--c-red);
}

.cta-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

footer {
  background: #141414;
  padding: 64px 64px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 50px;
  border-bottom: 1px solid #2A2A2A;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo img { height: 48px; }

.footer-logo-name {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
}

.footer-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-white-dim);
}

.footer-col-label {
  font-family: var(--font-h);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: var(--c-white-dim);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--c-white); }

.contact-row {
  margin-bottom: 22px;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gray-light);
  margin-bottom: 4px;
}

.contact-value {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-white);
  text-decoration: none;
  transition: color 0.2s;
}

a.contact-value:hover { color: var(--c-red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--c-gray-light);
}

.footer-geo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--c-gray-light);
}

.geo-dot {
  width: 7px; height: 7px;
  background: var(--c-red);
  border-radius: 50%;
  animation: geo-blink 2.2s ease-in-out infinite;
}

@keyframes geo-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.18; }
}

.adv-desc strong {
  font-weight: 600;
  color: var(--c-white);
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-white);
  transition: transform 0.3s, opacity 0.3s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,24,24,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--c-red); }

.mobile-menu-phone {
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--c-red) !important;
  margin-top: 20px;
}

@media (max-width: 1280px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1080px) {
  nav { padding: 16px 30px; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .burger { display: flex; }
  .sec { padding: 72px 30px; }
  .hero-content { padding: 100px 24px 0; }
  .stats-bar { padding: 22px 24px; gap: 14px; }
  .about { grid-template-columns: 1fr; gap: 40px; padding: 72px 30px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .adv-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: repeat(3,1fr); gap: 30px; }
  .gallery-header { padding: 72px 30px 40px; }
  .gallery { padding: 0 30px 72px; }
  .gallery-grid { column-count: 2; column-gap: 20px; }
  .cta-section { grid-template-columns: 1fr; padding: 72px 30px; }
  .cta-phone-block { text-align: left; border-left: none; padding-left: 0; }
  .cta-contacts { align-items: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 50px 30px 32px; }
}

@media (max-width: 640px) {
  nav { padding: 14px 20px; }

  .nav-logo img { height: 34px; }
  .nav-logo-text { font-size: 1.2rem; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 90px 20px 0; }
  .hero-title { font-size: clamp(3rem, 16vw, 4rem); line-height: 0.9; }
  .hero-sub { font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 24px; }
  .hero-desc { font-size: 0.88rem; margin-bottom: 36px; }
  .btn-red, .btn-ghost { padding: 13px 28px; font-size: 0.78rem; }
  .hero-cta { gap: 12px; }

  .stats-bar {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
  }
  .stat-sep { display: none; }
  .stat-number { font-size: 2rem; }

  .sec { padding: 56px 20px; }

  .about { padding: 56px 20px; gap: 32px; }
  .about-image::before { display: none; }
  .about-image img { height: 260px; }
  .section-title { font-size: 2.2rem; }

  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 32px 24px; }
  .svc-num { font-size: 2.8rem; }

  .adv-card { padding: 26px 20px 26px 90px; }
  .adv-n { font-size: 120px; left: 8px; }

  .process-track {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  .process-track::before { display: none; }
  .step { text-align: left; display: flex; gap: 18px; align-items: flex-start; }
  .step-circle { margin: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 1rem; }

  .gallery-header { padding: 56px 20px 32px; }
  .gallery { padding: 0 20px 56px; }
  .gallery-grid { column-count: 1; }

  .cta-section { padding: 56px 20px; gap: 36px; }
  .cta-title { font-size: 1.8rem; }
  .cta-form { flex-direction: column; }
  .cta-input { width: 100%; }
  .btn-dark { width: 100%; justify-content: center; padding: 15px; }
  .cta-phone { font-size: 1.7rem; }

  footer { padding: 44px 20px 32px; }
  .footer-top { gap: 32px; }
  .footer-logo img { height: 38px; }
  .footer-logo-name { font-size: 1.25rem; }

  .services-header { flex-direction: column; align-items: flex-start; }
}
