:root {
  color-scheme: light;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: #15171b;
  background: #f3f4f0;
  --ink: #15171b;
  --muted: #646b73;
  --line: #d9d9d1;
  --paper: #fffdf6;
  --blue: #092f87;
  --yellow: #ffbf18;
  --red: #d91717;
  --steel: #e9ecef;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f3f4f0;
  color: var(--ink);
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 12px 32px;
  border-bottom: 1px solid rgba(21, 23, 27, 0.1);
  background: rgba(255, 253, 246, 0.94);
  backdrop-filter: blur(16px);
}

.brand,
.footer div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 36px;
  height: 48px;
  object-fit: contain;
}

.brand span,
.footer span {
  font-size: 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #3a4148;
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.header-phone {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.nav a:hover,
.header-phone:hover,
.contact-grid a:hover {
  color: var(--blue);
}

.header-phone {
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  background: #ffffff;
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 191, 24, 0.28), rgba(255, 255, 255, 0) 45%),
    #fffdf6;
}

.hero-inner,
.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
}

.hero-copy {
  max-width: 810px;
  position: relative;
  z-index: 2;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: 74px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-text,
.lead {
  max-width: 760px;
  color: #3e464d;
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 900;
}

.button.primary {
  background: var(--blue);
  color: #ffffff;
}

.button.secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-mark {
  position: absolute;
  right: -16px;
  bottom: 52px;
  width: 300px;
  height: 390px;
  display: grid;
  place-items: center;
  opacity: 0.9;
}

.hero-mark::before {
  content: "";
  position: absolute;
  inset: 36px -40px -36px 52px;
  border: 16px solid var(--yellow);
  background: var(--blue);
}

.hero-mark img {
  position: relative;
  width: 210px;
  image-rendering: auto;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid #1a1e22;
  border-bottom: 1px solid #1a1e22;
  background: #15171b;
  color: #ffffff;
}

.quick-strip span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  font-weight: 900;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.about-grid,
.service-grid,
.location-row,
.contact-grid {
  display: grid;
  gap: 14px;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.about-grid article,
.service-grid article,
.location-row article,
.contact-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.about-grid article {
  min-height: 146px;
  padding: 22px;
  display: grid;
  align-content: space-between;
}

.about-grid strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.about-grid span,
.service-grid p,
.location-row p,
.price-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.55;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
  min-height: 270px;
  padding: 22px;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: var(--yellow);
  color: #111111;
  font-weight: 900;
}

.makers {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 38px;
  align-items: center;
  padding-top: 20px;
}

.maker-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.maker-logos img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.logistics {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - 1180px) / 2));
  padding-right: max(24px, calc((100% - 1180px) / 2));
  background: #e6e8e3;
}

.location-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-row article {
  min-height: 160px;
  padding: 24px;
}

.price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-copy {
  max-width: 720px;
}

.price-actions {
  margin-top: 0;
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-grid article {
  min-height: 260px;
  padding: 22px;
}

.role {
  min-height: 38px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
}

.contact-grid a {
  display: block;
  margin-top: 12px;
  color: #2d3740;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.requisites {
  padding-top: 30px;
}

.requisite-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

dl {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0 20px 20px;
}

dl div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: #15171b;
  color: #ffffff;
}

.footer img {
  width: 31px;
  height: 39px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    min-height: 600px;
  }

  .hero-inner {
    min-height: 560px;
  }

  .hero-mark {
    width: 210px;
    height: 270px;
    opacity: 0.22;
  }

  .quick-strip,
  .about-grid,
  .service-grid,
  .location-row,
  .contact-grid,
  .makers,
  .price {
    grid-template-columns: 1fr;
  }

  .maker-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding: 10px 16px;
    gap: 12px;
  }

  .brand span {
    font-size: 17px;
  }

  .brand img {
    width: 28px;
    height: 38px;
  }

  .header-phone {
    padding: 0 9px;
    font-size: 12px;
  }

  .hero-inner,
  .section {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: 560px;
  }

  .hero-inner {
    min-height: 520px;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-text,
  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .price-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .quick-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 64px 0;
  }

  .maker-logos {
    grid-template-columns: 1fr;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 16px;
  }

  .footer p {
    text-align: left;
  }
}
