/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #263240;
  --bg-section: #1e2a36;
  --bg-card: #1a2532;
  --blue: #c4a574;
  --blue-hover: #d4b88a;
  --blue-dark: #a08858;
  --text: #ffffff;
  --text-muted: #9aa8b8;
  --border: rgba(255,255,255,0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --header-h: 72px;
  --font-display: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
}
.btn--primary:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,165,116,0.35);
}

.btn--primary {
  color: #1e2a36;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

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

.header__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.2s;
}

.header__phone:hover { color: var(--blue); }

.btn--sm { padding: 10px 22px; font-size: 13px; }
.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--xl { padding: 20px 48px; font-size: 17px; font-weight: 700; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(38,50,64,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo__img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo--footer .logo__img {
  height: 52px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav a:hover { color: var(--text); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  gap: 4px;
}

.lang-switch__btn {
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.lang-switch__btn.active,
.lang-switch__btn:hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

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

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== HERO ===== */
.hero--overlay {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 48px) 0 64px;
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(38,50,64,0.55) 0%, rgba(30,42,54,0.92) 100%),
    linear-gradient(180deg, rgba(30,42,54,0.75) 0%, rgba(38,50,64,0.88) 100%);
}

.hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero__content {
  max-width: 780px;
  margin: 0 auto 44px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.8vw, 54px);
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero__subtitle {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.82);
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  margin: 0 auto 36px;
  max-width: 580px;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero__actions .btn {
  min-width: 200px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 24px;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-align: center;
  line-height: 1.4;
}

.hero__trust-item svg {
  color: var(--blue);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

@media (min-width: 1024px) {
  .hero--overlay {
    min-height: 92vh;
  }

  .hero__title {
    letter-spacing: 0.05em;
    margin-bottom: 28px;
  }

  .hero__subtitle {
    margin-bottom: 40px;
  }

  .hero__trust {
    gap: 20px 32px;
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .hero--overlay {
    min-height: auto;
    padding-top: calc(var(--header-h) + 32px);
    padding-bottom: 40px;
  }

  .hero__title {
    letter-spacing: 0.03em;
    line-height: 1.22;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero__actions .btn {
    width: 100%;
    min-width: unset;
  }

  .hero__trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    padding-top: 28px;
  }
}

@media (max-width: 380px) {
  .hero__trust-item {
    font-size: 11px;
  }
}

/* ===== APP PROMO ===== */
.app-promo__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.app-promo__phone {
  width: 220px;
  padding: 12px;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(196,165,116,0.25);
  border-radius: 28px;
  flex-shrink: 0;
}

.app-promo__screen {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9/16;
}

.app-promo__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-promo__text p {
  color: var(--text-muted);
  margin: 16px 0 24px;
  line-height: 1.7;
  max-width: 520px;
}

.app-promo__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-promo__list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
}

.app-promo__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--bg-section);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}

.section__title--no-mb { margin-bottom: 0; }

.section__label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 10px;
}

/* ===== SERVICES GRID ===== */
.services-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.services-notices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  flex-shrink: 0;
}

.services-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,165,116,0.2);
  border-radius: var(--radius-sm);
}

.services-notice--partner {
  border-color: rgba(125,206,160,0.25);
  background: rgba(125,206,160,0.06);
}

.services-notice__icon--green {
  color: #7dcea0;
}

.services-notice__icon {
  color: #e05c5c;
  flex-shrink: 0;
  margin-top: 1px;
}

.services-notice p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

.services-notice strong {
  color: var(--text);
  font-weight: 600;
}

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

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  min-height: 130px;
}

.service-item:hover {
  border-color: rgba(196,165,116,0.35);
  background: rgba(196,165,116,0.06);
  transform: translateY(-2px);
}

.service-item__icon {
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.35;
}

.service-item--partner {
  position: relative;
  border-color: rgba(125,206,160,0.25);
}

.service-item--partner:hover {
  border-color: rgba(125,206,160,0.45);
  background: rgba(125,206,160,0.06);
}

.service-item__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #1e2a36;
  background: #7dcea0;
  padding: 3px 8px;
  border-radius: 50px;
}

/* ===== REPAIR TYPES ===== */
.repair-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.repair-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}

.repair-card:hover {
  border-color: rgba(196,165,116,0.35);
  transform: translateY(-3px);
}

.repair-card--featured {
  border-color: rgba(196,165,116,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.repair-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: var(--blue);
  color: #1e2a36;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 50px;
}

.repair-card__img {
  height: 180px;
  overflow: hidden;
}

.repair-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.repair-card__body {
  padding: 24px;
}

.repair-card__body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.repair-card__body ul {
  list-style: none;
  margin-bottom: 20px;
}

.repair-card__body li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0 5px 16px;
  position: relative;
}

.repair-card__body li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--blue);
}

.repair-card__price {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.repair-card__price strong {
  font-size: 22px;
  color: var(--text);
  font-weight: 800;
}

.repair-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: opacity 0.2s;
}

.repair-card__link:hover { opacity: 0.8; }

/* ===== CALCULATOR ===== */
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.calc-layout__info p {
  color: var(--text-muted);
  margin: 16px 0 28px;
  line-height: 1.7;
}

.calc-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-benefits li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 24px;
  position: relative;
}

.calc-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.calc-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.calc-form__group {
  border: none;
  margin-bottom: 24px;
  padding: 0;
}

.calc-form__group legend {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.calc-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  margin-bottom: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.calc-radio:has(input:checked) {
  border-color: var(--blue);
  background: rgba(196,165,116,0.08);
}

.calc-radio input { accent-color: var(--blue); }

.calc-form__group label[for="areaRange"] {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.calc-form__group label[for="areaRange"] strong {
  color: var(--text);
  font-size: 18px;
}

.calc-form input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
  cursor: pointer;
}

.calc-result {
  background: rgba(196,165,116,0.1);
  border: 1px solid rgba(196,165,116,0.25);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.calc-result span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.calc-result strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
}

.calc-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  cursor: pointer;
  line-height: 1.45;
}

.calc-privacy input { margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }

/* ===== CONTACT FORM ===== */
.cta-form {
  background: var(--bg-section);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.cta-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-form__text h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-form__text p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cta-form__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-form__contacts a {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  transition: opacity 0.2s;
}

.cta-form__contacts a:hover { opacity: 0.8; }

.cta-form__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-field input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-field input:focus {
  outline: none;
  border-color: var(--blue);
}

.form-field input::placeholder { color: rgba(154,168,184,0.6); }

.lead-form__success {
  margin-top: 16px;
  padding: 14px;
  background: rgba(76,175,120,0.15);
  border: 1px solid rgba(76,175,120,0.3);
  border-radius: var(--radius-sm);
  color: #7dcea0;
  font-size: 14px;
  text-align: center;
}

.lead-form__error {
  margin-top: 16px;
  padding: 14px;
  background: rgba(224,92,92,0.12);
  border: 1px solid rgba(224,92,92,0.35);
  border-radius: var(--radius-sm);
  color: #f0a0a0;
  font-size: 14px;
  text-align: center;
}

.lead-form__btn-loading {
  opacity: 0.75;
  pointer-events: none;
}

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.75;
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.about__pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.about__pillar-icon {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.about__pillar strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.about__pillar span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.about__visual {
  display: flex;
  justify-content: center;
}

.about__img {
  border-radius: var(--radius);
  max-height: 380px;
  object-fit: cover;
  filter: drop-shadow(0 20px 40px rgba(196,165,116,0.12));
}

/* ===== SLIDER ===== */
.slider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.slider__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

.slider__arrow:hover {
  border-color: var(--blue);
  background: rgba(196,165,116,0.12);
}

.slider__track-wrap {
  flex: 1;
  overflow: hidden;
}

.slider__track {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.4s ease;
}

.slider__slide {
  flex: 0 0 28%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  opacity: 0.5;
  transform: scale(0.92);
  transition: opacity 0.4s, transform 0.4s;
}

.slider__slide--active {
  flex: 0 0 44%;
  opacity: 1;
  transform: scale(1);
}

.slider__slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.slider__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,60,60,0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.slider__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #ff4444;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-grid__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.portfolio-grid__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-grid__item:hover img {
  transform: scale(1.06);
}

/* ===== SERVICES ===== */
.services {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, #1a2532 0%, #263240 50%, #2f4054 100%);
  border-radius: var(--radius);
  padding: 40px 48px;
  overflow: hidden;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.service-card__content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-card__content h3 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.service-card__content p {
  font-size: 14px;
  opacity: 0.85;
  max-width: 480px;
  line-height: 1.7;
}

.service-card__img {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== ADVANTAGES ===== */
.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.advantage-card {
  background: linear-gradient(160deg, #1a2532 0%, #222f3d 100%);
  border: 1px solid rgba(196,165,116,0.2);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.advantage-card:hover {
  border-color: rgba(196,165,116,0.45);
  transform: translateY(-2px);
}

.advantage-card__icon {
  color: var(--blue);
  margin-bottom: 16px;
}

.advantage-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.advantage-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CLIENTS ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px 16px;
  margin-bottom: 48px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.client-logo:hover { color: rgba(255,255,255,0.7); }

.world-map {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #263240 0%, #1e2a36 100%);
  padding: 20px;
}

.world-map__svg {
  width: 100%;
  height: auto;
}

/* ===== TEAM ===== */
.team-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  width: 140px;
}

.team-member__photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 2px solid var(--border);
  filter: grayscale(100%);
  transition: filter 0.3s, border-color 0.3s;
}

.team-member:hover .team-member__photo {
  filter: grayscale(0%);
  border-color: var(--blue);
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-member span {
  font-size: 12px;
  color: var(--text-muted);
}

.team-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.team-bottom__photo {
  border-radius: var(--radius);
  overflow: hidden;
}

.team-bottom__photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(100%);
}

.team-bottom__stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team-stat__num {
  display: block;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.team-stat__label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== YEAR STATS ===== */
.year-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.year-stat-card {
  background: linear-gradient(160deg, #1a2532 0%, #2f4054 100%);
  border: 1px solid rgba(196,165,116,0.15);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
}

.year-stat-card__num {
  display: block;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
}

.year-stat-card__unit {
  display: block;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 12px;
}

.year-stat-card p {
  font-size: 13px;
  opacity: 0.75;
}

.year-stat-card--chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pie-chart {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
}

.pie-chart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.pie-chart__bg {
  fill: none;
  stroke: rgba(255,255,255,0.15);
  stroke-width: 3;
}

.pie-chart__fill {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
}

.pie-chart__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}

.portfolio-book {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.portfolio-book .btn {
  min-width: 320px;
  padding: 22px 56px;
  font-size: 18px;
  font-weight: 700;
}

.portfolio-book img {
  border-radius: var(--radius);
  max-width: 500px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ===== FAQ ===== */
.faq {
  max-width: 800px;
}

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

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}

.faq__question:hover { color: var(--blue); }

.faq__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.2s;
  flex-shrink: 0;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.open .faq__answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq__answer p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-section);
}

.footer__map iframe {
  display: block;
  filter: grayscale(80%) invert(92%) contrast(90%);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 48px 24px;
}

.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

.footer__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer__link:hover { color: var(--blue); }

.footer__address {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--text); }

.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer__social a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__social a:hover { color: var(--blue); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .advantages { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .services-header { flex-direction: column; }
  .services-notices { max-width: 100%; }
  .repair-types { grid-template-columns: 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .cta-form__inner { grid-template-columns: 1fr; }
  .app-promo__inner { grid-template-columns: 1fr; text-align: center; }
  .app-promo__phone { margin: 0 auto; }
  .app-promo__list { align-items: center; }
  .hero__trust { grid-template-columns: repeat(2, 1fr); }
  .team-bottom { grid-template-columns: 1fr; }
  .team-bottom__stats { flex-direction: row; gap: 60px; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(38,50,64,0.97);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav.open { display: flex; }

  .burger { display: flex; }

  .header__actions .btn--sm { display: none; }
  .header__phone { display: none; }

  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__pillars { grid-template-columns: 1fr; }

  .slider__slide { flex: 0 0 80%; }
  .slider__slide--active { flex: 0 0 80%; }

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

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

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

  .year-stats { grid-template-columns: 1fr; }

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

  .team-row { gap: 20px; }
  .team-member { width: 120px; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__image { height: 260px; }
}
