:root {
  --green: #0f7a3d;
  --green-dark: #073b26;
  --green-deep: #06281b;
  --green-light: #e8f5ed;
  --green-soft: #f3faf6;
  --white: #ffffff;
  --gray: #f4f6f4;
  --text: #17231d;
  --muted: #637169;
  --line: rgba(15, 122, 61, 0.14);
  --shadow: 0 22px 60px rgba(7, 59, 38, 0.12);
  --radius: 8px;
  --header-height: 78px;
  --glass-panel: rgba(6, 40, 27, 0.62);
  --glass-card: rgba(15, 122, 61, 0.22);
  --glass-card-strong: rgba(7, 59, 38, 0.42);
  --glass-field: rgba(10, 82, 48, 0.34);
  --glass-border: rgba(189, 240, 206, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--green-deep);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.page-video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-video-bg video,
.page-video-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-video-bg video {
  object-fit: cover;
  object-position: center right;
}

.page-video-tint {
  background:
    linear-gradient(90deg, rgba(6, 40, 27, 0.82) 0%, rgba(6, 40, 27, 0.42) 34%, rgba(6, 40, 27, 0.08) 72%),
    linear-gradient(180deg, rgba(6, 40, 27, 0.2) 0%, rgba(6, 40, 27, 0.34) 45%, rgba(6, 40, 27, 0.62) 100%);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(1160px, calc(100% - 32px));
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 14px 12px 20px;
  color: var(--white);
  background: rgba(6, 40, 27, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, top 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  top: 10px;
  color: var(--white);
  background: rgba(6, 40, 27, 0.72);
  border-color: var(--glass-border);
  box-shadow: 0 14px 42px rgba(7, 59, 38, 0.12);
}

.brand,
.header-actions,
.main-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.main-nav {
  justify-content: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: currentColor;
  opacity: 0.9;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  background: rgba(189, 240, 206, 0.14);
  opacity: 1;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-open .main-nav a:hover {
  background: rgba(189, 240, 206, 0.16);
}

.header-actions {
  justify-content: flex-end;
  gap: 12px;
}

.header-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(189, 240, 206, 0.18);
  padding: 4px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: currentColor;
  background: rgba(189, 240, 206, 0.16);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: transparent;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
  padding-bottom: 72px;
}

.hero__copy {
  width: min(590px, 100%);
  padding: 0;
}

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

.hero .eyebrow,
.trust .eyebrow {
  color: #bdf0ce;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.1vw, 4.45rem);
  max-width: 7.2em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3.4vw, 3.15rem);
}

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

.hero__lead {
  width: min(520px, 100%);
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.hero__buttons,
.button {
  display: flex;
  align-items: center;
}

.hero__buttons {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(15, 122, 61, 0.26);
}

.button--primary:hover {
  background: #0c6a35;
  box-shadow: 0 20px 42px rgba(15, 122, 61, 0.3);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(189, 240, 206, 0.34);
  background: rgba(15, 122, 61, 0.2);
}

.button--ghost:hover {
  background: rgba(15, 122, 61, 0.32);
}

.section {
  padding: 112px 0;
  background: transparent;
}

.section--soft {
  background: transparent;
}

.section-heading {
  width: min(720px, 100%);
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--white);
  background: rgba(15, 122, 61, 0.28);
  box-shadow: 0 20px 70px rgba(7, 59, 38, 0.11);
  backdrop-filter: blur(18px);
}

.section-heading--wide {
  width: min(850px, 100%);
}

.section-panel {
  padding: 34px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--white);
  background: var(--glass-panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.section-panel .section-heading {
  width: min(780px, 100%);
  margin-bottom: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.section-panel .section-heading .eyebrow {
  color: #bdf0ce;
}

.section-panel .card-grid,
.section-panel .city-layout,
.section-panel .steps-list {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid,
.city-layout,
.steps-list {
  padding: 18px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: rgba(15, 122, 61, 0.24);
  box-shadow: 0 22px 74px rgba(7, 59, 38, 0.14);
  backdrop-filter: blur(18px);
}

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

.service-card,
.city-card,
.step-card,
.contact-form,
.contact-note {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--glass-card);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.service-card,
.step-card {
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.step-card:hover,
.city-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 122, 61, 0.28);
  box-shadow: var(--shadow);
}

.service-card p,
.step-card p,
.city-card p,
.contact-copy p,
.footer-brand p {
  color: rgba(255, 255, 255, 0.76);
}

.service-card p,
.step-card p,
.city-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--green-dark);
  background: #bdf0ce;
  border-radius: 8px;
  font-weight: 800;
}

.city-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.city-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.city-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.95rem, 3.2vw, 3.35rem);
}

.city-card p {
  width: min(450px, 100%);
  margin-bottom: 0;
}

.city-card__label {
  margin-bottom: 10px;
  color: #bdf0ce;
  font-weight: 800;
}

.city-card--dark {
  color: var(--white);
  background: var(--glass-card-strong);
  border-color: var(--glass-border);
}

.city-card--dark p {
  color: rgba(255, 255, 255, 0.74);
}

.city-card--dark .city-card__label {
  color: #a9eabc;
}

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

.step-card {
  min-height: 210px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.trust {
  padding: 96px 0;
  color: var(--white);
  background: transparent;
}

.trust__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 54px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--glass-panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.trust h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.trust-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: var(--glass-card);
  position: relative;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #bdf0ce;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 124px;
  padding: 0;
  color: var(--white);
}

.contact-copy h2 {
  margin-bottom: 20px;
}

.contact-note {
  margin-top: 34px;
  padding: 26px;
}

.contact-note h3 {
  color: var(--white);
}

.contact-note p {
  margin-bottom: 8px;
}

.contact-note p:last-child {
  margin-bottom: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--white);
  background: var(--glass-field);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(189, 240, 206, 0.68);
}

.contact-form option {
  color: var(--white);
  background: var(--green-dark);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(189, 240, 206, 0.72);
  background: rgba(15, 122, 61, 0.42);
  box-shadow: 0 0 0 4px rgba(189, 240, 206, 0.12);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #bdf0ce;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(6, 40, 27, 0.72);
  backdrop-filter: blur(18px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.1fr;
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-brand h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.8rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  width: fit-content;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.legal-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px;
  color: var(--white);
  background: var(--green-deep);
}

.legal-card {
  width: min(760px, 100%);
  padding: 44px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass-panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-card h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.legal-card p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
}

.legal-card a {
  color: #bdf0ce;
  font-weight: 800;
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: auto auto;
    width: min(100% - 24px, 760px);
    gap: 16px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 2px;
    padding: 12px;
    color: var(--white);
    background: rgba(6, 40, 27, 0.88);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: grid;
  }

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

  .trust__inner,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 28px, 560px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding-left: 12px;
  }

  .brand span:last-child {
    font-size: 0.95rem;
  }

  .header-logo {
    width: 44px;
    height: 44px;
  }

  .page-video-bg video {
    object-position: 82% center;
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding-top: 124px;
    padding-bottom: 46px;
  }

  .hero__copy {
    padding: 0;
  }

  h1 {
    font-size: clamp(2.35rem, 10.8vw, 3.8rem);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .button,
  .hero__buttons {
    width: 100%;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-panel {
    padding: 24px;
  }

  .section-panel .section-heading {
    margin-bottom: 22px;
  }

  .card-grid--three,
  .city-layout,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step-card,
  .city-card,
  .contact-form,
  .contact-note,
  .legal-card {
    padding: 24px;
  }

  .city-card {
    min-height: 250px;
  }

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

  .trust {
    padding: 76px 0;
  }

  .trust__inner {
    gap: 30px;
  }

  .contact-layout {
    gap: 28px;
  }

  .footer-grid {
    padding-top: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
