:root {
  --ink: #13251f;
  --muted: #5c6d65;
  --surface: #ffffff;
  --soft: #eef5f1;
  --line: #d9e6df;
  --green: #28735d;
  --green-dark: #185442;
  --blue: #2f6f8f;
  --gold: #c48b35;
  --shadow: 0 18px 45px rgba(19, 37, 31, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  background: #f8fbf9;
}

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

a {
  color: inherit;
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}

a:hover {
  transform: scale(1.04);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

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

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

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--green-dark);
  background: var(--soft);
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--green-dark);
  font-weight: 750;
  text-decoration: none;
}

.phone-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero {
  padding: 78px 0 42px;
  background: linear-gradient(180deg, #f8fbf9 0%, #edf6f1 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--green);
}

.button.secondary {
  color: var(--green-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 460px;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.status-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(19, 37, 31, 0.12);
}

.status-card span {
  display: block;
  color: var(--muted);
}

.status-card strong {
  display: block;
  font-size: 1.35rem;
}

.quick-contact {
  transform: translateY(28px);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-grid a {
  padding: 22px;
  text-decoration: none;
}

.quick-grid a + a {
  border-left: 1px solid var(--line);
}

.quick-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.quick-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.04rem;
}

.section {
  padding: 88px 0;
}

.section.tinted {
  background: var(--soft);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
  text-align: center;
}

.section-heading.left {
  text-align: left;
}

.service-grid,
.card-row,
.content-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.content-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
}

.card-row {
  grid-template-columns: repeat(2, 1fr);
}

.service-card,
.content-card,
.info-panel,
.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card {
  min-height: 270px;
}

.service-card p,
.content-card p,
.info-panel p,
.contact-panel p {
  color: var(--muted);
}

.service-card a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.icon-circle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.split,
.about,
.map-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
}

.document-list {
  display: grid;
  gap: 10px;
}

.document-list a,
.mini-list span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-dark);
  font-weight: 750;
  text-decoration: none;
}

.about blockquote {
  margin: 0;
  padding: 28px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 82px 0 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(19, 37, 31, 0.86), rgba(19, 37, 31, 0.52)),
    url("https://images.unsplash.com/photo-1505751172876-fa1923c5c528?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero.driver-hero {
  background:
    linear-gradient(90deg, rgba(19, 37, 31, 0.86), rgba(19, 37, 31, 0.45)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.page-hero .eyebrow {
  color: #bfe8da;
}

.content-card.large {
  min-height: 310px;
}

.info-panel {
  align-self: start;
  background: var(--ink);
  color: #fff;
}

.info-panel p,
.info-panel .check-list {
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 38px;
}

.step-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.step-list li {
  position: relative;
  padding: 22px 22px 22px 72px;
  border-radius: var(--radius);
  background: #fff;
  counter-increment: step;
}

.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.step-list strong,
.step-list span {
  display: block;
}

.step-list span {
  color: var(--muted);
}

.check-list {
  margin: 0 0 16px;
  padding-left: 18px;
}

.check-list li + li {
  margin-top: 7px;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.mini-list {
  display: grid;
  gap: 10px;
}

.notice {
  margin-top: 22px;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--green-dark);
  background: var(--soft);
  font-weight: 700;
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-panel dt {
  color: var(--muted);
  font-weight: 700;
}

.contact-panel dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.contact-panel a {
  color: var(--green-dark);
}

.contact-panel.accent {
  color: #fff;
  background: var(--green-dark);
}

.contact-panel.accent p {
  color: rgba(255, 255, 255, 0.82);
}

.big-time {
  font-size: 1.45rem;
  line-height: 1.2;
}

.map-frame {
  overflow: hidden;
  width: 100%;
  min-height: 360px;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
}

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

.site-footer a {
  margin-top: 4px;
  text-decoration: none;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .header-call {
    display: none;
  }

  .hero-grid,
  .content-grid,
  .contact-grid,
  .split,
  .about,
  .map-block,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .card-row,
  .quick-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid a + a {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .quick-contact {
    transform: none;
    margin-top: 24px;
  }

  .section {
    padding: 64px 0;
  }
}

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

  .brand strong {
    font-size: 0.98rem;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 330px;
  }

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

  .service-card,
  .content-card,
  .info-panel,
  .contact-panel {
    padding: 22px;
  }

  .map-frame {
    min-height: 280px;
    aspect-ratio: 1 / 1;
  }
}
