@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;700;800&display=swap');


:root {
  --navy: #09114d;
  --navy-2: #0d175f;
  --orange: #ff6b1f;
  --yellow: #f4d11b;
  --text: #0f172a;
  --muted: #475569;
  --bg: #f7f8fc;
  --white: #ffffff;
  --border: rgba(9, 17, 77, 0.10);
  --shadow: 0 18px 50px rgba(9, 17, 77, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 10px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  height: 55px;
  width: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
  flex-wrap: wrap;
  justify-content: center;
}
.nav a:hover { color: var(--navy); }
.call-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 0;
}
.call-btn, .btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(255, 107, 31, 0.25);
}
.btn-secondary {
  background: var(--navy);
  color: var(--white);
}
.call-btn:hover, .btn:hover { transform: translateY(-1px); }

.hero-section {
  padding: 20px 0 28px;
  background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
}
.hero-banner {
  position: relative;
  min-height: 615px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: center center / cover no-repeat url('assets/banner-repair.jpg');
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9,17,77,0.82) 0%, rgba(9,17,77,0.62) 40%, rgba(9,17,77,0.18) 70%, rgba(9,17,77,0.08) 100%),
    linear-gradient(180deg, rgba(9,17,77,0.15) 0%, rgba(9,17,77,0.32) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 615px;
  padding: 48px 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.hero-copy {
  max-width: 660px;
}
.hero-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-banner h1 {
  margin: 0 0 16px;
  max-width: 780px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  color: #fff;
}
.hero-subtitle {
  margin: 0;
  max-width: 720px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-points-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 860px;
}
.hero-point {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(9,17,77,0.15);
}

.eyebrow {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin-bottom: 10px;
}
h1, h2, h3 { margin: 0 0 12px; }
h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy);
}
h3 {
  font-size: 22px;
  color: var(--navy);
}
.section-head p,
.service-body p,
.rental-card p,
.adv-card p,
.contacts-wrap p {
  color: var(--muted);
}

.card-image,
.service-card,
.rental-card,
.adv-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.card-image { overflow: hidden; }
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section { padding: 32px 0; }
.section-alt { background: linear-gradient(180deg, #f8faff 0%, #eef3ff 100%); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.section-head > * { flex: 1; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card { overflow: hidden; }
.service-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.service-body { padding: 18px; }
.text-card {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}
.rental-banner {
  margin-bottom: 20px;
  border-radius: 30px;
  overflow: hidden;
}
.rental-banner img {
  width: 100%;
  aspect-ratio: 1182 / 615;
  object-fit: cover;
}
.rental-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.rental-card,
.adv-card,
.contact-card { padding: 18px; }
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.contacts-section { padding-bottom: 32px; }
.contacts-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.contact-card { min-height: 140px; }
.contact-label {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.contact-card strong {
  font-size: 24px;
  color: var(--navy);
  line-height: 1.2;
}
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 20px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .rental-grid { grid-template-columns: repeat(3, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-wrap { grid-template-columns: 1fr; }
  .hero-content { padding: 40px 34px; }
}

@media (max-width: 930px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav {
    width: 100%;
    gap: 16px;
  }
  .desktop-only { display: none; }
  .section-head,
  .contacts-grid { grid-template-columns: 1fr; display: grid; }
  .section-head { align-items: start; }
  .rental-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-banner,
  .hero-content { min-height: 560px; }
  .hero-banner h1 { font-size: clamp(34px, 5vw, 52px); }
}

@media (max-width: 700px) {
  .container { width: min(100% - 20px, 1180px); }
  .hero-banner,
  .hero-content {
    min-height: auto;
  }
  .hero-banner {
    background-position: 62% center;
    border-radius: 24px;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9,17,77,0.88) 0%, rgba(9,17,77,0.68) 48%, rgba(9,17,77,0.42) 100%),
      linear-gradient(0deg, rgba(9,17,77,0.18) 0%, rgba(9,17,77,0.18) 100%);
  }
  .hero-content {
    padding: 28px 20px 22px;
    gap: 22px;
  }
  .hero-copy,
  .hero-subtitle { max-width: 100%; }
  .hero-eyebrow {
    font-size: 11px;
    padding: 7px 10px;
    margin-bottom: 12px;
  }
  .hero-banner h1 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.05;
    margin-bottom: 14px;
  }
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.45;
  }
  .hero-actions {
    flex-direction: column;
    margin-top: 18px;
  }
  .btn,
  .call-btn { width: 100%; }
  .hero-points-wrap {
    flex-direction: column;
    max-width: 100%;
  }
  .hero-point {
    width: 100%;
    font-size: 15px;
    line-height: 1.35;
    min-height: 0;
  }
  .service-grid,
  .rental-grid,
  .advantages-grid,
  .contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .brand img { height: 46px; }
  .nav { gap: 12px; font-size: 14px; }
  .hero-section { padding-top: 14px; }
  .hero-content { padding: 22px 16px 18px; }
  .hero-banner h1 { font-size: 28px; }
  .contact-card strong { font-size: 22px; }
}


.nav a.active { color: var(--navy); }
.service-card { display: block; }
.service-card:hover, .rental-card:hover, .tool-card:hover, .contact-card:hover, .adv-card:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}
.rental-grid { margin-top: 18px; }
.tool-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tool-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #eef2ff;
}
.tool-card-body { padding: 14px; }
.tool-card h3 { font-size: 20px; margin-bottom: 8px; }
.tool-card p { margin: 0; color: var(--muted); font-size: 15px; }
.service-card-link { display:block; }
.page-hero {
  padding: 20px 0 32px;
  background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
}
.page-hero-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.page-hero-card img {
  width: 100%;
  aspect-ratio: 1182 / 615;
  object-fit: cover;
  display: block;
}
.page-hero-body {
  padding: 28px 28px 12px;
}
.page-lead {
  max-width: 920px;
  font-size: 18px;
  color: var(--muted);
}
.page-section { padding: 0 0 32px; }
.page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}
.content-card, .info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 22px;
}
.content-card ul, .info-card ul { padding-left: 20px; }
.content-card li, .info-card li { margin-bottom: 10px; }
.cta-inline {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 18px;
}
.phone-nowrap, .contact-card strong, .phone-chip { white-space: nowrap; }
.phone-chip {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(9,17,77,0.15);
}
@media (max-width: 1100px) {
  .tool-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 930px) {
  .page-grid { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-body { padding: 20px 18px 6px; }
  .page-lead { font-size: 16px; }
  .contact-card strong { font-size: 20px; }
}
@media (max-width: 420px) {
  .tool-grid { grid-template-columns: 1fr; }
  .contact-card strong { font-size: 18px; }
}


.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.related-link-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
}
.related-link-card:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}
.related-link-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.related-link-card p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 930px) {
  .related-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .related-links { grid-template-columns: 1fr; }
  .page-hero-card { border-radius: 24px; }
  .page-hero-body { padding: 22px 20px 10px; }
  .rental-banner { border-radius: 24px; }
}
