*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:   #0A2D63;
  --white:  #FFFFFF;
  --soft:   #F8F9FA;
  --text:   #2B2B2B;
  --muted:  #6B7280;
  --border: #E8EAEC;
  --radius: 6px;
}

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: var(--text);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--white);
}

/* ─── Container ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: opacity 0.15s;
  cursor: pointer;
}
.btn:hover { opacity: 0.82; }

.btn--primary        { background: var(--navy); color: var(--white); }
.btn--outline        { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 12px 28px; }
.btn--white          { background: var(--white); color: var(--navy); font-weight: 700; }
.btn--white-outline  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); padding: 12px 28px; }

/* ─── Header ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 40px;
}
.header__logo { flex-shrink: 0; line-height: 0; }
.header__logo img { display: block; }

.header__nav {
  display: flex;
  gap: 32px;
  flex: 1;
}
.header__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}
.header__nav a:hover { color: var(--navy); }

.header__phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.header__phone:hover { opacity: 0.7; }

/* ─── Hero ─── */
.hero {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: calc(100vh - 64px);
  max-height: 700px;
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 24px;
  max-width: 680px;
  margin-left: auto;
  width: 100%;
}

/* align left edge to container */
@media (min-width: 1208px) {
  .hero__text { padding-left: calc((100vw - 1160px) / 2 + 24px); max-width: none; margin-left: 0; width: 55vw; }
}

.hero__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 24px;
}
.hero__desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 40px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__block {
  background: var(--navy);
}

/* ─── Stats ─── */
.stats {
  background: var(--navy);
  padding: 40px 0;
}
.stats__row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.stat__sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.stat__num {
  display: block;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ─── Sections ─── */
.section { padding: 88px 0; }
.section--soft { background: var(--soft); }
.section__title {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 48px;
}

/* ─── Services grid ─── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.svc {
  background: var(--white);
  padding: 36px 32px;
}
.svc__num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  opacity: 0.5;
}
.svc__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.svc__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── About ─── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about__text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
}
.about__text p:last-child { margin-bottom: 0; }

.about__quote {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--navy);
  border-left: 3px solid var(--navy);
  padding-left: 28px;
  margin-top: 4px;
  font-style: normal;
}

/* ─── Why ─── */
.why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why__item {
  background: var(--white);
  padding: 32px 36px;
  border-radius: var(--radius);
}
.why__item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.why__item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* ─── Contact CTA ─── */
.contact {
  background: var(--navy);
  padding: 88px 0;
  text-align: center;
}
.contact__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.contact__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 44px;
}
.contact__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.contact__also {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

/* ─── Footer ─── */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer__copy {
  flex: 1;
  font-size: 14px;
  color: var(--muted);
}
.footer__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}
.footer__phone:hover { color: var(--navy); }

/* ─── Mobile ─── */
@media (max-width: 900px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .header__nav { display: none; }
  .header__inner { gap: 16px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }
  .hero__block { display: none; }
  .hero__text {
    padding: 56px 24px 48px;
    max-width: none;
    margin-left: 0;
    width: auto;
  }

  .stats__row { flex-direction: column; gap: 24px; }
  .stat__sep { width: 40px; height: 1px; }

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

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

  .footer__inner { flex-direction: column; text-align: center; gap: 12px; }
  .footer__copy { flex: none; }
}
