/* ============================================================
   HealBridge China — strict reproduction of the Ardot canvas
   Design tokens taken from the canvas design system:
   brand teal #0D6E63 · ink #0A1628 · soft bg #F9F9F9
   display Bodoni Moda · body Inter Tight · radius 16/20/10/999
   Section side padding 80px · header 72px / 48px padding
   ============================================================ */

:root {
  --brand: #0D6E63;
  --brand-d: #0A5A51;
  --brand-l: #E6F2EF;
  --hero-a: #0A5A51;
  --hero-b: #0D6E63;
  --hero-c: #13A08F;
  --ink: #0A1628;
  --muted: #4A5568;
  --muted-2: #9AA5B1;
  --bg: #F9F9F9;
  --card: #FFFFFF;
  --line: #ECEDEF;
  --line-2: #E3E5E8;
  --gold: #C2881E;
  --red: #C0392B;
  --shadow-s: 0 1px 2px rgba(10,22,40,.04), 0 4px 14px rgba(10,22,40,.05);
  --shadow-m: 0 6px 24px rgba(10,22,40,.08);
  --maxw: 1280px;
  --fd: "Bodoni Moda", "Noto Serif SC", Georgia, serif;
  --fb: "Inter Tight", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 80px; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brand); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 48px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 36px; height: 36px; border-radius: 9px; background: linear-gradient(135deg, #0D6E63, #13A08F); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 18px; }
.brand-name { font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; color: var(--ink); opacity: .85; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--brand); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 10px; font-size: 14px; background: #fff; cursor: pointer; }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-m); padding: 8px; width: 160px; display: none; z-index: 80; }
.lang-switch { position: relative; }
.lang-switch.open .lang-menu { display: block; }
.lang-menu button { display: block; width: 100%; text-align: left; border: none; background: none; padding: 8px 10px; border-radius: 8px; font-size: 14px; cursor: pointer; color: var(--ink); font-family: var(--fb); }
.lang-menu button:hover { background: var(--brand-l); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 15px; font-weight: 600; cursor: pointer; border: none; border-radius: 10px; transition: transform .15s, box-shadow .2s, background .2s; font-family: var(--fb); }
.btn--primary { background: var(--brand); color: #fff; padding: 11px 20px; }
.btn--primary:hover { background: var(--brand-d); transform: translateY(-1px); box-shadow: var(--shadow-m); }
.btn--ghost { background: #fff; color: var(--ink); border: 1px solid var(--line-2); padding: 11px 20px; }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--light { background: #fff; color: var(--brand); }
.btn--light:hover { transform: translateY(-1px); box-shadow: var(--shadow-m); }
.btn--outline-l { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.5); padding: 15px 28px; }
.btn--outline-l:hover { background: rgba(255,255,255,.12); }

/* ---------- Hero (centered, 720px, teal gradient) ---------- */
.hero { position: relative; background: linear-gradient(135deg, var(--hero-a), var(--hero-b) 55%, var(--hero-c)); color: #fff; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(820px 420px at 82% 8%, rgba(255,255,255,.12), transparent 60%); pointer-events: none; }
.hero-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; padding: 140px 24px 96px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 7px 16px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: 14px; color: #DCEFEA; margin-bottom: 28px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 999px; background: #6FE3D2; }
.hero h1 { font-family: var(--fd); font-weight: 700; font-size: 60px; line-height: 1.05; letter-spacing: -.01em; max-width: 16ch; }
.hero p.sub { font-size: 19px; color: #DCEFEA; max-width: 62ch; margin: 22px auto 0; }
.hero-ctas { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; justify-content: center; }
.hero-stats { display: flex; gap: 56px; margin-top: 56px; flex-wrap: wrap; justify-content: center; }
.hero-stats .stat .n { font-family: var(--fd); font-size: 42px; font-weight: 700; }
.hero-stats .stat .l { font-size: 14px; color: #BFE6DF; margin-top: 4px; }

/* ---------- Section scaffolding ---------- */
.section { padding: 96px 0; }
.section--white { background: #fff; }
.center-head { max-width: 900px; margin: 0 auto; text-align: center; }
.center-head h2 { font-family: var(--fd); font-weight: 700; font-size: 42px; line-height: 1.12; margin: 16px 0 14px; letter-spacing: -.01em; }
.center-head p { color: var(--muted); font-size: 17px; }

/* ---------- Pain points (4 cards) ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.pain-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-s); transition: transform .2s, box-shadow .2s; }
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.pain-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-l); display: grid; place-items: center; color: var(--brand); font-size: 22px; margin-bottom: 20px; }
.pain-card h3 { font-size: 20px; margin-bottom: 12px; }
.pain-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.stat-badge { display: inline-block; background: var(--brand-l); color: var(--brand); font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px; }

/* ---------- Services (3 cols x 2) ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.col-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svc-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-s); transition: transform .2s, box-shadow .2s, border-color .2s; display: flex; flex-direction: column; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: var(--brand-l); }
.svc-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.svc-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-l); display: grid; place-items: center; font-size: 22px; }
.svc-card h3 { font-size: 20px; }
.svc-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }
.proc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.chip { font-size: 12px; color: var(--muted); background: #F2F4F6; padding: 6px 11px; border-radius: 999px; }
.more { color: var(--brand); font-weight: 600; font-size: 14px; }

/* ---------- Price table ---------- */
.table-card { background: var(--card); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-s); margin-top: 56px; }
.ptable { width: 100%; border-collapse: collapse; }
.ptable th, .ptable td { padding: 18px 24px; text-align: left; font-size: 15px; }
.ptable thead th { background: var(--ink); color: #fff; font-weight: 600; letter-spacing: .01em; }
.ptable tbody tr { border-top: 1px solid var(--line); }
.ptable tbody tr:nth-child(even) { background: #FBFCFC; }
.ptable td.item { font-weight: 600; }
.ptable td.cn { color: var(--brand); font-weight: 700; }
.ptable td.us { color: var(--muted); }
.save-pill { display: inline-block; background: var(--brand-l); color: var(--brand); font-weight: 700; font-size: 13px; padding: 4px 12px; border-radius: 999px; }

/* ---------- Hospitals (3 cards) ---------- */
.grid-3-340 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.hosp-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-s); transition: transform .2s, box-shadow .2s; }
.hosp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.hosp-img { height: 0; }
.hosp-badge { display: inline-block; font-size: 12px; font-weight: 600; color: var(--brand); background: var(--brand-l); padding: 4px 10px; border-radius: 999px; margin: 28px 0 14px; }
.hosp-body { padding: 0 28px 28px; }
.hosp-body h3 { font-size: 19px; margin-bottom: 10px; }
.hosp-body p { color: var(--muted); font-size: 14px; }
.dept-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ---------- Cases (4 cards) ---------- */
.grid-4-case { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.case-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-s); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.case-img { height: 180px; }
.case-card:nth-child(1) .case-img { background: linear-gradient(135deg, #0A5A51, #13A08F); }
.case-card:nth-child(2) .case-img { background: linear-gradient(135deg, #1B5FAE, #3A86D6); }
.case-card:nth-child(3) .case-img { background: linear-gradient(135deg, #2E7D52, #56B07C); }
.case-card:nth-child(4) .case-img { background: linear-gradient(135deg, #C2881E, #E0A944); }
.case-body { padding: 24px; }
.case-tag { display: inline-block; font-size: 12px; font-weight: 600; color: var(--brand); background: var(--brand-l); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.case-body h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.35; }
.case-body p { color: var(--muted); font-size: 13.5px; }

/* ---------- CTA ---------- */
.cta-sec { padding: 0 80px; }
.cta { background: linear-gradient(135deg, var(--hero-a), var(--hero-b) 55%, var(--hero-c)); color: #fff; text-align: center; border-radius: 24px; padding: 88px 24px; }
.cta h2 { font-family: var(--fd); font-size: 42px; font-weight: 700; }
.cta p { color: #DCEFEA; font-size: 17px; margin: 16px auto 32px; max-width: 60ch; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.trust-line { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #DCEFEA; }
.trust-item .tk { width: 18px; height: 18px; border-radius: 999px; background: rgba(255,255,255,.18); display: grid; place-items: center; color: #6FE3D2; font-size: 11px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #C7D0DA; margin-top: 96px; padding: 64px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; padding: 0 80px; }
.footer-brand .fb { color: #fff; font-size: 22px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.footer-brand .fb .brand-mark { width: 32px; height: 32px; font-size: 16px; }
.footer-brand .ft { font-size: 14px; color: var(--muted-2); margin-top: 14px; max-width: 30ch; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: #C7D0DA; margin-bottom: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 28px 80px 0; margin: 40px 0 0; border-top: 1px solid #1A2433; font-size: 13px; color: #6B7280; }

/* ICP 备案号（工信部备案管理系统链接） */
.footer-left .icp-beian, .copy-wrap .icp-beian { display: inline; margin-left: 12px; white-space: nowrap; }
.icp-beian a { color: #8A94A6; font-size: 12.5px; letter-spacing: .3px; text-decoration: none; }
.icp-beian a:hover { color: #C7D0DA; text-decoration: underline; }

/* ============================================================
   PROCESS PAGE
   ============================================================ */
.page-hero { background: #fff; padding: 88px 24px 64px; text-align: center; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { display: inline-block; }
.page-hero h1 { font-family: var(--fd); font-size: 52px; font-weight: 700; margin: 16px auto 16px; max-width: 16ch; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 60ch; margin: 0 auto; }
.timeline { max-width: 1100px; margin: 64px auto 0; padding: 0 24px; }
.step { display: flex; gap: 40px; align-items: flex-start; padding-bottom: 48px; }
.step:last-child { padding-bottom: 0; }
.step-num { flex: 0 0 64px; width: 64px; height: 64px; border-radius: 16px; background: var(--brand-l); color: var(--brand); display: grid; place-items: center; font-family: var(--fd); font-size: 28px; font-weight: 700; }
.step-body { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-s); flex: 1; }
.step-body h3 { font-size: 22px; margin-bottom: 10px; }
.step-body p { color: var(--muted); font-size: 15.5px; margin-bottom: 18px; }
.step-feats { display: flex; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   CASES PAGE
   ============================================================ */
.cases-hero { background: #fff; padding: 80px 80px 56px; }
.cases-hero .eyebrow { display: block; }
.cases-hero h1 { font-family: var(--fd); font-size: 52px; font-weight: 700; margin: 14px 0 12px; }
.cases-hero p { color: var(--muted); font-size: 18px; max-width: 60ch; }
.cases-stats { display: flex; gap: 56px; margin-top: 28px; flex-wrap: wrap; }
.cases-stats .n { font-family: var(--fd); font-size: 36px; font-weight: 700; color: var(--brand); }
.cases-stats .l { font-size: 14px; color: var(--muted); }
.cases-content { padding: 64px 80px 0; }
.featured { display: grid; grid-template-columns: 480px 1fr; background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-s); }
.featured-img { background: linear-gradient(135deg, #0A5A51, #13A08F); min-height: 360px; }
.featured-body { padding: 48px; display: flex; flex-direction: column; gap: 16px; }
.featured-tag { align-self: flex-start; font-size: 13px; font-weight: 600; color: var(--brand); background: var(--brand-l); padding: 6px 14px; border-radius: 999px; }
.featured-body h3 { font-family: var(--fd); font-size: 28px; font-weight: 700; }
.featured-body p { color: var(--muted); font-size: 16px; }
.feat-stats { display: flex; gap: 40px; }
.feat-stats .n { font-family: var(--fd); font-size: 26px; font-weight: 700; }
.feat-stats .l { font-size: 13px; color: var(--muted); }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.case-card-3 { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-s); transition: transform .2s, box-shadow .2s; }
.case-card-3:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.case-card-3 .case-img { height: 190px; }
.case-card-3:nth-child(1) .case-img { background: linear-gradient(135deg, #0A5A51, #13A08F); }
.case-card-3:nth-child(2) .case-img { background: linear-gradient(135deg, #1B5FAE, #3A86D6); }
.case-card-3:nth-child(3) .case-img { background: linear-gradient(135deg, #2E7D52, #56B07C); }
.case-card-3 .case-body { padding: 24px; }
.case-card-3 .case-tag { margin-bottom: 12px; }
.case-card-3 h3 { font-size: 18px; margin-bottom: 10px; }
.case-card-3 p { color: var(--muted); font-size: 14px; }
.mini-foot { background: var(--ink); color: #C7D0DA; padding: 40px 80px; margin-top: 64px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.mini-foot .fb { color: #fff; font-size: 20px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.mini-foot .fb .brand-mark { width: 32px; height: 32px; font-size: 16px; }
.mini-foot .ft { font-size: 13px; color: var(--muted-2); margin-top: 8px; }
.mini-foot .links { display: flex; gap: 28px; }
.mini-foot .links a { font-size: 14px; color: #C7D0DA; }
.mini-foot .copy-wrap { width: 100%; padding-top: 16px; margin-top: 8px; border-top: 1px solid #1A2433; font-size: 12.5px; color: #6B7280; }
.mini-foot .copy { display: inline; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.book-wrap { display: grid; grid-template-columns: 560px 420px; gap: 80px; padding: 80px; align-items: start; justify-content: center; }
.book-left { max-width: 560px; }
.book-left .eyebrow { display: block; }
.book-left h1 { font-family: var(--fd); font-size: 44px; font-weight: 700; margin: 14px 0 16px; line-height: 1.1; }
.book-left > p { color: var(--muted); font-size: 16px; margin-bottom: 36px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-s); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line-2); border-radius: 10px; font-family: var(--fb); font-size: 15px; color: var(--ink); background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-l); }
.field textarea { min-height: 100px; resize: vertical; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn { width: 100%; padding: 15px; font-size: 16px; }
.book-right { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 96px; max-width: 420px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-s); }
.info-card h3 { font-size: 19px; margin-bottom: 16px; }
.trust-item-2 { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; font-size: 14.5px; color: var(--ink); }
.trust-item-2:last-child { margin-bottom: 0; }
.trust-item-2 .ic { flex: 0 0 32px; width: 32px; height: 32px; border-radius: 8px; background: var(--brand-l); color: var(--brand); display: grid; place-items: center; font-size: 16px; }
.info-card p.sub { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.contact-row { display: flex; align-items: center; gap: 10px; font-size: 14.5px; margin-top: 12px; }
.contact-row .ic { width: 20px; height: 20px; color: var(--brand); }
.lang-grid { display: flex; flex-direction: column; gap: 8px; }
.lang-row { display: flex; flex-wrap: wrap; gap: 8px; }
.lang-pill { font-size: 12px; color: var(--muted); background: #F2F4F6; padding: 6px 12px; border-radius: 999px; }

/* ============================================================
   ADMIN DASHBOARD
   ============================================================ */
.admin { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-side { background: #fff; border-right: 1px solid var(--line); padding: 24px 20px; }
.admin-brand { padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.admin-brand .ab { font-size: 16px; font-weight: 700; }
.admin-brand .as { font-size: 12px; color: var(--muted-2); }
.admin-nav { display: flex; flex-direction: column; gap: 4px; }
.admin-nav a { padding: 11px 12px; border-radius: 8px; font-size: 14px; color: var(--muted); }
.admin-nav a:hover { background: #F2F4F6; }
.admin-nav a.active { background: var(--brand); color: #fff; font-weight: 600; }
.admin-main { background: #F4F6F8; }
.admin-top { display: flex; justify-content: space-between; align-items: center; height: 64px; padding: 0 28px; background: #fff; border-bottom: 1px solid var(--line); }
.admin-top .brand { gap: 10px; }
.admin-top .brand .brand-mark { width: 32px; height: 32px; font-size: 16px; }
.admin-top .t-title { font-size: 15px; color: var(--muted); }
.admin-user { display: flex; align-items: center; gap: 10px; }
.avatar { width: 34px; height: 34px; border-radius: 999px; background: #E0E4E9; }
.admin-content { padding: 28px; display: flex; flex-direction: column; gap: 24px; }
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
.kpi .l { font-size: 13px; color: var(--muted-2); }
.kpi .n { font-family: var(--fd); font-size: 30px; font-weight: 700; margin: 4px 0 2px; }
.kpi .d { font-size: 12px; color: var(--brand); font-weight: 600; }
.analytics-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
.panel h3 { font-size: 16px; font-weight: 700; }
.panel .ps { font-size: 12px; color: var(--muted-2); margin: 2px 0 18px; }
.bar-row { display: flex; align-items: center; gap: 12px; margin: 12px 0; }
.bar-row .bl { width: 72px; font-size: 13px; color: var(--muted); }
.bar-track { flex: 1; height: 10px; background: #EEF1F4; border-radius: 5px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, #0A5A51, #13A08F); border-radius: 5px; }
.bar-row .bc { width: 40px; font-size: 13px; font-weight: 600; text-align: right; }
.status-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.status-row:last-child { border-bottom: none; }
.status-row .sl { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.dot { width: 10px; height: 10px; border-radius: 999px; }
.dot.green { background: #0D6E63; } .dot.gold { background: #C2881E; } .dot.red { background: #C0392B; }
.status-row .sv { font-size: 14px; font-weight: 600; }
.table-wrap { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.tbl { width: 100%; border-collapse: collapse; }
.tbl th, .tbl td { padding: 14px 20px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); }
.tbl thead th { background: #F4F6F8; color: var(--muted-2); font-size: 13px; font-weight: 600; }
.tbl tbody tr:hover { background: #FBFCFC; }
.tbl td.name { font-weight: 600; }
.tbl .st { font-weight: 600; }
.tbl .st.ok { color: var(--brand); } .tbl .st.prog { color: var(--gold); } .tbl .st.wait { color: var(--red); }
.funnel { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px; }
.funnel h3 { font-size: 16px; font-weight: 700; }
.funnel .fs { font-size: 12px; color: var(--muted-2); margin: 2px 0 18px; }
.fstage { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 12px 0; }
.fbar { height: 52px; border-radius: 8px; display: grid; place-items: center; color: #fff; font-size: 15px; font-weight: 600; min-width: 140px; }
.fbar.s1 { background: #0D6E63; } .fbar.s2 { background: #128C7E; } .fbar.s3 { background: #16A99A; } .fbar.s4 { background: #3FC2B4; }
.fstage .fp { font-family: var(--fd); font-size: 15px; font-weight: 700; width: 64px; text-align: right; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .wrap, .footer-top, .footer-bottom, .cta-sec, .cases-hero, .cases-content, .mini-foot, .book-wrap { padding-left: 28px; padding-right: 28px; }
  .grid-4, .grid-4-case { grid-template-columns: repeat(2, 1fr); }
  .col-2 { grid-template-columns: 1fr; }
  .featured { grid-template-columns: 1fr; }
  .featured-img { min-height: 200px; }
  .book-wrap { grid-template-columns: 1fr; gap: 40px; }
  .book-right { position: static; max-width: none; }
  .analytics-row, .kpi-row { grid-template-columns: 1fr; }
  .admin { grid-template-columns: 1fr; }
  .admin-side { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 38px; }
  .center-head h2, .page-hero h1, .cases-hero h1 { font-size: 32px; }
  .grid-4, .grid-3, .grid-3-340, .grid-4-case, .cards-3 { grid-template-columns: 1fr; }
  .hero-stats, .cases-stats, .trust-line { gap: 28px; }
  .step { flex-direction: column; gap: 16px; }
}
