:root {
  --ink: #17212b;
  --muted: #5b6673;
  --line: #d9e0e8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --red: #b51f2a;
  --red-dark: #821721;
  --steel: #263746;
  --gold: #b58b3b;
  --green: #1e7654;
  --shadow: 0 18px 44px rgba(23, 33, 43, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

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

.topbar {
  background: var(--steel);
  color: #eaf0f6;
  font-size: 14px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
}

.brand-logo {
  width: min(190px, 42vw);
  max-height: 54px;
  object-fit: contain;
}

.brand-fallback {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  font-size: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a {
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--steel);
  font-size: 15px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.active {
  background: #edf1f5;
  color: var(--red-dark);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 24, 0.91) 0%, rgba(12, 18, 24, 0.76) 42%, rgba(12, 18, 24, 0.2) 76%),
    url("../images/servis-hero.png") center / cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(0deg, var(--paper), rgba(247, 249, 251, 0));
  z-index: -1;
}

.hero-content {
  width: min(720px, 100%);
  padding: 78px 0 116px;
}

.eyebrow {
  color: #f3c565;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
}

h1 {
  margin-top: 12px;
  font-size: clamp(42px, 7vw, 78px);
  max-width: 820px;
}

.hero p {
  max-width: 660px;
  color: #e7edf3;
  font-size: 20px;
  margin: 22px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.btn.primary {
  background: var(--red);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--red-dark);
}

.btn.secondary {
      background: rgb(255 215 55);
}

.section {
  padding: 74px 0;
}

.section.tight {
  padding: 44px 0;
}

.section.white {
  background: var(--white);
}

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

.section-head p {
  color: var(--muted);
  max-width: 620px;
  margin: 10px 0 0;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 22px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 7px 22px rgba(23, 33, 43, 0.05);
}

.card strong {
  color: var(--red-dark);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  padding: 14px 16px;
  font-weight: 760;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.brand-strip a {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  background: #edf1f5;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 850;
  text-align: center;
}

.brand-strip a:hover {
  color: var(--white);
  background: var(--steel);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.facts {
  display: grid;
  gap: 12px;
}

.fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fact b {
  display: block;
}

.fact span:first-child {
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #f5e9d0;
  color: #6b4b12;
  font-weight: 900;
}

.page-hero {
  background: var(--steel);
  color: var(--white);
  padding: 72px 0;
}

.page-hero p {
  max-width: 760px;
  color: #dce5ee;
  font-size: 19px;
}

.breadcrumbs {
  color: #f3c565;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

.content {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
}

.content p,
.content li {
  color: #344252;
}

.content ul {
  padding-left: 20px;
}

.cta-band {
  background: var(--red-dark);
  color: var(--white);
  padding: 38px 0;
}

.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-band p {
  margin: 8px 0 0;
  color: #f6d9dc;
}

.address-box {
  background: #eef3f0;
  border: 1px solid #cfddd6;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 22px;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  background: #dfe6ed;
}

.site-footer {
  background: #111920;
  color: #c7d2de;
  padding: 44px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.site-footer h2,
.site-footer h3,
.site-footer strong {
  color: var(--white);
}

.footer-logo {
  display: inline-flex;
  margin: 0 0 14px;
}

.footer-logo img {
  width: min(210px, 70vw);
  max-height: 60px;
  object-fit: contain;
}

.site-footer a {
  display: block;
  color: #c7d2de;
  margin: 7px 0;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 18px;
  color: #91a2b1;
  font-size: 14px;
}

@media (max-width: 960px) {
  .topbar .container,
  .cta-band .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    align-items: center;
  }

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .grid.three,
  .grid.two,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    min-height: 580px;
  }

  .hero-content {
    padding: 54px 0 90px;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    display: block;
  }

  .service-list,
  .brand-strip {
    grid-template-columns: 1fr;
  }

  .content {
    padding: 22px;
  }
}
