:root {
  --bg: #f6f8f4;
  --surface: #ffffff;
  --surface-strong: #eff6e8;
  --ink: #162014;
  --muted: #66705f;
  --green: #16a34a;
  --green-dark: #0f7a3b;
  --blue: #0f5f8c;
  --gold: #d6a84f;
  --line: rgba(22, 32, 20, 0.12);
  --shadow: 0 24px 70px rgba(20, 52, 31, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 8% 8%, rgba(22, 163, 74, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(15, 95, 140, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 42%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(246, 248, 244, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #18b653, #0d8b3d);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  transform: rotate(-35deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #31402d;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 12px;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover {
  background: rgba(22, 163, 74, 0.1);
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  padding: 72px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 48px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6.4vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.hero-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(22, 163, 74, 0.28);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  padding: 8px 12px;
  color: #43513e;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 4%, rgba(22, 163, 74, 0.2), transparent 12rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 232, 0.9));
  box-shadow: var(--shadow);
  padding: 34px;
}

.hero-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  content: "";
  background: rgba(22, 163, 74, 0.13);
}

.hero-card-header {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: #ffffff;
  padding: 24px;
}

.hero-card-header span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card-header strong {
  max-width: 360px;
  font-size: 1.45rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero-route {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 22px 0 8px;
  color: #3d5138;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-route i {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22, 163, 74, 0.25), rgba(22, 163, 74, 0.75));
}

.metric {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.metric:first-child {
  padding-top: 0;
}

.metric:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.metric strong {
  color: var(--green-dark);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.logo-band {
  padding: 0 0 48px;
}

.logo-band .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 44px rgba(27, 50, 24, 0.08);
  padding: 22px 28px;
}

.logo-band-copy {
  display: grid;
  gap: 4px;
}

.logo-band-copy span {
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.logo-band-copy strong {
  max-width: 500px;
  color: #263421;
  font-size: 1.1rem;
  line-height: 1.35;
}

.logo-band img {
  width: min(430px, 44vw);
  border-radius: 16px;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: rgba(255, 255, 255, 0.58);
}

.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(22, 163, 74, 0.32), transparent 26rem),
    linear-gradient(145deg, #101a13, #172b1b 60%, #0c271f);
  color: #ffffff;
}

.section-dark .eyebrow,
.section-dark .promise-list p,
.section-dark .section-lead {
  color: #cbf4d8;
}

.section-lead {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.04rem;
}

.split,
.why-grid,
.promise-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.content-stack {
  display: grid;
  gap: 18px;
}

.content-stack p,
.contact-grid p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.02rem;
}

.card-grid,
.certificate-grid,
.management-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.certificate-card,
.management-card,
.detail-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(20, 52, 31, 0.08);
}

.service-card {
  padding: 28px;
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 14px;
  background: var(--surface-strong);
  color: var(--green-dark);
  font-weight: 900;
}

.service-card p,
.certificate-card span,
.fine-print {
  color: var(--muted);
}

.network-panel {
  position: relative;
  display: grid;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 8%, rgba(22, 163, 74, 0.16), transparent 12rem),
    radial-gradient(circle at 12% 16%, rgba(15, 95, 140, 0.12), transparent 13rem),
    linear-gradient(145deg, #ffffff, #eef7eb);
  box-shadow: var(--shadow);
  padding: 34px;
}

.network-panel::before {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 48%;
  content: "";
  background: rgba(22, 163, 74, 0.1);
}

.coverage-header,
.coverage-cities,
.coverage-routes {
  position: relative;
  z-index: 1;
}

.coverage-header {
  display: grid;
  gap: 10px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: #ffffff;
  padding: 28px;
}

.coverage-header span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coverage-header strong {
  max-width: 360px;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.coverage-header p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coverage-cities span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(22, 32, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 11px 15px;
  color: #30492f;
  font-size: 0.94rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(20, 52, 31, 0.08);
}

.coverage-cities span::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.coverage-routes {
  display: grid;
  gap: 12px;
}

.coverage-routes article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(22, 32, 20, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  padding: 16px 18px;
}

.coverage-routes strong {
  color: var(--green-dark);
  font-size: 1.08rem;
}

.coverage-routes span {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #45513f;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  content: "";
  background: rgba(22, 163, 74, 0.14);
  box-shadow: inset 0 0 0 7px #ffffff;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.promise-list p {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
  font-weight: 800;
}

.certificate-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 26px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.certificate-card:hover {
  border-color: rgba(22, 163, 74, 0.35);
  box-shadow: 0 24px 56px rgba(20, 52, 31, 0.14);
  transform: translateY(-4px);
}

.certificate-card strong {
  color: var(--green-dark);
  font-size: 1.1rem;
}

.management-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.management-card {
  min-height: 170px;
  padding: 26px;
}

.management-card span,
.detail-card .eyebrow {
  color: var(--green-dark);
}

.management-card span {
  display: block;
  margin-bottom: 34px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.management-card h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.detail-grid,
.client-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.detail-card {
  padding: 34px;
}

.detail-card p {
  color: var(--muted);
}

.client-panel {
  align-items: start;
}

.contact-grid {
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 34px;
}

.contact-card h3 {
  margin-bottom: 4px;
}

.office-block {
  display: grid;
  gap: 4px;
}

.office-block + .office-block {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 18px;
}

.office-block span {
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.office-block p {
  margin: 0;
}

.office-contacts {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.office-contacts a,
.contact-card a {
  color: var(--green-dark);
  font-weight: 900;
}

.office-block .fine-print {
  margin: 14px 0 0;
  font-size: 0.86rem;
}

.footer {
  background: #0f1711;
  color: rgba(255, 255, 255, 0.72);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.footer p {
  margin: 0;
}

.floating-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  opacity: 0;
  padding: 13px 18px;
  pointer-events: none;
  box-shadow: 0 18px 42px rgba(22, 163, 74, 0.32);
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.floating-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-top:hover {
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #ffffff;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-radius: 0;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero-grid,
  .split,
  .why-grid,
  .promise-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-card {
    margin-top: 0;
  }

  .card-grid,
  .certificate-grid,
  .management-grid,
  .detail-grid,
  .client-panel,
  .promise-list,
  .logo-band .container {
    grid-template-columns: 1fr;
  }

  .logo-band img {
    width: min(360px, 100%);
  }

  .network-panel {
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand small {
    max-width: 160px;
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .network-panel,
  .contact-card {
    padding: 24px;
  }

  .coverage-header {
    padding: 22px;
  }

  .coverage-routes article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-route {
    grid-template-columns: 1fr;
  }

  .hero-route i {
    display: none;
  }

  .logo-band .container {
    border-radius: 28px;
  }
}
