:root {
  --primary: #0f5a43;
  --primary-dark: #093d2e;
  --primary-soft: #eaf6f1;
  --secondary: #c58b2b;
  --secondary-soft: #fff7e7;
  --ink: #17221e;
  --muted: #66756f;
  --line: #dfe8e4;
  --surface: #ffffff;
  --surface-soft: #f7faf8;
  --shadow: 0 20px 55px rgba(22, 61, 47, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(197, 139, 43, 0.10), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(15, 90, 67, 0.10), transparent 30%),
    #fbfdfc;
  line-height: 1.6;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 253, 252, 0.88);
  border-bottom: 1px solid rgba(223, 232, 228, 0.85);
}

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

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

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 24px rgba(15, 90, 67, 0.24);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-text span {
  color: var(--secondary);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  color: #42504a;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-soft);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.hero {
  padding: 76px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid #d7e8e1;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(234, 246, 241, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 5px rgba(197, 139, 43, 0.12);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: var(--primary);
}

.hero-copy {
  max-width: 680px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 28px rgba(15, 90, 67, 0.22);
}

.btn-secondary {
  color: var(--primary);
  background: #fff;
  border-color: var(--line);
}

.hero-panel {
  position: relative;
  min-height: 470px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(223, 232, 228, 0.95);
  border-radius: 32px;
  background: linear-gradient(155deg, rgba(255,255,255,0.97), rgba(239,247,243,0.94));
  box-shadow: var(--shadow);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-panel::before {
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  background: rgba(197, 139, 43, 0.16);
}

.hero-panel::after {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -110px;
  background: rgba(15, 90, 67, 0.10);
}

.map-preview {
  position: relative;
  z-index: 1;
  min-height: 315px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 6px;
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.map-cell {
  display: grid;
  place-items: center;
  min-height: 46px;
  color: #486158;
  border: 1px solid #bcd3ca;
  border-radius: 8px;
  background: linear-gradient(150deg, #f8fbfa, #eef6f2);
  font-size: 0.76rem;
  font-weight: 700;
}

.map-cell.highlight {
  color: #fff;
  border-color: var(--primary);
  background: linear-gradient(145deg, var(--primary), #16775a);
}

.panel-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.mini-stat {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.mini-stat strong {
  display: block;
  color: var(--primary-dark);
  font-size: 1.1rem;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.76rem;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(239, 247, 243, 0.68), rgba(255,255,255,0));
}

.section-heading {
  max-width: 710px;
  margin-bottom: 32px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin-top: 14px;
  color: var(--muted);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tool-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 10px 35px rgba(16, 61, 45, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.tool-card:hover {
  transform: translateY(-7px);
  border-color: #bfd8cf;
  box-shadow: 0 24px 48px rgba(16, 61, 45, 0.13);
}

.tool-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary);
  background: var(--primary-soft);
}

.tool-icon svg {
  width: 29px;
  height: 29px;
}

.tool-card:nth-child(2) .tool-icon {
  color: #9a6414;
  background: var(--secondary-soft);
}

.tool-card:nth-child(3) .tool-icon {
  color: #4056a1;
  background: #edf0ff;
}

.tool-card h3 {
  margin-top: 22px;
  font-size: 1.42rem;
}

.tool-card p {
  margin-top: 10px;
  color: var(--muted);
}

.tool-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--primary);
  font-weight: 800;
}

.tool-card .card-link span {
  transition: transform 0.2s ease;
}

.tool-card:hover .card-link span {
  transform: translateX(4px);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(20, 60, 45, 0.08);
}

.info-item {
  padding: 26px;
}

.info-item + .info-item {
  border-left: 1px solid var(--line);
}

.info-item strong {
  display: block;
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.info-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta {
  padding: 78px 0 92px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 46px;
  color: #fff;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 24px 60px rgba(9, 61, 46, 0.24);
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -100px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-copy h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.cta-copy p {
  max-width: 650px;
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
}

.cta .btn-secondary {
  border-color: rgba(255,255,255,0.28);
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.74);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.page-hero {
  padding: 70px 0 44px;
  text-align: center;
}

.page-hero h1 {
  margin-top: 10px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.placeholder-wrap {
  padding: 30px 0 90px;
}

.placeholder-card {
  max-width: 850px;
  margin-inline: auto;
  padding: 44px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
}

.placeholder-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 24px;
  color: var(--primary);
  background: var(--primary-soft);
}

.placeholder-icon svg {
  width: 42px;
  height: 42px;
}

.placeholder-card h2 {
  font-size: 2rem;
}

.placeholder-card p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
}

.placeholder-card .hero-actions {
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding-bottom: 90px;
}

.contact-card,
.contact-form {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(18, 61, 45, 0.08);
}

.contact-card h2,
.contact-form h2 {
  font-size: 1.7rem;
}

.contact-card p,
.contact-form p {
  margin-top: 10px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list a,
.contact-list div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface-soft);
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #42504a;
  font-size: 0.86rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 13px 14px;
  outline: none;
  background: #fbfdfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: #81b19f;
  box-shadow: 0 0 0 4px rgba(15, 90, 67, 0.08);
}

.notice {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  border: 1px solid #cfe5dc;
}

@media (max-width: 920px) {
  .menu-button {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

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

  .hero-panel {
    min-height: auto;
  }

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

  .tool-card {
    min-height: 280px;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 15vw, 4.2rem);
  }

  .hero-panel {
    padding: 15px;
    border-radius: 24px;
  }

  .map-preview {
    padding: 12px;
    gap: 4px;
  }

  .map-cell {
    min-height: 39px;
    font-size: 0.66rem;
  }

  .panel-footer,
  .info-strip,
  .form-row {
    grid-template-columns: 1fr;
  }

  .info-item + .info-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 60px 0;
  }

  .cta-box,
  .placeholder-card,
  .contact-card,
  .contact-form {
    padding: 26px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
