:root {
  --green-950: #031b10;
  --green-900: #052e1a;
  --green-800: #064222;
  --green-700: #087536;
  --green-600: #0ca74e;
  --green-100: #e7f8ee;
  --white: #ffffff;
  --black: #080f0b;
  --text: #102019;
  --muted: #607169;
  --line: rgba(8, 117, 54, 0.18);
  --soft: #f7fbf8;
  --shadow: 0 18px 54px rgba(3, 27, 16, 0.12);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--soft);
  line-height: 1.55;
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 251, 248, 0.94);
  border-bottom: 1px solid rgba(8, 117, 54, 0.12);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--green-900);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #31443a;
  font-size: 15px;
}

.nav a:hover {
  color: var(--green-700);
}

.header-phone {
  display: grid;
  gap: 1px;
  text-align: right;
  color: var(--green-900);
}

.header-phone small {
  color: var(--muted);
  font-size: 12px;
}

.header-phone strong {
  font-size: 18px;
}

.hero {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(3, 27, 16, 0.98), rgba(5, 46, 26, 0.9) 54%, rgba(8, 117, 54, 0.72)),
    url("/promo.png") center / cover no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 42px;
  align-items: center;
  min-height: 640px;
  padding: 72px 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #54f28d;
  box-shadow: 0 0 0 5px rgba(84, 242, 141, 0.16);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.hero-actions,
.cta-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
  color: var(--green-950);
  background: #54f28d;
  box-shadow: 0 14px 34px rgba(84, 242, 141, 0.26);
}

.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: var(--white);
  background: var(--green-900);
}

.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.hero-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-card h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.price-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.price-mini {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 27, 16, 0.34);
}

.price-mini span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.price-mini strong {
  display: block;
  margin-top: 7px;
  color: #ffffff;
  font-size: 21px;
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.coverage-list span,
.chip-list span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.section {
  padding: 86px 0;
}

.section-alt {
  background: #ffffff;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.grid-3,
.steps-grid,
.internal-grid,
.routes-grid,
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.step,
.faq-item,
.contact-panel,
.map-card,
.content-card,
.internal-link,
.route-card,
.work-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(3, 27, 16, 0.07);
}

.card,
.step,
.content-card,
.internal-link,
.route-card,
.work-card {
  padding: 24px;
}

.card-number,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-700);
  font-weight: 800;
}

.card h3,
.step h3,
.content-card h3,
.internal-link h3 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 21px;
  line-height: 1.2;
}

.card p,
.step p,
.content-card p,
.internal-link p {
  margin: 0;
  color: var(--muted);
}

.route-card {
  display: grid;
  gap: 14px;
}

.route-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.route-card h3,
.work-card h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 21px;
  line-height: 1.2;
}

.route-price {
  white-space: nowrap;
  color: var(--green-800);
  font-size: 20px;
  font-weight: 900;
}

.route-card p,
.work-card p {
  margin: 0;
  color: var(--muted);
}

.route-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-note span,
.work-meta span {
  display: inline-flex;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--green-900);
  background: var(--green-100);
  font-size: 13px;
  font-weight: 700;
}

.work-card {
  display: grid;
  gap: 12px;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tariff-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.tariff-row {
  display: grid;
  grid-template-columns: 1.25fr 0.72fr 0.72fr;
  border-bottom: 1px solid var(--line);
}

.tariff-row:last-child {
  border-bottom: 0;
}

.tariff-cell {
  padding: 18px;
}

.tariff-head {
  color: #ffffff;
  background: var(--green-900);
  font-weight: 800;
}

.tariff-name {
  font-weight: 800;
  color: var(--green-950);
}

.tariff-note {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.tariff-price {
  color: var(--green-800);
  font-size: 20px;
  font-weight: 800;
}

.tariff-caption {
  margin: 16px 0 0;
  color: var(--muted);
}

.area-layout,
.map-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip-list span {
  color: var(--green-900);
  border: 1px solid var(--line);
  background: var(--green-100);
}

.map-card {
  overflow: hidden;
  min-height: 380px;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px;
}

.faq-item h3 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 20px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 44px 0;
}

.cta h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.cta p {
  max-width: 720px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contacts {
  background: #ffffff;
}

.contact-panel {
  padding: 24px;
}

.contact-line {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-label {
  color: var(--muted);
}

.contact-value {
  color: var(--green-950);
  font-weight: 800;
}

.contact-panel a.contact-value {
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.contact-panel a.contact-value:hover {
  color: var(--green-700);
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ffffff;
  font-size: 14px;
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green-700);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(8, 117, 54, 0.32);
  font-size: 22px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-inner,
  .area-layout,
  .map-layout,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .grid-3,
  .steps-grid,
  .internal-grid,
  .routes-grid,
  .works-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 700px) {
  .header-phone {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .hero-inner {
    padding: 44px 0 56px;
  }

  .price-mini-grid,
  .tariff-row {
    grid-template-columns: 1fr;
  }

  .tariff-head {
    display: none;
  }

  .tariff-cell {
    padding: 14px 16px;
  }

  .tariff-cell[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
  }

  .contact-line {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .floating-call {
    display: flex;
  }
}
