:root {
  --bg: #f5f7f2;
  --paper: #ffffff;
  --ink: #17201b;
  --muted: #667167;
  --line: #dce2d8;
  --green: #1f7a4f;
  --green-dark: #14593a;
  --yellow: #f3bd35;
  --blue: #2f6f9f;
  --shadow: 0 22px 70px rgba(24, 35, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(245, 247, 242, 0.88);
  border-bottom: 1px solid rgba(220, 226, 216, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--green);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

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

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  color: #3f4b43;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  padding: 8px 0;
}

.header-phone {
  min-width: max-content;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(44px, 8vw, 96px) clamp(18px, 5vw, 72px) 40px;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.lead {
  max-width: 630px;
  color: #4b574f;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

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

.btn.primary:hover {
  background: var(--green-dark);
}

.btn.secondary {
  color: var(--ink);
  background: var(--yellow);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  color: #4e5b53;
  font-size: 14px;
  font-weight: 700;
}

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

.hero-media::before {
  position: absolute;
  inset: 10% -4% -4% 8%;
  z-index: -1;
  border-radius: 8px;
  background: #d9e7df;
  content: "";
}

.hero-media img {
  width: min(620px, 100%);
  margin-inline: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.quick-panel div {
  padding: 22px;
  background: white;
}

.quick-panel span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

.quick-panel a,
.quick-panel strong {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.section,
.routes-section,
.request-section {
  padding: clamp(68px, 10vw, 118px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.service-card p {
  color: var(--muted);
}

.icon-box {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--ink);
  background: #f4c13e;
  font-weight: 800;
}

.routes-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
  background: #17201b;
  color: white;
}

.routes-section .eyebrow {
  color: #f7c84e;
}

.routes-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #d8e0da;
}

.routes-copy,
.route-list,
.request-copy,
.request-form {
  min-width: 0;
}

.route-list {
  display: grid;
  gap: 12px;
}

.route-list div {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.route-list span {
  color: #c6d2cb;
}

.compact {
  padding-bottom: 70px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps div {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: white;
}

.steps span {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-weight: 800;
}

.steps p {
  margin-bottom: 0;
  color: #536058;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: #e9efe5;
}

.request-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #536058;
}

.request-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 45px rgba(23, 32, 27, 0.08);
}

.request-form label {
  display: grid;
  gap: 7px;
  color: #3d4840;
  font-size: 14px;
  font-weight: 800;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid #cfd8cf;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: 3px solid rgba(31, 122, 79, 0.18);
  border-color: var(--green);
}

.request-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: white;
  background: #111713;
}

.site-footer strong,
.site-footer span,
.site-footer a {
  display: block;
}

.site-footer span {
  color: #c9d2cb;
}

.site-footer address {
  display: grid;
  gap: 4px;
  text-align: right;
  font-style: normal;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  padding: 13px 18px;
  border-radius: 8px;
  color: white;
  background: var(--green);
  box-shadow: var(--shadow);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .hero,
  .routes-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .quick-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .header-phone {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .service-card {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }

  .site-footer address {
    text-align: left;
  }

  .floating-call {
    display: inline-flex;
  }
}
