:root {
  --green-900: #0a4d2e;
  --green-800: #0f5e39;
  --green-700: #1f7a3e;
  --green-500: #31a24c;
  --green-400: #8bc34a;
  --gray-700: #5a5a5a;
  --gray-500: #8a8a8a;
  --gray-200: #e8ece8;
  --gray-100: #f5f8f5;
  --white: #ffffff;
  --shadow-soft: 0 22px 50px rgba(10, 77, 46, 0.14);
  --shadow-card: 0 10px 30px rgba(10, 77, 46, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: #132018;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(139, 195, 74, 0.18), transparent 58%),
    radial-gradient(1000px 550px at -10% 10%, rgba(10, 77, 46, 0.09), transparent 52%),
    linear-gradient(180deg, #f8fbf8 0%, #f3f8f3 46%, #f8fbf8 100%);
}

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: -1;
  background-image:
    linear-gradient(45deg, rgba(10, 77, 46, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(10, 77, 46, 0.03) 25%, transparent 25%);
  background-size: 3px 3px;
}

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

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

.container {
  width: min(var(--container), 92vw);
  margin-inline: auto;
}

.section {
  padding: 82px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.83);
  border-bottom: 1px solid rgba(10, 77, 46, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: clamp(44px, 4.6vw, 62px);
  max-width: min(36vw, 340px);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-weight: 700;
  color: var(--green-900);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 42px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--green-900);
  margin: 6px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

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

.btn-solid {
  background: linear-gradient(120deg, var(--green-800), var(--green-500));
  color: var(--white);
  box-shadow: 0 12px 22px rgba(10, 77, 46, 0.28);
}

.btn-solid:hover,
.btn-solid:focus-visible {
  box-shadow: 0 14px 26px rgba(10, 77, 46, 0.34);
}

.btn-ghost {
  border-color: rgba(10, 77, 46, 0.3);
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.8);
}

.btn-sm {
  padding: 11px 18px;
  font-size: 0.92rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  font-weight: 800;
}

.hero {
  padding-top: 54px;
}

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

.hero h1 {
  margin: 0 0 16px;
  font-family: "Russo One", "Arial Black", sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  color: var(--green-900);
}

.hero-lead {
  margin: 0 0 26px;
  color: #31443a;
  font-size: 1.06rem;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-metrics {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-metrics li {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 77, 46, 0.11);
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
}

.hero-metrics strong {
  display: block;
  color: var(--green-800);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.hero-metrics span {
  color: var(--gray-700);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-truck {
  width: 100%;
  border-radius: var(--radius-lg);
  background: #eef3ef;
  box-shadow: var(--shadow-soft);
  animation: truckFloat 5s ease-in-out infinite;
}

.hero-card {
  position: absolute;
  right: -16px;
  bottom: 18px;
  background: linear-gradient(130deg, var(--white), #edf6ed);
  border: 1px solid rgba(10, 77, 46, 0.16);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  max-width: 230px;
  box-shadow: var(--shadow-card);
}

.hero-card p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  color: #26372e;
  line-height: 1.35;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-family: "Russo One", "Arial Black", sans-serif;
  line-height: 1.15;
  font-size: clamp(1.55rem, 3.2vw, 2.6rem);
  color: var(--green-900);
}

.services {
  padding-top: 54px;
}

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

.card {
  background: linear-gradient(160deg, #ffffff, #f0f7f1);
  border: 1px solid rgba(10, 77, 46, 0.1);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--green-800);
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: #32453b;
  line-height: 1.5;
}

.pill-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row span {
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(31, 122, 62, 0.1);
  color: var(--green-900);
  font-weight: 800;
  border: 1px solid rgba(31, 122, 62, 0.2);
}

.prices {
  background: linear-gradient(180deg, rgba(10, 77, 46, 0.05), rgba(10, 77, 46, 0.01));
}

.prices-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

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

.price-list article {
  background: #ffffff;
  border: 1px solid rgba(10, 77, 46, 0.12);
  border-radius: var(--radius-md);
  padding: 15px 16px;
  box-shadow: var(--shadow-card);
}

.price-list h3 {
  margin: 0 0 10px;
  color: #20352a;
  font-size: 1.02rem;
}

.price-list p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 6px 0;
}

.price-list span {
  color: var(--gray-700);
}

.price-list strong {
  color: var(--green-900);
}

.location-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 77, 46, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: #2f4339;
}

.price-sheet {
  margin: 0;
  position: sticky;
  top: 100px;
  display: grid;
  gap: 12px;
}

.price-sheet img {
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 77, 46, 0.14);
  box-shadow: var(--shadow-soft);
}

.license {
  background: linear-gradient(180deg, #f6faf6 0%, #eef6ef 100%);
}

.license-grid {
  max-width: 920px;
  margin-inline: auto;
}

.license-copy {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 77, 46, 0.12);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.license-copy .section-head {
  margin-bottom: 10px;
}

.license-lead {
  margin: 0;
  color: #2f4339;
  line-height: 1.55;
}

.license-status {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(49, 162, 76, 0.15);
  border: 1px solid rgba(31, 122, 62, 0.25);
}

.license-status span {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: var(--green-700);
  font-size: 0.8rem;
}

.license-status strong {
  color: var(--green-900);
}

.license-details {
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.license-details div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(10, 77, 46, 0.1);
}

.license-details dt {
  margin: 0;
  color: #42564b;
  font-weight: 700;
}

.license-details dd {
  margin: 0;
  color: #1e3228;
  font-weight: 800;
  text-align: right;
}

.license-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fleet-frame {
  margin: 0;
  background: linear-gradient(180deg, #ffffff, #f4f8f4);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 77, 46, 0.12);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  padding: 10px;
}

.fleet-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.fleet.section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.fleet .section-head {
  margin-bottom: 14px;
}

.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid li {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 77, 46, 0.12);
  box-shadow: var(--shadow-card);
  padding: 18px;
}

.process-grid strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--green-500), var(--green-400));
  color: #fff;
  margin-bottom: 12px;
}

.process-grid p {
  margin: 0;
  line-height: 1.5;
  color: #30433a;
}

.contact {
  background: linear-gradient(135deg, #0d5936 0%, #134f34 35%, #19643f 100%);
  color: #f0fff5;
}

.contact .eyebrow,
.contact h2,
.contact p {
  color: inherit;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 20px;
}

.contact-copy h2 {
  margin-top: 0;
}

.contact-links {
  margin: 22px 0;
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  font-weight: 800;
  font-size: 1.15rem;
}

.contact-note {
  opacity: 0.88;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(8px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  color: #213128;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(139, 195, 74, 0.68);
  outline-offset: 1px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  margin: 10px 0 0;
  font-weight: 600;
}

.site-footer {
  background: #0a3f27;
  color: rgba(255, 255, 255, 0.88);
}

.footer-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-call {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 20;
  display: none;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(120deg, var(--green-700), var(--green-500));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 22px rgba(10, 77, 46, 0.36);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes truckFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .prices-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .price-sheet {
    position: static;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 64px 0;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(10, 77, 46, 0.12);
    display: grid;
    gap: 12px;
    padding: 0 20px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
  }

  .site-nav.open {
    max-height: 300px;
    opacity: 1;
    padding: 18px 20px;
    pointer-events: auto;
  }

  .header-inner > .btn {
    display: none;
  }

  .brand img {
    height: 44px;
    max-width: 62vw;
  }

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

  .hero-card {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

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

  .license-copy {
    padding: 18px;
  }

  .license-details div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .license-details dd {
    text-align: left;
  }

  .fleet-frame {
    padding: 8px;
  }

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