:root {
  --bg: #f7faf8;
  --surface: #ffffff;
  --ink: #17352d;
  --muted: #4e6d62;
  --line: #dde8e3;
  --primary: #1f6b53;
  --primary-dark: #123b32;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 30px;
}

.brand-mark {
  width: 132px;
  height: auto;
  display: block;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-nav {
  display: flex;
  gap: 24px;
  color: #355d50;
  font-size: 15px;
}

.main-nav a.active {
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 3px;
}

.hotline {
  background: #e9f4ee;
  color: var(--primary);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #c6d8d0;
  background: #ffffff;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  color: #2d564a;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  right: 0;
  top: 50px;
  width: min(76vw, 280px);
  background: #ffffff;
  border: 1px solid #d9e7e1;
  border-radius: 12px;
  padding: 10px;
  display: grid;
  gap: 2px;
  box-shadow: 0 14px 36px rgba(14, 42, 35, 0.15);
  z-index: 20;
}

.mobile-menu nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #23493d;
  font-size: 15px;
}

.mobile-menu nav a:hover {
  background: #f0f7f3;
}

.hero {
  background: linear-gradient(180deg, #f7faf8 0%, #f2f8f4 100%);
  padding: 56px 0;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

h1 {
  font-size: clamp(34px, 5.2vw, 52px);
  line-height: 1.2;
  margin: 12px 0 14px;
}

h2 {
  font-size: clamp(28px, 4.2vw, 38px);
  line-height: 1.25;
  margin: 0 0 12px;
}

h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

p {
  margin: 0;
}

.lead {
  font-size: clamp(16px, 2.1vw, 20px);
  color: #47675d;
}

.sub {
  color: var(--muted);
  margin-bottom: 20px;
}

.pill {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: #e8f2ff;
  color: #2e5fa8;
  font-size: 13px;
  font-weight: 500;
}

.pill.green {
  background: #e9f4ee;
  color: #2f6a56;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin: 22px 0 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 15px;
}

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

.btn-ghost {
  background: #fff;
  border: 1px solid #c6d8d0;
  color: #2d564a;
}

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

.stats {
  font-size: 14px;
  color: #5a7a6e;
}

.hero-image,
.fast-image {
  min-height: 340px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
}

.hero-image {
  background-image: url("../images/generated-1771837514002.png");
}

.section {
  padding: 44px 0;
}

.section.soft {
  background: #f7faf8;
}

.cards {
  display: grid;
  gap: 14px;
}

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

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}

.tint-1 { background: #eef7f2; }
.tint-2 { background: #eef4ff; }
.tint-3 { background: #fff5ed; }
.tint-4 { background: #f2f4f7; }

.dark {
  background: var(--primary-dark);
  color: #fff;
}

.eyebrow {
  color: #9fd8c4;
  font-weight: 500;
  margin-bottom: 8px;
}

.dark p {
  color: #cce7dd;
}

.checklist {
  margin: 14px 0 0;
  padding-left: 20px;
}

.checklist li {
  margin-bottom: 6px;
}

.fast-image {
  background-image: url("../images/generated-1771837521958.png");
}

.map-block {
  background: #f3f8f6;
}

.dark-list {
  color: #285345;
}

.map-visual {
  min-height: 300px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background-image: url("../images/generated-1771837530517.png");
  background-size: cover;
  background-position: center;
}

.pin {
  display: none;
}

.p1 { top: 30%; left: 26%; }
.p2 { top: 52%; left: 58%; }
.p3 { top: 35%; left: 74%; }
.p4 { top: 70%; left: 40%; }

.cta {
  padding: 28px 0;
  background: #1a4f3e;
  color: #fff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(24px, 3.6vw, 34px);
}

.site-footer {
  background: #0f2c24;
  color: #d4e8e1;
  padding: 28px 0 18px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 8px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: #b8d6cc;
}

.site-footer small {
  color: #9fc4b7;
}

@media (max-width: 1000px) {
  .main-nav,
  .hotline {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .brand-mark {
    width: 110px;
  }

  .hero-grid,
  .split,
  .cards.four,
  .cards.three,
  .cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-image,
  .fast-image,
  .map-visual {
    min-height: 240px;
  }
}

.sub-hero {
  padding: 36px 0 22px;
  background: #f1f8f4;
  border-bottom: 1px solid var(--line);
}

.sub-hero.visual {
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: none;
}

.sub-hero.visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 44, 36, 0.84), rgba(15, 44, 36, 0.46));
}

.sub-hero.visual .container {
  position: relative;
  z-index: 1;
}

.sub-hero.visual .sub {
  color: #d3ece3;
}

.breadcrumb {
  margin: 0 0 10px;
  color: #5d7d72;
  font-size: 14px;
}

.sub-hero.visual .breadcrumb {
  color: #b8d6cc;
}

.hero-prevention { background-image: url("../images/generated-1771837514002.png"); }
.hero-fast { background-image: url("../images/generated-1771837521958.png"); }
.hero-rehab { background-image: url("../images/generated-1771837514002.png"); }
.hero-family { background-image: url("../images/generated-1771837514002.png"); }
.hero-resources { background-image: url("../images/generated-1771837530517.png"); }
.hero-risk { background-image: url("../images/generated-1771837530517.png"); }
.hero-map { background-image: url("../images/generated-1771837530517.png"); }
.hero-legal { background-image: url("../images/generated-1771837521958.png"); }
.hero-contact { background-image: url("../images/generated-1771837514002.png"); }

.sub-hero h1 {
  margin: 10px 0 8px;
  font-size: clamp(30px, 5vw, 44px);
}

.sub-main {
  padding: 30px 0 50px;
}

.sub-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

.list-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.list-card h3 {
  font-size: 20px;
}

.list-card ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

.sub-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .sub-grid {
    grid-template-columns: 1fr;
  }
}
