:root {
  --yellow: #f7c600;
  --yellow-dark: #d8a900;
  --black: #0b0b0c;
  --ink: #171717;
  --muted: #62646a;
  --line: #e9e9e9;
  --soft: #f7f7f4;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(11, 11, 12, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 6px;
  font-weight: 800;
  font-family: "Barlow", Arial, sans-serif;
}

.header-call {
  padding: 0 18px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(247, 198, 0, 0.26);
}

.icon svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  flex: 0 0 auto;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  background-image: url("hero-bg.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.7) 36%, rgba(0, 0, 0, 0.22) 70%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.05));
}

.hero-content {
  padding-block: 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--yellow);
  font-weight: 900;
  font-family: "Barlow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  font-weight: 900;
}

.hero-subtitle {
  max-width: 650px;
  margin: 22px 0 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 600;
}

.hero-actions,
.cta-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 0 24px;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 14px 30px rgba(247, 198, 0, 0.24);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding-block: 88px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
}

.about-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-copy p {
  margin-top: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.about-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  color: var(--black);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.about-stats span {
  margin-top: 7px;
  font-size: 0.88rem;
}

.services {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.feature-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.service-card {
  padding: 26px;
}

.feature-card {
  padding: 24px;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--black);
  background: var(--yellow);
}

.card-icon svg {
  width: 27px;
  height: 27px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-band {
  padding-block: 58px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 11, 12, 0.98), rgba(11, 11, 12, 0.9)),
    linear-gradient(135deg, var(--yellow), var(--yellow-dark));
}

.cta-inner {
  justify-content: space-between;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-inner p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.cta-phone {
  min-height: 58px;
  padding-inline: 30px;
  font-size: 1.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: stretch;
}

.contact-info {
  padding: 34px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.info-block {
  margin-top: 28px;
}

.info-block h3 {
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 1.25rem;
}

.info-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.info-block a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.mini-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.9rem;
}

.map-wrap {
  min-height: 460px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding-block: 44px 28px;
  color: var(--white);
  background: var(--black);
}

.footer-inner {
  display: grid;
  gap: 30px;
}

.site-footer h2 {
  font-size: 1.8rem;
}

.site-footer p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

.mobile-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: "Barlow", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 30px, 900px);
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 15px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s ease;
  }

  .main-nav a {
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
  }

  .menu-open .main-nav {
    transform: translateY(0);
    visibility: visible;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 680px;
    background-position: 63% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.72) 58%, rgba(0, 0, 0, 0.42) 100%);
  }

  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-wrap {
    min-height: 360px;
  }

  .mobile-call {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 540px);
  }

  .section {
    padding-block: 64px;
  }

  .hero {
    min-height: 620px;
    background-position: 68% center;
  }

  .hero-content {
    padding-block: 70px;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4.4rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .about-stats,
  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .feature-card,
  .contact-info {
    padding: 22px;
  }

  .cta-inner {
    align-items: flex-start;
  }

  .cta-phone {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }
}
