:root {
  --brand: #0a5c52;
  --brand-deep: #063f39;
  --brand-soft: #e6f3f0;
  --accent: #d97706;
  --accent-deep: #b45309;
  --ink: #1c2b28;
  --muted: #5b6d68;
  --line: rgba(10, 92, 82, 0.12);
  --paper: #f3f7f5;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 63, 57, 0.12);
  --radius: 18px;
  --font-display: "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(10, 92, 82, 0.14), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(217, 119, 6, 0.10), transparent 55%),
    linear-gradient(180deg, #eef5f2 0%, var(--paper) 40%, #e9f1ee 100%);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(243, 247, 245, 0.86);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(145deg, var(--brand), #128a7a);
  color: #fff; display: grid; place-items: center;
  font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 8px 20px rgba(10, 92, 82, 0.28);
  overflow: hidden; padding: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text strong { display: block; font-size: 1.2rem; letter-spacing: .04em; }
.brand-text span { display: block; font-size: .72rem; color: var(--muted); font-family: var(--font-body); }
.nav-links {
  display: flex; gap: 1.1rem; flex-wrap: wrap; align-items: center;
  margin-left: auto; margin-right: .4rem;
}
.nav-links a { color: var(--muted); font-size: .95rem; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--brand); color: #fff !important;
  padding: .55rem 1rem; border-radius: 999px; font-size: .9rem;
}
.nav-toggle { display: none; border: 0; background: transparent; font-size: 1.4rem; }

.hero {
  position: relative; min-height: calc(100vh - 72px);
  display: grid; align-items: stretch;
  overflow: hidden;
}
.hero-track { position: relative; width: 100%; min-height: calc(100vh - 72px); }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity .7s ease, transform .7s ease;
  transform: scale(1.02);
  display: grid; align-items: center;
  background:
    linear-gradient(105deg, rgba(6, 63, 57, 0.92) 0%, rgba(6, 63, 57, 0.72) 42%, rgba(6, 63, 57, 0.35) 100%),
    var(--hero-image, none),
    radial-gradient(circle at 80% 30%, rgba(217, 119, 6, 0.25), transparent 40%),
    linear-gradient(160deg, #0a5c52, #0d7a6b 45%, #145c4f);
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; transform: scale(1); }
.hero-slide.theme-life {
  background:
    linear-gradient(105deg, rgba(20, 70, 62, 0.9) 0%, rgba(20, 70, 62, 0.55) 50%, rgba(20, 70, 62, 0.2) 100%),
    var(--hero-image, none),
    linear-gradient(140deg, #146456, #1f8a72 50%, #2a6f5e);
  background-size: cover;
  background-position: center;
}
.hero-slide.theme-biz {
  background:
    linear-gradient(105deg, rgba(8, 55, 50, 0.92) 0%, rgba(8, 55, 50, 0.6) 48%, rgba(180, 83, 9, 0.25) 100%),
    var(--hero-image, none),
    linear-gradient(145deg, #08443d, #0d6b5d 40%, #9a5b1a);
  background-size: cover;
  background-position: center;
}
.hero-content { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; padding: 4rem 0 5rem; max-width: 720px; }
.hero-kicker {
  display: inline-block; margin-bottom: 1rem;
  font-size: .85rem; letter-spacing: .18em; text-transform: uppercase;
  opacity: .85;
}
.hero h1 {
  margin: 0 0 1rem; font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.25; font-weight: 700;
}
.hero p { margin: 0 0 1.8rem; font-size: 1.05rem; opacity: .92; max-width: 36em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.35rem; border-radius: 999px; border: 1px solid transparent;
  font-size: .95rem; cursor: pointer; transition: transform .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-solid { background: var(--brand); color: #fff; }
.btn-outline { background: transparent; color: var(--brand); border-color: rgba(10,92,82,.35); }
.hero-dots {
  position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 2;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.4); cursor: pointer;
}
.hero-dots button.is-active { background: #fff; width: 28px; border-radius: 999px; }

.section { padding: 5rem 0; }
.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head .eyebrow {
  color: var(--brand); font-size: .85rem; letter-spacing: .12em; margin-bottom: .6rem;
}
.section-head h2 {
  margin: 0 0 .8rem; font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.3;
}
.section-head p { margin: 0; color: var(--muted); }

.intro-block {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center;
}
.intro-visual {
  min-height: 360px; border-radius: 28px; position: relative; overflow: hidden;
  background:
    linear-gradient(160deg, rgba(10,92,82,.88), rgba(10,92,82,.45)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px),
    #0a5c52;
  color: #fff; padding: 2rem;
  box-shadow: var(--shadow);
}
.intro-visual h3 { font-family: var(--font-display); font-size: 1.8rem; margin: 0 0 1rem; }
.intro-visual ul { margin: 0; padding-left: 1.1rem; }
.intro-visual li { margin-bottom: .55rem; }
.intro-copy p { color: var(--muted); font-size: 1.02rem; }

.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.service-cover {
  height: 132px;
  margin: -1.5rem -1.35rem 1rem;
  border-radius: 14px 14px 0 0;
  background: #d7e8e3;
  overflow: hidden;
}
.service-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-item {
  display: block;
  color: inherit;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
a.service-item, a.guarantee-item { text-decoration: none; }
a.guarantee-item { display: block; color: inherit; }
.service-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 1rem;
  display: grid; place-items: center; font-size: 1.3rem;
  background: var(--brand-soft); color: var(--brand);
}
.service-item .tag {
  display: inline-block; font-size: .75rem; color: var(--accent-deep);
  background: rgba(217,119,6,.12); padding: .2rem .55rem; border-radius: 999px; margin-bottom: .6rem;
}
.service-item h3 { margin: 0 0 .5rem; font-size: 1.15rem; font-family: var(--font-display); }
.service-item p { margin: 0; color: var(--muted); font-size: .95rem; }

.adv-list { display: grid; gap: 1rem; }
.adv-item {
  display: grid; grid-template-columns: 140px 64px 1fr; gap: 1rem; align-items: center;
  padding: 1rem 1.2rem; border-left: 3px solid var(--brand);
  background: rgba(255,255,255,.65);
  border-radius: 0 16px 16px 0;
}
.adv-cover {
  height: 96px; border-radius: 12px;
  background: center/cover no-repeat #d7e8e3;
}
.adv-no {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--brand); line-height: 1;
}
.adv-item h3 { margin: 0 0 .35rem; font-size: 1.1rem; }
.adv-item p { margin: 0; color: var(--muted); }

.model-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem;
}
.model-card {
  padding: 0; overflow: hidden; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(230,243,240,.7));
  border: 1px solid var(--line);
}
.model-cover {
  height: 140px;
  background: center/cover no-repeat #d7e8e3;
}
.model-card .model-body { padding: 1.2rem 1.4rem 1.4rem; }
.model-card h3 { margin: 0 0 .6rem; font-family: var(--font-display); }
.model-card p { margin: 0; color: var(--muted); }
.model-card.highlight {
  background: linear-gradient(145deg, var(--brand-deep), var(--brand));
  color: #fff; border: 0;
}
.model-card.highlight .model-cover {
  opacity: .92;
}
.model-card.highlight p { color: rgba(255,255,255,.88); }

.form-panel {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: .35rem; font-size: .9rem; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .9rem; border-radius: 12px;
  border: 1px solid rgba(10,92,82,.18); background: #fff; font: inherit;
}
.field textarea { min-height: 110px; resize: vertical; }
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    linear-gradient(120deg, rgba(10,92,82,.1), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.35), transparent);
}
.page-hero.has-image {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 5rem 0 3.2rem;
  background: #063f39;
}
.page-hero.has-image .page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(6,63,57,.88) 0%, rgba(6,63,57,.55) 55%, rgba(6,63,57,.28) 100%);
  pointer-events: none;
}
.page-hero.has-image > .container {
  position: relative;
  z-index: 2;
}
/* Fallback when only --page-image is set (legacy) */
.page-hero.has-image.legacy-bg {
  background:
    linear-gradient(105deg, rgba(6,63,57,.88) 0%, rgba(6,63,57,.55) 55%, rgba(6,63,57,.28) 100%),
    var(--page-image) center/cover no-repeat;
}
.page-hero.has-image.legacy-bg::after { display: none; }
.page-hero.has-image .eyebrow { color: rgba(255,255,255,.85) !important; }
.page-hero.has-image p { color: rgba(255,255,255,.88); }
.page-hero h1 {
  margin: 0 0 .8rem; font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.page-hero p { margin: 0; color: var(--muted); max-width: 40em; }

.policy-group { margin-bottom: 2rem; }
.policy-group h3 {
  margin: 0 0 .3rem; font-family: var(--font-display); font-size: 1.35rem;
}
.policy-group .sub { color: var(--muted); margin-bottom: 1rem; }
.policy-items { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.policy-items li {
  display: grid; grid-template-columns: 42px 1fr; gap: .8rem;
  padding: 1rem 1.1rem; background: rgba(255,255,255,.7); border-radius: 14px;
  border: 1px solid var(--line);
}
.policy-items .no {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; background: var(--brand); color: #fff; font-weight: 700;
}

.steps {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: .6rem;
}
.step {
  text-align: center; padding: 1rem .5rem; border-radius: 14px;
  background: rgba(255,255,255,.75); border: 1px solid var(--line);
  font-size: .88rem;
}
.step .n {
  width: 28px; height: 28px; margin: 0 auto .5rem; border-radius: 50%;
  display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); font-weight: 700;
}

.compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.compare-card { padding: 1.5rem; border-radius: var(--radius); overflow: hidden; }
.compare-card.bad { background: #f4ece8; }
.compare-card.good { background: var(--brand-soft); }
.compare-card h3 { margin-top: 0; font-family: var(--font-display); }

.guarantee-flow {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem;
}
.guarantee-flow span {
  padding: .55rem 1rem; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); font-size: .9rem;
}
.guarantee-list { display: grid; gap: 1rem; }
.guarantee-item {
  padding: 0; overflow: hidden; border-radius: var(--radius);
  background: rgba(255,255,255,.75); border: 1px solid var(--line);
}
.guarantee-cover {
  height: 140px;
  background: #d7e8e3;
  overflow: hidden;
}
.guarantee-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.guarantee-item .guarantee-body { padding: 1.1rem 1.2rem 1.3rem; }
.guarantee-item h3 { margin: 0 0 .4rem; font-family: var(--font-display); }
.guarantee-item .sum { color: var(--brand); font-size: .9rem; margin-bottom: .5rem; }
.guarantee-item p { margin: 0; color: var(--muted); }

.about-grid, .value-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.about-card, .value-card {
  padding: 1.5rem; border-radius: var(--radius);
  background: rgba(255,255,255,.75); border: 1px solid var(--line);
}
.about-card h3, .value-card h3 { margin-top: 0; font-family: var(--font-display); }
.about-card p, .value-card p { color: var(--muted); margin-bottom: 0; }
.coop-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem;
}
.coop-step {
  padding: 1rem; border-radius: 14px; background: #fff; border: 1px solid var(--line);
}
.coop-step .n { color: var(--brand); font-family: var(--font-display); font-size: 1.3rem; }

.news-tabs { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.news-tabs a {
  padding: .45rem 1rem; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--muted); font-size: .9rem;
}
.news-tabs a.active { background: var(--brand); color: #fff; border-color: var(--brand); }
.news-list { display: grid; gap: 1rem; }
.news-item {
  display: grid; grid-template-columns: 148px 1fr; gap: 1rem;
  padding: 1rem 1.15rem; background: rgba(255,255,255,.75);
  border-radius: 16px; border: 1px solid var(--line);
  transition: transform .2s;
  align-items: stretch;
}
.news-item:hover { transform: translateX(4px); }
.news-cover {
  border-radius: 12px;
  background: #d7e8e3;
  min-height: 96px;
  overflow: hidden;
}
.news-cover img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
  display: block;
}
.news-date { color: var(--brand); font-family: var(--font-display); }
.news-item h3 { margin: 0 0 .4rem; font-size: 1.1rem; }
.news-item p { margin: 0; color: var(--muted); font-size: .95rem; }
.news-meta { margin-top: .5rem; font-size: .8rem; color: var(--muted); }
.article { max-width: 760px; }
.article .meta { color: var(--muted); margin-bottom: 1.5rem; }
.article-cover {
  border-radius: 18px;
  margin-bottom: 1.5rem;
  background: #d7e8e3;
  overflow: hidden;
}
.article-cover img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  align-items: center;
  margin: 0 0 1rem;
  font-size: .88rem;
  color: var(--muted);
}
.crumbs a { color: var(--brand); }
.crumbs .sep { opacity: .45; }
.crumbs .current { color: var(--ink); font-weight: 600; }
.article .body { font-size: 1.05rem; color: #314541; }
.rich-text, .article .body.rich-text {
  line-height: 1.75;
  color: #314541;
}
.rich-text p, .faq-answer p, .rich-snippet p { margin: 0 0 .75em; }
.rich-text p:last-child, .faq-answer p:last-child, .rich-snippet p:last-child { margin-bottom: 0; }
.rich-text ul, .rich-text ol, .faq-answer ul, .faq-answer ol {
  margin: .5em 0 .9em; padding-left: 1.35em;
}
.rich-text img, .article .body img {
  max-width: 100%; height: auto; border-radius: 8px; margin: .8rem 0;
}
.rich-text a, .faq-answer a { color: var(--brand); text-decoration: underline; }
.rich-snippet { color: var(--muted); font-size: inherit; line-height: 1.55; }
.adv-item .rich-snippet { margin: 0; }
.faq-answer { margin: .8rem 0 0; color: var(--muted); }

.site-footer {
  margin-top: 3rem; padding: 3rem 0 2rem;
  background: linear-gradient(180deg, #0a4d45, #06332f);
  color: rgba(255,255,255,.88);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem;
}
.site-footer h4 { margin: 0 0 1rem; font-family: var(--font-display); color: #fff; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #fff; }
.footer-note {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.2rem;
  font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.8;
}
.footer-copy { margin-top: 1rem; font-size: .85rem; opacity: .65; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: #fff; padding: .5rem 1rem; z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }
.nav-tools { display: flex; align-items: center; gap: .4rem; }
.font-btn {
  border: 1px solid var(--line); background: #fff; border-radius: 8px;
  width: 36px; height: 36px; cursor: pointer; color: var(--brand); font-weight: 700;
}
.font-btn[data-font="large"] { font-size: 1.05rem; }
body.font-large { font-size: 18px; }
body.font-large .hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
body.font-large .btn, body.font-large input, body.font-large select, body.font-large textarea {
  font-size: 1.05rem;
}

.news-search {
  display: flex; gap: .6rem; margin-bottom: 1.2rem; flex-wrap: wrap;
}
.news-search input {
  flex: 1; min-width: 220px; padding: .8rem 1rem; border-radius: 12px;
  border: 1px solid rgba(10,92,82,.18); font: inherit;
}
.empty-state {
  padding: 2.5rem 1.5rem; text-align: center; color: var(--muted);
  background: rgba(255,255,255,.7); border-radius: var(--radius); border: 1px dashed var(--line);
}
.pager { margin-top: 1.5rem; }
.pager ul { display: flex; gap: .4rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.pager li a, .pager li span {
  display: inline-flex; min-width: 36px; height: 36px; align-items: center; justify-content: center;
  padding: 0 .6rem; border-radius: 8px; border: 1px solid var(--line); background: #fff; color: var(--muted);
}
.pager li.active span, .pager li a:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.float-bar {
  position: fixed; right: 16px; bottom: 16px; z-index: 40;
  display: flex; flex-direction: column; gap: .45rem;
}
.float-bar a {
  background: var(--brand); color: #fff; padding: .7rem 1rem; border-radius: 999px;
  box-shadow: 0 10px 24px rgba(6,63,57,.25); font-size: .88rem; text-align: center;
  min-width: 108px;
}
.float-bar a:hover { background: var(--brand-deep); }

.faq-list { display: grid; gap: .8rem; }
.faq-item {
  background: rgba(255,255,255,.78); border: 1px solid var(--line);
  border-radius: 16px; padding: 1rem 1.2rem;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; font-family: var(--font-display);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: .8rem 0 0; color: var(--muted); }

.case-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.2rem;
}
.case-card {
  padding: 1.3rem; border-radius: var(--radius);
  background: rgba(255,255,255,.75); border: 1px solid var(--line);
}
.case-card h3 { margin: 0 0 .5rem; font-family: var(--font-display); }
.case-card p { margin: 0; color: var(--muted); }

.timeline { display: grid; gap: .8rem; }
.timeline-item {
  display: grid; grid-template-columns: 110px 1fr; gap: 1rem;
  padding: 1.1rem 1.2rem; border-radius: 16px;
  background: rgba(255,255,255,.75); border: 1px solid var(--line);
  transition: transform .2s;
}
.timeline-item:hover { transform: translateX(4px); }
.timeline-item .time { color: var(--brand); font-family: var(--font-display); }
.timeline-item h3 { margin: 0 0 .35rem; font-size: 1.05rem; }
.timeline-item p { margin: 0; color: var(--muted); font-size: .95rem; }

.points-layout {
  display: grid; grid-template-columns: 1.3fr .9fr; gap: 1.2rem; align-items: start;
}
.points-map-wrap {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); background: #fff; min-height: 480px;
}
#pointsMap { width: 100%; height: 520px; }
.points-list { display: grid; gap: .8rem; max-height: 520px; overflow: auto; }
.point-card {
  padding: 0; overflow: hidden; border-radius: 14px; background: rgba(255,255,255,.8);
  border: 1px solid var(--line); cursor: pointer; transition: .2s;
}
.point-cover {
  height: 110px;
  background: #d7e8e3;
  overflow: hidden;
}
.point-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.point-card .point-body { padding: .9rem 1rem 1rem; }
.point-card:hover, .point-card.active {
  border-color: rgba(10,92,82,.35); box-shadow: var(--shadow); transform: translateY(-2px);
}
.point-type {
  display: inline-block; font-size: .75rem; color: var(--accent-deep);
  background: rgba(217,119,6,.12); padding: .15rem .5rem; border-radius: 999px; margin-bottom: .45rem;
}
.point-card h3 { margin: 0 0 .35rem; font-size: 1.05rem; font-family: var(--font-display); }
.point-card p { margin: 0 0 .25rem; }
.point-card .muted { color: var(--muted); font-size: .9rem; }

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

.toast {
  position: fixed; top: 24px; left: 50%; transform: translateX(-50%) translateY(-20px);
  background: var(--brand-deep); color: #fff; padding: .8rem 1.2rem; border-radius: 999px;
  opacity: 0; pointer-events: none; transition: .25s; z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* GEO region landings */
.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.geo-card {
  display: block;
  padding: 1.35rem 1.3rem 1.2rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  color: inherit;
  text-decoration: none;
}
.geo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(6, 63, 57, .12);
}
.geo-card-kicker {
  color: var(--brand);
  font-size: .78rem;
  letter-spacing: .08em;
  margin-bottom: .55rem;
  font-weight: 600;
}
.geo-card h2 {
  margin: 0 0 .55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}
.geo-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.geo-card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--brand);
  font-weight: 600;
  font-size: .92rem;
}
.geo-card-points {
  list-style: none;
  margin: .75rem 0 0;
  padding: 0;
  display: grid;
  gap: .35rem;
}
.geo-card-points li {
  position: relative;
  padding-left: .95rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.4;
}
.geo-card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: var(--brand);
}
.geo-links {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.geo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.geo-chip {
  display: inline-flex;
  align-items: center;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
}
.geo-chip:hover,
.geo-chip.active {
  background: var(--brand-soft, #e4f2ef);
  color: var(--brand);
  border-color: rgba(10, 92, 82, .25);
}
.geo-banner {
  margin-bottom: 1rem;
  padding: .85rem 1rem;
  border-radius: 14px;
  background: var(--brand-soft, #e4f2ef);
  border: 1px solid rgba(10, 92, 82, .12);
  color: var(--brand-deep, #063f39);
  font-size: .92rem;
}
.geo-banner a { color: var(--brand); font-weight: 600; }
.geo-highlights {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.geo-highlights li {
  position: relative;
  padding: .85rem 1rem .85rem 2.4rem;
  background: linear-gradient(135deg, rgba(10,92,82,.06), rgba(10,92,82,.02));
  border-left: 3px solid var(--brand);
  color: var(--ink, #1a2b28);
  line-height: 1.5;
}
.geo-highlights li::before {
  content: "";
  position: absolute;
  left: .9rem;
  top: 1.15rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--brand);
}

@media (max-width: 960px) {
  .geo-grid { grid-template-columns: 1fr; }
  .intro-block, .model-grid, .compare, .about-grid, .value-grid, .form-grid, .footer-grid,
  .section .container[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .adv-item { grid-template-columns: 1fr; }
  .adv-cover { height: 140px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .coop-steps { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(243,247,245,.98); padding: 1rem 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: inline-block; }
  .news-item { grid-template-columns: 1fr; }
  .news-cover { min-height: 140px; }
  .case-highlights { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .points-layout { grid-template-columns: 1fr; }
  #pointsMap { height: 360px; }
  .points-list { max-height: none; }
  .float-bar { right: 10px; bottom: 10px; }
  .float-bar a { min-width: 96px; font-size: .82rem; padding: .6rem .85rem; }
}
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 3rem 0 4.5rem; }
  .float-bar { flex-direction: row; left: 10px; right: 10px; justify-content: space-between; }
  .float-bar a { flex: 1; min-width: 0; padding: .65rem .3rem; font-size: .75rem; }
}
