:root {
  --bg: #f6f0e4;
  --paper: #fffaf0;
  --paper-2: #fffdf7;
  --green: #0d3f34;
  --green-2: #135748;
  --green-3: #1a6a58;
  --gold: #d8aa45;
  --gold-2: #f1d083;
  --ink: #1d2b27;
  --muted: #6b756f;
  --line: rgba(13, 63, 52, .14);
  --shadow: 0 24px 70px rgba(13, 63, 52, .16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 170, 69, .18), transparent 30rem),
    linear-gradient(180deg, #fbf5ea 0%, var(--bg) 48%, #f9f3e8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(30deg, rgba(13, 63, 52, .055) 12%, transparent 12.5%, transparent 87%, rgba(13, 63, 52, .055) 87.5%, rgba(13, 63, 52, .055)),
    linear-gradient(150deg, rgba(13, 63, 52, .055) 12%, transparent 12.5%, transparent 87%, rgba(13, 63, 52, .055) 87.5%, rgba(13, 63, 52, .055)),
    linear-gradient(30deg, rgba(13, 63, 52, .055) 12%, transparent 12.5%, transparent 87%, rgba(13, 63, 52, .055) 87.5%, rgba(13, 63, 52, .055)),
    linear-gradient(150deg, rgba(13, 63, 52, .055) 12%, transparent 12.5%, transparent 87%, rgba(13, 63, 52, .055) 87.5%, rgba(13, 63, 52, .055));
  background-size: 70px 122px;
  background-position: 0 0, 0 0, 35px 61px, 35px 61px;
}

img, svg {
  display: block;
}

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

.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, .22);
  background: rgba(13, 63, 52, .9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.brand-mark svg {
  width: 32px;
  height: 32px;
  fill: var(--green);
}

.brand-title {
  display: block;
  font-weight: 800;
  letter-spacing: .01em;
  font-size: 19px;
  line-height: 1.1;
}

.brand-subtitle {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, .84);
  font-size: 15px;
}

.nav a {
  transition: color .2s ease;
}

.nav a:hover {
  color: #fff;
}

.header-call {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, .1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 76px;
}

.hero-bg {
  position: absolute;
  right: -180px;
  top: -240px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 170, 69, .36), transparent 68%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .72fr);
  align-items: center;
  gap: 42px;
}

.eyebrow, .section-kicker, .card-label {
  margin: 0 0 14px;
  color: var(--green-3);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(52px, 8vw, 94px);
  line-height: .92;
  letter-spacing: -.07em;
}

.lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: #3f514b;
  font-size: clamp(19px, 2.3vw, 26px);
  line-height: 1.42;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-3));
  box-shadow: 0 16px 35px rgba(13, 63, 52, .22);
}

.btn-secondary {
  color: var(--green);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .54);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: rgba(255, 255, 255, .5);
  font-size: 14px;
  font-weight: 700;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 250, 240, .98), rgba(255, 255, 255, .78));
  box-shadow: var(--shadow);
}

.card-pattern {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 210px;
  height: 210px;
  opacity: .18;
  background: conic-gradient(from 45deg, var(--green), var(--gold), var(--green));
  clip-path: polygon(50% 0, 60% 35%, 100% 50%, 60% 65%, 50% 100%, 40% 65%, 0 50%, 40% 35%);
}

.hero-card h2 {
  position: relative;
  margin: 0 0 24px;
  color: var(--green);
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -.04em;
}

.hero-card dl {
  position: relative;
  display: grid;
  gap: 16px;
  margin: 0;
}

.hero-card dl div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-card dt {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.section {
  position: relative;
  padding: 74px 0;
}

.two-column {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 56px;
  align-items: start;
}

.section h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.text-block {
  padding: 34px;
  border: 1px solid rgba(13, 63, 52, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .55);
}

.text-block p {
  margin: 0;
  color: #44554f;
  font-size: 18px;
  line-height: 1.7;
}

.text-block p + p {
  margin-top: 16px;
}

.services {
  padding-top: 42px;
}

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

.section-heading h2 {
  max-width: 720px;
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(13, 63, 52, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 50px rgba(13, 63, 52, .06);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 18px;
  color: var(--green);
  background: linear-gradient(135deg, rgba(216, 170, 69, .34), rgba(255, 255, 255, .45));
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 25px;
  letter-spacing: -.03em;
}

.service-card p {
  margin: 0;
  color: #53605c;
  font-size: 16px;
  line-height: 1.62;
}

.contacts {
  padding-bottom: 94px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 20px;
}

.contact-panel {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.requisites {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.req-row {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(13, 63, 52, .1);
  border-radius: 20px;
  background: #fff;
}

.req-row span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.req-row strong {
  color: var(--green);
  font-size: 16px;
  line-height: 1.4;
  word-break: break-word;
}

.contact-cta {
  padding: 36px;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(216, 170, 69, .38), transparent 44%),
    linear-gradient(155deg, var(--green), #082a23);
  box-shadow: var(--shadow);
}

.contact-cta p {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-cta h2 {
  margin-bottom: 26px;
  color: #fff;
  font-size: 36px;
}

.contact-cta .btn {
  width: 100%;
  margin-top: 12px;
}

.btn-light {
  color: var(--green);
  background: #fff;
}

.btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .1);
}

.footer {
  position: relative;
  border-top: 1px solid rgba(13, 63, 52, .12);
  background: rgba(255, 255, 255, .45);
}

.footer-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #607069;
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--green);
  font-weight: 800;
}

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

  .hero {
    padding-top: 58px;
  }

  .hero-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .req-row {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-title {
    font-size: 17px;
  }

  .brand-subtitle {
    font-size: 12px;
  }

  .header-call {
    display: none;
  }

  .hero h1 {
    font-size: 56px;
  }

  .lead {
    font-size: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .text-block,
  .contact-panel,
  .contact-cta {
    padding: 24px;
    border-radius: 24px;
  }

  .section {
    padding: 52px 0;
  }

  .contacts {
    padding-bottom: 62px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
  }
}
