:root {
  --blue: #0957d5;
  --blue-dark: #073d9c;
  --navy: #0c1b36;
  --text: #17233b;
  --muted: #4b5870;
  --border: #e6ebf3;
  --bg-soft: #f7faff;
  --white: #ffffff;
  --shadow: 0 12px 28px rgba(14, 52, 108, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  min-height: 145px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand img {
  width: 365px;
  max-height: 120px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-weight: 600;
}

.main-nav > a:not(.btn) {
  padding: 14px 0;
  white-space: nowrap;
}

.main-nav > a:not(.btn):hover { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 700;
  transition: .2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #1665de, #064ebd);
  color: #fff;
  box-shadow: 0 6px 16px rgba(7, 81, 191, .18);
}

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

.hero {
  background:
    radial-gradient(circle at 72% 22%, rgba(51, 124, 230, .16), transparent 32%),
    linear-gradient(90deg, #fff 0%, #fbfdff 48%, #eef6ff 100%);
  overflow: hidden;
}

.hero-grid {
  min-height: 465px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
}

.hero-content {
  padding: 30px 0 38px 65px;
  position: relative;
  z-index: 2;
}

.construction-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--blue);
  color: var(--blue-dark);
  border-radius: 9px;
  padding: 7px 14px;
  font-weight: 800;
  letter-spacing: .03em;
  font-size: 14px;
}

.cone { color: var(--blue); }

h1 {
  margin: 18px 0 14px;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #0d1d38;
}

h1 span { color: var(--blue); }

.title-line {
  width: 78px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  margin: 22px 0;
}

.hero-text {
  max-width: 600px;
  margin: 0;
  color: #34425b;
  font-size: 18px;
  line-height: 1.55;
}

.opening-card {
  margin-top: 28px;
  width: 305px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}

.opening-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 30px;
}

.opening-card strong {
  display: block;
  margin-top: 3px;
  color: var(--blue-dark);
  font-size: 20px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}

.services {
  background: #fff;
  padding: 14px 0 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.service-card {
  min-height: 218px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px 16px;
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.service-card + .service-card { margin-left: -1px; }

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  color: var(--blue);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:nth-child(2) .service-icon svg path {
  fill: currentColor;
  stroke: currentColor;
}

.service-card h2 {
  margin: 0 0 10px;
  font-size: 17px;
  color: #101c34;
}

.service-card p {
  margin: 0 auto;
  max-width: 220px;
  color: #4a5870;
  font-size: 14px;
  line-height: 1.45;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 700;
}

.site-footer {
  color: #fff;
  background: linear-gradient(110deg, #0c3f94 0%, #0b54c8 60%, #063888 100%);
  padding: 26px 0 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.footer-grid > div + div {
  border-left: 1px solid rgba(255,255,255,.4);
  padding-left: 34px;
}

.site-footer h3 {
  margin: 0 0 6px;
  font-size: 25px;
}

.site-footer p {
  margin: 5px 0;
  line-height: 1.45;
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-cone {
  font-size: 48px;
  color: #fff;
}

.footer-center strong { font-size: 18px; }
.footer-center b { font-size: 20px; }

.footer-contact {
  text-align: center;
}

.btn-light {
  margin-top: 8px;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.copyright {
  text-align: center;
  margin-top: 22px;
  font-size: 12px;
  opacity: .9;
}

@media (max-width: 1100px) {
  .header-inner {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img { width: 290px; }
  .main-nav { flex-wrap: wrap; gap: 16px 24px; }

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

  .hero-content {
    padding: 34px 0 26px;
  }

  .hero-visual {
    height: 360px;
  }

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

  .service-card + .service-card { margin-left: 0; }

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

  .footer-grid > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.3);
    padding: 22px 0 0;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1320px);
  }

  .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .main-nav > a:not(.btn) {
    padding: 10px 0;
  }

  .btn-primary { margin-top: 8px; }

  h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 16px;
  }

  .opening-card {
    width: 100%;
  }

  .hero-visual {
    height: 280px;
  }

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