@charset "utf-8";
/* ==========================================================================
   拷贝漫画 · kaobeimanga.com.cn
   Shared stylesheet for all pages. All assets are local (no CDN).
   ========================================================================== */

@font-face {
  font-family: 'Poppins Local';
  src: url('../fonts/poppins-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins Local';
  src: url('../fonts/poppins-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins Local';
  src: url('../fonts/poppins-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Baloo Local';
  src: url('../fonts/baloo2-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --ink: #16241e;
  --ink-2: #34443c;
  --muted: #6e7c75;
  --line: #e3eae5;
  --line-2: #eff4f0;
  --bg: #fbfbf8;
  --card: #ffffff;
  --green: #2e9e5b;
  --green-d: #217f47;
  --green-l: #eaf6ef;
  --teal: #17aca6;
  --teal-l: #e6f6f5;
  --sky: #3ba7e8;
  --sky-l: #e9f5fd;
  --orange: #f58a2e;
  --orange-l: #fef2e5;
  --radius: 16px;
  --radius-s: 11px;
  --shadow: 0 1px 2px rgba(22, 36, 30, .04), 0 10px 30px rgba(22, 36, 30, .06);
  --shadow-hi: 0 2px 4px rgba(22, 36, 30, .05), 0 18px 44px rgba(46, 158, 91, .14);
  --font: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans CJK SC", sans-serif;
  --font-en: "Poppins Local", "Poppins", var(--font);
  --font-brand: "Baloo Local", "Poppins Local", var(--font);
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; border: 0; }
svg { display: block; }
a { color: var(--green-d); text-decoration: none; }
a:hover { color: var(--green); }
h1, h2, h3, h4 { margin: 0; line-height: 1.35; font-weight: 700; color: var(--ink); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 99;
  background: var(--green); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 10px;
  transition: top .2s;
}
.skip-link:focus { top: 0; color: #fff; }

/* ---------------- header ---------------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 251, 248, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.head-in { display: flex; align-items: center; gap: 16px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { width: 38px; height: 38px; border-radius: 11px; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font); font-size: 18px; font-weight: 700; letter-spacing: .06em; color: var(--ink);
}
.brand-en {
  font-family: var(--font-en); font-size: 9px; letter-spacing: .22em;
  color: var(--green); font-weight: 600; text-transform: uppercase;
}
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block; padding: 9px 14px; border-radius: 10px;
  font-size: 15px; color: var(--ink-2); font-weight: 500;
}
.main-nav a:hover { background: var(--green-l); color: var(--green-d); }
.main-nav a[aria-current="page"] { background: var(--green-l); color: var(--green-d); font-weight: 700; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px; border: 0; cursor: pointer;
  font-family: var(--font); font-size: 15px; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff; box-shadow: 0 6px 18px rgba(46, 158, 91, .28);
  transition: transform .16s, box-shadow .16s;
}
.btn:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(46, 158, 91, .34); }
.btn-ghost {
  background: #fff; color: var(--green-d); border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover { color: var(--green-d); background: var(--green-l); box-shadow: none; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 15px 34px; font-size: 16.5px; }
.btn-ico { width: 17px; height: 17px; flex: 0 0 auto; }

.head-cta { flex: 0 0 auto; }
.nav-toggle {
  display: none; width: 42px; height: 42px; margin-left: auto;
  border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.nav-toggle i { display: block; width: 17px; height: 2px; background: var(--ink-2); border-radius: 2px; }

.drawer {
  display: none; border-top: 1px solid var(--line); background: #fff;
}
.drawer.open { display: block; }
.drawer ul { padding: 8px 22px 18px; }
.drawer a {
  display: block; padding: 12px 4px; border-bottom: 1px dashed var(--line-2);
  font-size: 15px; color: var(--ink-2); font-weight: 500;
}
.drawer .btn { width: 100%; margin-top: 14px; }

/* ---------------- hero ---------------- */
.hero { position: relative; padding: 56px 0 64px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(720px 340px at 8% 4%, rgba(46, 158, 91, .13), transparent 62%),
    radial-gradient(620px 320px at 92% 0%, rgba(23, 172, 166, .13), transparent 62%),
    radial-gradient(520px 300px at 74% 96%, rgba(245, 138, 46, .10), transparent 66%);
}
.hero .wrap { position: relative; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  font-family: var(--font-en); font-size: 11.5px; font-weight: 600;
  letter-spacing: .16em; color: var(--green-d); text-transform: uppercase;
}
.eyebrow b { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
h1.hero-h1 { margin-top: 20px; font-size: 46px; letter-spacing: .01em; }
.hero-h1 em { font-style: normal; color: var(--green); }
.hero-sub { margin-top: 18px; font-size: 16.5px; color: var(--ink-2); max-width: 34em; }
.hero-list { margin-top: 20px; display: grid; gap: 10px; }
.hero-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.tick {
  flex: 0 0 auto; width: 19px; height: 19px; margin-top: 5px; border-radius: 50%;
  background: var(--green-l); color: var(--green-d); font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hero-actions { margin-top: 28px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note { font-size: 12.5px; color: var(--muted); }
.hero-stats {
  margin-top: 34px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px; padding: 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
}
.hero-stats b {
  display: block; font-family: var(--font-en); font-size: 23px; font-weight: 700; color: var(--green-d);
  line-height: 1.2;
}
.hero-stats span { font-size: 12.5px; color: var(--muted); }

.hero-visual { display: flex; justify-content: center; position: relative; }
.phone {
  position: relative; width: 272px; padding: 9px; border-radius: 38px;
  background: linear-gradient(160deg, #24322b, #16241e);
  box-shadow: 0 26px 60px rgba(22, 36, 30, .28);
}
.phone::after {
  content: ""; position: absolute; left: 50%; top: 17px; transform: translateX(-50%);
  width: 76px; height: 6px; border-radius: 6px; background: rgba(255, 255, 255, .22);
}
.phone img { border-radius: 30px; }
.float-card {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 13px; box-shadow: var(--shadow); padding: 10px 14px;
  display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--ink-2);
}
.float-card b { font-family: var(--font-en); font-size: 15px; color: var(--green-d); }
.float-a { left: -6px; top: 74px; }
.float-b { right: -4px; bottom: 88px; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

/* ---------------- sections ---------------- */
.section { padding: 66px 0; }
.section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { font-size: 30px; letter-spacing: .01em; }
.section-head p { margin-top: 12px; font-size: 15.5px; color: var(--muted); }
.section-head .kicker {
  display: block; margin-bottom: 10px;
  font-family: var(--font-en); font-size: 11.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--green);
}

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

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hi); border-color: #d3e7db; }
.card h3 { font-size: 17.5px; }
.card p { margin-top: 10px; font-size: 14.5px; color: var(--muted); }
.ico-box {
  width: 46px; height: 46px; border-radius: 13px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.ico-box svg { width: 23px; height: 23px; }
.t-g { background: var(--green-l); color: var(--green-d); }
.t-t { background: var(--teal-l); color: #0f847f; }
.t-s { background: var(--sky-l); color: #1f7fb5; }
.t-o { background: var(--orange-l); color: #c96a15; }

.chip-row { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-top: 40px; }
.chip {
  font-size: 13px; padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); color: var(--ink-2);
}

/* ---------------- gallery ---------------- */
.gallery { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.shot { text-align: center; }
.shot .frame {
  border-radius: 20px; overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.shot .frame img { width: 100%; }
.shot figcaption { margin-top: 12px; font-size: 13.5px; color: var(--ink-2); font-weight: 600; }
.shot small { display: block; margin-top: 3px; font-size: 12px; color: var(--muted); font-weight: 400; }

.hero-shot { max-width: 300px; margin: 0 auto; }

/* ---------------- stats band ---------------- */
.band { background: linear-gradient(135deg, #217f47, #17aca6); color: #fff; }
.band-in { padding: 54px 0; }
.band h2 { color: #fff; font-size: 27px; }
.band p.lead { margin-top: 12px; color: rgba(255, 255, 255, .86); font-size: 15.5px; max-width: 62em; }
.band-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.band-cell { background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .2); border-radius: 14px; padding: 20px; }
.band-cell b { display: block; font-family: var(--font-en); font-size: 27px; line-height: 1.15; }
.band-cell span { display: block; margin-top: 6px; font-size: 13px; color: rgba(255, 255, 255, .84); }

/* ---------------- entry cards ---------------- */
.entry {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px 22px; transition: transform .18s, box-shadow .18s;
}
.entry:hover { transform: translateY(-3px); box-shadow: var(--shadow-hi); }
.entry-tag {
  align-self: flex-start; font-family: var(--font-en); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-d);
  background: var(--green-l); padding: 5px 11px; border-radius: 7px;
}
.entry h3 { margin-top: 16px; font-size: 19px; }
.entry p { margin-top: 10px; font-size: 14.5px; color: var(--muted); flex: 1; }
.entry .more { margin-top: 18px; font-size: 14px; font-weight: 700; color: var(--green-d); }
.entry .more::after { content: " ›"; }

/* ---------------- reviews ---------------- */
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; flex-direction: column;
}
.review p { font-size: 14.5px; color: var(--ink-2); flex: 1; }
.review .who { margin-top: 18px; display: flex; align-items: center; gap: 11px; }
.avatar {
  width: 38px; height: 38px; border-radius: 12px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #fff;
}
.who .nm { font-size: 14px; font-weight: 700; }
.who .mt { font-size: 12px; color: var(--muted); }
.stars { margin-top: 14px; font-size: 13px; color: var(--orange); letter-spacing: 2px; }

/* ---------------- faq ---------------- */
.faq { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 4px 22px; transition: border-color .18s, box-shadow .18s;
}
.faq details[open] { border-color: #cfe6da; box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; list-style: none; padding: 17px 34px 17px 0; position: relative;
  font-size: 16px; font-weight: 700; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .ans { padding: 0 0 20px; font-size: 14.5px; color: var(--ink-2); border-top: 1px dashed var(--line-2); padding-top: 15px; }
.faq .ans p + p { margin-top: 10px; }
.faq-group + .faq-group { margin-top: 34px; }
.faq-group > h2 { font-size: 21px; margin-bottom: 16px; padding-left: 14px; border-left: 4px solid var(--green); }

/* ---------------- prose (inner pages) ---------------- */
.page-hero { padding: 46px 0 40px; border-bottom: 1px solid var(--line); background: #fff; position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 340px; height: 340px;
  border-radius: 50%; background: radial-gradient(circle, rgba(46, 158, 91, .12), transparent 68%);
}
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--green-d); }
.page-hero h1 { font-size: 36px; }
.page-hero .lead { margin-top: 16px; font-size: 16px; color: var(--ink-2); max-width: 52em; }
.page-meta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }

.prose { max-width: 820px; }
.prose h2 { font-size: 24px; margin-top: 46px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; margin-top: 28px; }
.prose p { margin-top: 14px; font-size: 15.5px; color: var(--ink-2); }
.prose ul.dots { margin-top: 14px; display: grid; gap: 9px; }
.prose ul.dots li { position: relative; padding-left: 20px; font-size: 15px; color: var(--ink-2); }
.prose ul.dots li::before {
  content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
}
.prose strong { color: var(--ink); }

.layout-side { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 52px; align-items: start; }
.side-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; position: sticky; top: 92px;
}
.side-card h3 { font-size: 16px; }
.side-card ul { margin-top: 14px; display: grid; gap: 2px; }
.side-card li a {
  display: block; padding: 9px 0 9px 16px; font-size: 14px; color: var(--ink-2);
  border-bottom: 1px dashed var(--line-2); position: relative;
}
.side-card li a::before {
  content: ""; position: absolute; left: 2px; top: 18px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--green);
}
.side-card li a:hover { color: var(--green-d); }
.side-dl { margin-top: 20px; background: linear-gradient(135deg, #eaf6ef, #e6f6f5); border-radius: 13px; padding: 20px; }
.side-dl p { font-size: 13.5px; color: var(--ink-2); }
.side-dl .btn { width: 100%; margin-top: 14px; }

.steps { margin-top: 20px; display: grid; gap: 14px; counter-reset: st; }
.step {
  display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px;
}
.step-n {
  width: 42px; height: 42px; border-radius: 13px; background: var(--green-l); color: var(--green-d);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-weight: 700; font-size: 16px;
}
.step h3 { font-size: 16.5px; }
.step p { margin-top: 8px; font-size: 14.5px; color: var(--muted); }

.note {
  margin-top: 26px; border-left: 4px solid var(--orange); background: var(--orange-l);
  border-radius: 0 12px 12px 0; padding: 18px 20px;
}
.note h3 { font-size: 15.5px; }
.note p { margin-top: 8px; font-size: 14.5px; color: var(--ink-2); }
.note.tip { border-left-color: var(--green); background: var(--green-l); }

.table-wrap { margin-top: 22px; overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
th, td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line-2); }
th { background: #f6faf7; font-weight: 700; font-size: 14px; color: var(--ink); }
tbody tr:last-child td { border-bottom: 0; }
td strong { color: var(--green-d); }

.related { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.related h2 { font-size: 20px; margin-bottom: 18px; }

/* ---------------- cta band ---------------- */
.cta { padding: 62px 0; }
.cta-in {
  background: linear-gradient(135deg, #217f47, #17aca6);
  border-radius: 24px; padding: 50px 40px; text-align: center; color: #fff;
  box-shadow: 0 24px 60px rgba(23, 127, 71, .22);
}
.cta-in h2 { color: #fff; font-size: 28px; }
.cta-in p { margin: 14px auto 0; max-width: 44em; color: rgba(255, 255, 255, .88); font-size: 15.5px; }
.cta-in .btn { margin-top: 28px; background: #fff; color: var(--green-d); box-shadow: 0 8px 22px rgba(0, 0, 0, .18); }
.cta-in .btn:hover { color: var(--green-d); }
.cta-note { margin-top: 16px; font-size: 12.5px; color: rgba(255, 255, 255, .74); }

/* ---------------- footer ---------------- */
.site-foot { background: #14211b; color: #b9c7c0; padding: 56px 0 26px; font-size: 14px; }
.foot-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 36px; }
.foot-brand { display: flex; align-items: center; gap: 11px; }
.foot-brand img { width: 38px; height: 38px; border-radius: 11px; }
.foot-brand .brand-name { color: #fff; }
.foot-about { margin-top: 16px; color: #8fa39a; line-height: 1.8; max-width: 34em; }
.foot-col h3 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.foot-col ul { display: grid; gap: 9px; }
.foot-col a { color: #a8bbb2; font-size: 14px; }
.foot-col a:hover { color: #6fd39b; }
.disclaimer {
  margin-top: 40px; padding: 18px 20px; border-radius: 13px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .09);
  font-size: 13.5px; color: #9db0a7; line-height: 1.8;
}
.foot-bottom {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .09);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 13px; color: #7f9389;
}

/* ---------------- utilities ---------------- */
.center { text-align: center; }
.mt-s { margin-top: 12px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }

.to-top {
  position: fixed; right: 22px; bottom: 26px; z-index: 55;
  width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--line);
  background: #fff; color: var(--green-d); cursor: pointer; box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s, transform .2s;
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-2px); }
.to-top svg { width: 18px; height: 18px; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .card, .entry, .btn { transition: none; }
}

/* ---------------- responsive ---------------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .hero-visual { order: -1; }
  .hero-sub, .hero-list { max-width: none; }
  h1.hero-h1 { font-size: 40px; }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .layout-side { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .side-card { position: static; }
}

@media (max-width: 900px) {
  .main-nav, .head-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-3, .band-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 54px 0; }
  .section-head h2 { font-size: 26px; }
  .page-hero h1 { font-size: 30px; }
  .prose h2 { font-size: 22px; }
  .cta-in { padding: 40px 26px; }
  .cta-in h2 { font-size: 24px; }
}

@media (max-width: 680px) {
  body { font-size: 15.5px; }
  .wrap { padding: 0 16px; }
  h1.hero-h1 { font-size: 31px; }
  .hero { padding: 38px 0 50px; }
  .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding: 14px 12px; }
  .hero-stats b { font-size: 18px; }
  .hero-stats span { font-size: 11px; }
  .phone { width: 232px; }
  .float-card { display: none; }
  .grid-3, .grid-2, .band-grid { grid-template-columns: minmax(0, 1fr); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .section-head h2 { font-size: 23px; }
  .page-hero h1 { font-size: 25px; }
  .page-hero .lead { font-size: 15px; }
  .card, .entry, .review { padding: 22px 18px; }
  .step { grid-template-columns: 36px minmax(0, 1fr); gap: 13px; padding: 17px; }
  .step-n { width: 36px; height: 36px; border-radius: 11px; font-size: 14px; }
  .foot-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .faq details { padding: 4px 16px; }
  .faq summary { font-size: 15px; }
  .btn { padding: 12px 20px; }
  .btn-lg { padding: 14px 24px; font-size: 15.5px; }
  .side-dl { padding: 18px; }

  /* long tables become stacked cards on small screens */
  .table-wrap { overflow-x: visible; border: 0; background: transparent; border-radius: 0; }
  table, thead, tbody, tr, th, td { display: block; width: 100%; }
  thead { display: none; }
  tbody tr {
    background: #fff; border: 1px solid var(--line); border-radius: 13px;
    padding: 8px 14px; margin-bottom: 12px;
  }
  td { border-bottom: 1px dashed var(--line-2); padding: 10px 0; font-size: 14px; }
  tbody tr td:last-child { border-bottom: 0; }
  td::before {
    content: attr(data-label); display: block;
    font-size: 12px; font-weight: 700; color: var(--green-d); margin-bottom: 4px;
  }
}
