:root {
  --ink: #17211c;
  --muted: #5c6b63;
  --green: #0e5c43;
  --green-dark: #073829;
  --gold: #c7953f;
  --line: #dce5df;
  --soft: #f3f7f4;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(21, 39, 31, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 229, 223, 0.84);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--green);
}

.header-cta,
.primary-button,
.secondary-button,
.request-panel button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1;
  border: 1px solid transparent;
}

.header-cta,
.primary-button,
.request-panel button {
  color: var(--white);
  background: var(--green);
}

.header-cta:hover,
.primary-button:hover,
.request-panel button:hover {
  background: var(--green-dark);
}

.secondary-button {
  color: var(--green-dark);
  border-color: var(--line);
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 6vw, 80px);
  padding: clamp(52px, 8vw, 104px) clamp(20px, 5vw, 72px) clamp(40px, 7vw, 80px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(56vw, 780px);
  height: min(48vw, 620px);
  content: "";
  background:
    linear-gradient(135deg, rgba(14, 92, 67, 0.82), rgba(11, 44, 34, 0.64)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='620' viewBox='0 0 900 620'%3E%3Crect width='900' height='620' fill='%23dfe9e2'/%3E%3Cpath d='M88 362 436 124l352 238v190H88z' fill='%23ffffff'/%3E%3Cpath d='M112 356 436 134l328 222' fill='none' stroke='%230e5c43' stroke-width='22' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect x='165' y='385' width='126' height='101' rx='6' fill='%23c7953f'/%3E%3Crect x='356' y='354' width='126' height='198' rx='6' fill='%230e5c43'/%3E%3Crect x='554' y='385' width='150' height='96' rx='6' fill='%23b7c8be'/%3E%3Ccircle cx='720' cy='454' r='58' fill='%237ea48e'/%3E%3Cpath d='M681 511h96' stroke='%23073829' stroke-width='10' stroke-linecap='round'/%3E%3Ccircle cx='632' cy='474' r='28' fill='%23c7953f'/%3E%3Cpath d='M620 505h58' stroke='%2317211c' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.18;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-copy,
.request-panel {
  position: relative;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 6.8vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin: 46px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.trust-strip div {
  padding-right: 18px;
}

.trust-strip dt {
  font-size: 27px;
  font-weight: 850;
  color: var(--green);
}

.trust-strip dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.request-panel {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.request-panel h2 {
  margin: 0 0 18px;
  font-size: 26px;
  letter-spacing: 0;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(14, 92, 67, 0.16);
  border-color: var(--green);
}

.request-panel button {
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
  cursor: pointer;
  font: inherit;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.service-rail,
.split-section,
.pro-section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.service-rail {
  background: var(--soft);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading h2,
.split-section h2,
.pro-section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p,
.split-section p,
.pro-section p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

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

.service-grid article {
  min-height: 235px;
  padding: 24px;
  border: 1px solid #d7e2db;
  border-radius: 8px;
  background: var(--white);
}

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

.service-grid h3 {
  margin: 22px 0 10px;
  font-size: 22px;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.split-section p {
  margin-top: 20px;
}

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

.process-list li {
  display: grid;
  gap: 5px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.process-list strong {
  font-size: 20px;
}

.process-list span {
  color: var(--muted);
  line-height: 1.55;
}

.pro-section {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  color: var(--white);
  background: var(--green-dark);
}

.pro-section p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.primary-button.dark {
  flex: 0 0 auto;
  color: var(--green-dark);
  background: var(--gold);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
  color: var(--ink);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

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

  .section-heading,
  .pro-section {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
    font-size: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

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

  .request-panel {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}
