/* ============================================================
   馨康宝贝融合园 - 主样式表 v2.0
   Palette: Teal #0d9488 / Amber #f59e0b
   ============================================================ */
:root {
  --teal: #0d9488; --teal-dark: #0f766e; --teal-light: #f0fdfa;
  --primary: #0d9488; --primary-light: #f0fdfa;
  --amber: #f59e0b; --amber-dark: #d97706;
  --text: #1e293b; --text-muted: #64748b; --text-light: #94a3b8;
  --white: #ffffff; --bg: #f8fafc; --border: #e2e8f0;
  --radius: 16px; --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(0,0,0,.04); --shadow-md: 0 4px 16px rgba(0,0,0,.06); --shadow-lg: 0 8px 32px rgba(0,0,0,.08);
  --font: -apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
.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; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.75; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-dark); }

/* Container */
.ct { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== NAV ========== */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow); }
.nav-inner { display: flex; align-items: center; min-height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px; gap: 32px; }
.nav-logo { display: flex; align-items: flex-start; gap: 10px; font-size: 1.15em; font-weight: 700; color: var(--text); flex-shrink: 0; text-decoration: none; }
.nav-logo-img { height: 42px; width: 42px; border-radius: 50%; flex-shrink: 0; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.3; }
.nav-logo-cn { font-size: 1em; font-weight: 700; color: var(--text); white-space: nowrap; }
.nav-logo-en { font-size: 10.9px; font-weight: 700; color: var(--text-light); letter-spacing: .04em; white-space: nowrap; text-align: center; }
@media (max-width: 768px) { .nav-logo-en { display: none; } }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin-left: auto; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: .92em; font-weight: 500; color: var(--text-muted); transition: all .2s; }
.nav-links a:hover, .nav-links a.active { background: var(--teal-light); color: var(--teal); }
.nav-cta { background: var(--teal) !important; color: #fff !important; padding: 8px 20px !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--teal-dark) !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ========== HERO ========== */
.hero { background: linear-gradient(165deg, #0f766e 0%, #0d9488 45%, #14b8a6 100%); color: #fff; padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -30%; right: -15%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%); border-radius: 50%; }
.hero .ct { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2); padding: 6px 16px; border-radius: 20px; font-size: .85em; margin-bottom: 20px; }
.hero h1 { font-size: 3em; font-weight: 800; line-height: 1.2; letter-spacing: -.02em; }
.hero h1 em { font-style: normal; color: #fde68a; }
.hero-sub { font-size: 1.1em; opacity: .85; margin: 16px 0 24px; line-height: 1.6; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.hero-tags span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 5px 14px; border-radius: 20px; font-size: .85em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-visual img { width: 100%; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.2); }

/* ========== BUTTONS ========== */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 14px 32px; border-radius: 30px; font-weight: 600; font-size: 1em; transition: all .2s; cursor: pointer; border: none; text-decoration: none; }
.btn-primary { background: #fff; color: var(--teal); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,.15); color: var(--teal-dark); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ========== SECTION ========== */
.sec { padding: 80px 0; }
.sec-alt { background: var(--white); }
.sec-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.sec-tag { display: inline-block; background: var(--teal-light); color: var(--teal-dark); padding: 4px 14px; border-radius: 20px; font-size: .85em; font-weight: 600; margin-bottom: 12px; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-tag { display: inline-block; background: var(--teal-light); color: var(--teal-dark); padding: 4px 14px; border-radius: 20px; font-size: .85em; font-weight: 600; margin-bottom: 12px; }
.sec-header h2 { font-size: 2.4em; font-weight: 700; margin-bottom: 12px; letter-spacing: -.01em; }
.sec-header p { color: var(--text-muted); font-size: 1.05em; }

/* ========== CARDS ========== */
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cards-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: all .3s; padding: 28px 24px; }
.card:has(.card-img) { padding: 0; }
.card:has(.card-img) .card-body { padding: 24px; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { overflow: hidden; }
.card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px; }
.card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.card-icon .ico { width: 22px; height: 22px; color: var(--teal); }
.card h3 { font-size: 1.1em; font-weight: 600; margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: .93em; line-height: 1.7; }
.card-link { display: inline-block; margin-top: 12px; font-weight: 600; font-size: .9em; }

/* ========== STATS ========== */
.stats { background: var(--teal); color: #fff; padding: 48px 0; }
.stats-row { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; text-align: center; }
.stat-num { font-size: 3em; font-weight: 800; line-height: 1; }
.stat-label { font-size: .9em; opacity: .75; margin-top: 6px; }

/* ========== SPLIT ========== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-text h2 { font-size: 1.8em; font-weight: 700; margin-bottom: 20px; }
.split-text p { color: var(--text-muted); font-size: 1.05em; line-height: 1.8; margin-bottom: 16px; }
.split-text .btn { margin-top: 8px; }
.split-img img { width: 100%; border-radius: var(--radius); }

/* ========== FOUNDER ========== */
.founder { background: var(--white); text-align: center; }
.founder-avatar { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; margin: 0 auto 24px; border: 4px solid var(--teal-light); }
.founder blockquote { max-width: 720px; margin: 0 auto; font-size: 1.15em; line-height: 2; }
.founder blockquote footer { margin-top: 20px; font-size: .9em; color: var(--text-muted); }
.founder blockquote footer strong { color: var(--text); }

/* ========== FAQ ========== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 24px; font-size: 1em; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text); font-family: inherit; }
.faq-q::after { content: '+'; font-size: 1.3em; color: var(--teal); transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 18px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ========== CTA ========== */
.cta { text-align: center; padding: 80px 0; background: linear-gradient(165deg, var(--teal-light), #fff); }
.cta h2 { font-size: 2em; font-weight: 700; margin-bottom: 12px; }
.cta p { color: var(--text-muted); font-size: 1.05em; margin-bottom: 28px; }
.cta .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ========== FOOTER ========== */
.footer { background: #0f172a; color: #94a3b8; padding: 56px 0 32px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer h4 { color: #fff; font-size: 1em; font-weight: 600; margin-bottom: 16px; }
.footer a { color: #64748b; display: block; padding: 3px 0; font-size: .9em; }
.footer a:hover { color: #fff; }
.footer p { font-size: .9em; margin: 4px 0; }
.footer .ico { color: #475569; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social span { background: #1e293b; color: #94a3b8; padding: 6px 14px; border-radius: 6px; font-size: .85em; }
.footer-bottom { border-top: 1px solid #1e293b; margin-top: 40px; padding-top: 20px; text-align: center; font-size: .85em; color: #475569; }

/* ========== BREADCRUMB ========== */
.breadcrumb { padding: 12px 0; font-size: .88em; color: var(--text-muted); }
.breadcrumb a { color: var(--teal); margin-right: 4px; }
.breadcrumb span { color: var(--text-muted); }

/* ========== PAGE HERO ========== */
.page-hero { background: var(--teal); color: #fff; padding: 48px 0; text-align: center; }
.page-hero h1 { font-size: 2em; font-weight: 700; }
.page-hero p { opacity: .85; margin-top: 8px; }

/* ========== CONTENT SECTION ========== */
.content { max-width: 860px; margin: 0 auto; padding: 48px 0; }
.content h2 { font-size: 1.5em; font-weight: 700; color: var(--teal-dark); margin: 36px 0 16px; padding-left: 16px; border-left: 4px solid var(--teal); }
.content h3 { font-weight: 600; margin: 20px 0 8px; }
.content p { margin: 12px 0; line-height: 1.85; }
.content ul, .content ol { padding-left: 24px; margin: 12px 0; }
.content li { margin: 6px 0; }
.content blockquote { background: var(--teal-light); border-left: 4px solid var(--teal); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 20px 0; }

/* ========== TIMELINE ========== */
.timeline { position: relative; padding-left: 48px; }
.timeline::before { content: ''; position: absolute; left: 18px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-dot { position: absolute; left: -42px; top: 2px; width: 32px; height: 32px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85em; font-weight: 700; }
.timeline-year { position: absolute; left: -42px; top: 2px; width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .75em; font-weight: 700; }
.timeline-content h3 { font-weight: 600; margin-bottom: 4px; }
.timeline-content p { color: var(--text-muted); font-size: .93em; }

/* ========== PLACEHOLDER ========== */
.img-ph { background: linear-gradient(135deg, #f1f5f9, #e2e8f0, #cbd5e1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; min-height: 200px; color: var(--text-light); font-size: .9em; }

/* ========== ICO ========== */
.ico { display: inline-block; vertical-align: -.15em; width: 1.25em; height: 1.25em; flex-shrink: 0; }

/* ========== BLOG CARDS ========== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: all .3s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 20px; }
.blog-card-tag { display: inline-block; background: var(--teal-light); color: var(--teal-dark); padding: 2px 10px; border-radius: 4px; font-size: .8em; font-weight: 600; margin-bottom: 8px; }
.blog-card h3 { font-size: 1.1em; font-weight: 600; margin-bottom: 8px; }
.blog-card p { color: var(--text-muted); font-size: .9em; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { font-size: .8em; color: var(--text-light); margin-top: 10px; }

/* ========== CONTACT FORM ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9em; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 1em; font-family: var(--font); transition: border-color .2s; background: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-light); }
.form-group textarea { min-height: 120px; resize: vertical; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: 8px; }
.checkbox-group label { display: flex; align-items: center; gap: 6px; font-weight: 400; cursor: pointer; }
.contact-info { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.contact-info h3 { font-weight: 600; margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 18px; }
.contact-info-item .ico { color: var(--teal); margin-top: 3px; flex-shrink: 0; }

/* ========== ADMIN ========== */
.admin-page { background: #f1f5f9; }
.admin-layout { display: flex; min-height: 100vh; }
.sidebar { width: 240px; background: #fff; border-right: 1px solid var(--border); padding: 20px 0; flex-shrink: 0; }
.sidebar a { display: block; padding: 10px 24px; color: var(--text-muted); font-size: .9em; transition: all .15s; }
.sidebar a:hover, .sidebar a.active { background: var(--teal-light); color: var(--teal); }
.admin-main { flex: 1; padding: 28px; }
.admin-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; margin-bottom: 20px; }
.admin-card h3 { font-weight: 600; margin-bottom: 16px; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 28px; }
.admin-stat { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; text-align: center; }
.admin-stat .num { font-size: 2.2em; font-weight: 700; color: var(--teal); }
.admin-stat .lbl { font-size: .85em; color: var(--text-muted); margin-top: 4px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .9em; }
.admin-table th { text-align: left; padding: 10px 12px; border-bottom: 2px solid var(--border); font-weight: 600; color: var(--text-muted); }
.admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); }
.btn-sm { padding: 6px 14px; border-radius: 6px; font-size: .85em; cursor: pointer; border: 1px solid var(--border); background: var(--white); }
.btn-sm.danger { color: #dc2626; border-color: #fecaca; }
.toggle { width: 44px; height: 24px; border-radius: 12px; background: #cbd5e1; position: relative; cursor: pointer; transition: background .2s; border: none; }
.toggle.on { background: var(--teal); }
.toggle::after { content: ''; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: left .2s; }
.toggle.on::after { left: 22px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-5 { grid-template-columns: repeat(3, 1fr); }
  .hero .ct { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero h1 { font-size: 2.4em; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 16px; box-shadow: var(--shadow-md); gap: 4px; }
  .cards-2, .cards-3, .cards-4, .cards-5 { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 2em; }
  .sec { padding: 56px 0; }
  .sec-header h2 { font-size: 1.9em; }
  .stats-row { gap: 32px; }
  .stat-num { font-size: 2.2em; }
  .cta h2 { font-size: 1.5em; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .sidebar { display: none; }
  .admin-layout { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.6em; }
  .hero-tags span { font-size: .78em; padding: 4px 10px; }
  .btn { padding: 12px 24px; font-size: .9em; }
  .card-body { padding: 18px; }
  .split-text h2 { font-size: 1.4em; }
}

/* ========== LEGACY SUPPORT for sub-pages ========== */
.content-section, .content { max-width: 860px; margin: 0 auto; padding: 48px 24px; }
.content-section h2, .content h2 { font-size: 1.5em; font-weight: 700; color: var(--teal-dark); margin: 36px 0 16px; padding-left: 16px; border-left: 4px solid var(--teal); }
.content-section h3, .content h3 { font-weight: 600; margin: 20px 0 8px; }
.content-section p, .content p { margin: 12px 0; line-height: 1.85; }
.content-section ul, .content-section ol, .content ul, .content ol { padding-left: 24px; margin: 12px 0; }
.content-section li, .content li { margin: 6px 0; }
.content-section blockquote, .content blockquote { background: var(--teal-light); border-left: 4px solid var(--teal); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 20px 0; }
.cta-section { text-align: center; padding: 60px 24px; background: var(--teal-light); border-radius: var(--radius); margin: 48px 0; }
.cta-section h2, .cta-section h3 { font-size: 1.5em; font-weight: 700; margin-bottom: 12px; }
.cta-btn { display: inline-block; background: var(--teal); color: #fff; padding: 14px 36px; border-radius: 30px; font-weight: 600; text-decoration: none; margin: 8px; transition: all .2s; }
.cta-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }
.cta-btn.outline { background: transparent; border: 2px solid var(--teal); color: var(--teal); }
.cta-btn.outline:hover { background: var(--teal); color: #fff; }
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0; }
.filter-pill { padding: 6px 16px; border: 1px solid var(--border); border-radius: 20px; background: var(--white); cursor: pointer; font-size: .9em; transition: all .15s; }
.filter-pill:hover, .filter-pill.active { background: var(--teal-light); border-color: var(--teal); color: var(--teal); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; position: relative; }
.gallery-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.team-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 28px; text-align: center; transition: all .2s; }
.team-card:hover { box-shadow: var(--shadow-md); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--teal-light); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; }
.credential-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.credential-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; text-align: center; }
.credential-image { height: 120px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; }
.credential-info { padding: 16px; }
.advantages-list { counter-reset: adv; list-style: none; padding: 0; }
.advantage-item { display: flex; gap: 16px; margin-bottom: 28px; }
.advantage-num { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; font-size: 1.1em; }
.advantage-content h3 { font-weight: 600; margin-bottom: 6px; }
.advantage-content p { color: var(--text-muted); font-size: .93em; }
.prose { color: var(--text-muted); font-size: .93em; line-height: 1.85; }
.highlight { color: var(--teal); font-weight: 600; }
.info-box { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--radius-sm); padding: 16px 20px; margin: 20px 0; }
.info-icon { margin-right: 8px; }
.quote { font-size: 1.15em; line-height: 2; font-style: italic; }
.blockquote-section { background: var(--white); }
.author, .title, .desc { display: block; }
.author { font-weight: 600; }
.title { color: var(--teal); font-weight: 600; }
.desc { color: var(--text-muted); font-size: .93em; }
.role { display: block; color: var(--teal); font-weight: 600; font-size: .9em; margin-top: 4px; }
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.social-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; text-align: center; }
.social-icon { font-size: 1.5em; margin-bottom: 8px; }
.booking-form { max-width: 600px; }
.privacy-note { font-size: .85em; color: var(--text-light); margin-top: 8px; }
.submit-btn { width: 100%; padding: 14px; background: var(--teal); color: #fff; border: none; border-radius: 30px; font-size: 1.05em; font-weight: 600; cursor: pointer; transition: all .2s; }
.submit-btn:hover { background: var(--teal-dark); }
.detail-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 24px; }
.required { color: #dc2626; }

/* ========== SUB-PAGE LEGACY ALIASES ========== */
.section, .sec { padding: 60px 0; }
.section-inner, .ct { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-title, .sec-header h2 { font-size: 1.8em; font-weight: 700; text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px; font-size: 1em; }
.cards-grid, .card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.img-placeholder, .img-ph { background: linear-gradient(135deg, #f1f5f9, #e2e8f0); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; min-height: 180px; color: var(--text-light); font-size: .9em; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.15); padding: 6px 16px; border-radius: 20px; font-size: .85em; }
.hero-subtitle { font-size: 1.1em; opacity: .85; margin: 16px 0; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tag, .hero-tags span { background: rgba(255,255,255,.12); padding: 5px 14px; border-radius: 20px; font-size: .85em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.stats-bar { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.5em; font-weight: 800; color: var(--teal); }
.service-child-card { display: block; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 28px; text-align: center; text-decoration: none; color: inherit; transition: all .3s; }
.service-child-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.child-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.child-icon .ico { width: 24px; height: 24px; color: var(--teal); }
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform .4s; }
.carousel-slide { min-width: 100%; padding: 20px; text-align: center; }
.carousel-slide-inner { max-width: 500px; margin: 0 auto; }
.slide-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.slide-icon .ico { width: 26px; height: 26px; color: var(--teal); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; border: none; cursor: pointer; }
.carousel-dot.active { background: var(--teal); }
.process-step { display: flex; gap: 16px; padding: 20px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--border); margin-bottom: 12px; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1em; flex-shrink: 0; }
.feature-highlight { background: var(--teal-light); border-radius: var(--radius); padding: 32px; }
.blog-note { background: var(--teal-light); border-radius: var(--radius-sm); padding: 12px 20px; margin-bottom: 24px; text-align: center; color: var(--teal-dark); font-size: .9em; }
.blog-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.blog-filter .filter-pill { padding: 6px 16px; border: 1px solid var(--border); border-radius: 20px; background: var(--white); cursor: pointer; font-size: .9em; }
.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.contact-detail { display: flex; gap: 10px; margin-bottom: 16px; }
.map-container { height: 240px; background: var(--teal-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-light); }
.social-qr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px; }
.social-qr-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px; text-align: center; font-size: .85em; }
.team-member-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; text-align: center; }
.team-member-card .team-avatar { margin: 0 auto 12px; }

/* ========== BLOG PAGE ========== */
.blog-layout { max-width: 1200px; margin: 2rem auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 300px; gap: 2rem; align-items: start; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.blog-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; transition: box-shadow 0.3s; }
.blog-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.blog-thumbnail { height: 160px; background: linear-gradient(135deg, #eff6ff, #ede9fe); display: flex; align-items: center; justify-content: center; color: #4f46e5; font-size: 2rem; }
.blog-body { padding: 1.25rem; }
.blog-category { display: inline-block; padding: 0.2rem 0.65rem; border-radius: 4px; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.5rem; }
.blog-category.autism { background: #ede9fe; color: #7c3aed; }
.blog-category.intellectual { background: #e0f2fe; color: #0284c7; }
.blog-category.delay { background: #fef3c7; color: #d97706; }
.blog-category.attention { background: #dcfce7; color: #16a34a; }
.blog-category.parent { background: #fce7f3; color: #db2777; }
.blog-title-link { color: #1a1a1a; text-decoration: none; }
.blog-title-link h3 { font-size: 1.05rem; line-height: 1.5; margin-bottom: 0.5rem; transition: color 0.2s; }
.blog-title-link:hover h3 { color: #4f46e5; }
.blog-excerpt { font-size: 0.85rem; color: #666; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0.75rem; }
.blog-date { font-size: 0.78rem; color: #999; }
.blog-sidebar > * { margin-bottom: 1.5rem; }
.blog-sidebar .sidebar-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 1.25rem; }
.blog-sidebar .sidebar-card h4 { font-size: 1rem; color: #1a1a1a; margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 2px solid #4f46e5; }
.blog-sidebar .sidebar-card ul li { margin-bottom: 0.5rem; }
.blog-sidebar .sidebar-card ul li a { font-size: 0.88rem; color: #555; transition: color 0.2s; }
.blog-sidebar .sidebar-card ul li a:hover { color: #4f46e5; }
.sidebar-cta { background: linear-gradient(135deg, #4f46e5, #7c3aed); color: #fff; border-radius: 12px; padding: 1.5rem; text-align: center; }
.sidebar-cta h4 { color: #fff; margin-bottom: 0.5rem; }
.sidebar-cta p { font-size: 0.85rem; opacity: 0.9; margin-bottom: 1rem; }
.sidebar-cta a { display: inline-block; background: #fff; color: #4f46e5; padding: 0.55rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: 0.88rem; text-decoration: none; transition: transform 0.2s; }
.sidebar-cta a:hover { transform: translateY(-2px); }
.blog-page .filter-bar { max-width: 1200px; margin: 1.5rem auto 0; padding: 0 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.blog-page .filter-pill { padding: 0.45rem 1.2rem; border: 1px solid #d1d5db; border-radius: 50px; background: #fff; color: #555; font-size: 0.88rem; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.blog-page .filter-pill:hover { border-color: #4f46e5; color: #4f46e5; }
.blog-page .filter-pill.active { background: #4f46e5; color: #fff; border-color: #4f46e5; }

/* ========== CONTACT PAGE ========== */
.contact-layout { max-width: 1200px; margin: 0 auto 2rem; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; height: 750px; }
.booking-form { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 1.5rem; overflow: hidden; }
.booking-form h2 { font-size: 1.2rem; color: #1a1a1a; margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--teal); }
.booking-form .form-group { margin-bottom: 0.7rem; }
.booking-form .form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: #333; margin-bottom: 0.4rem; }
.booking-form .form-group input[type="text"],
.booking-form .form-group input[type="tel"],
.booking-form .form-group select,
.booking-form .form-group textarea { width: 100%; padding: 0.65rem 0.85rem; border: 1px solid #d1d5db; border-radius: 8px; font-size: 0.93rem; font-family: inherit; background: #fafafa; transition: border-color 0.2s, box-shadow 0.2s; }
.booking-form .form-group input:focus,
.booking-form .form-group select:focus,
.booking-form .form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,0.1); background: #fff; }
.booking-form .checkbox-group { display: flex; flex-wrap: wrap; gap: 0.5rem 0.75rem; }
.booking-form .checkbox-label { display: flex; align-items: center; gap: 0.35rem; font-weight: 400; font-size: 0.88rem; cursor: pointer; padding: 0.4rem 0.85rem; border: 1px solid #e5e7eb; border-radius: 6px; transition: all 0.2s; }
.booking-form .checkbox-label input[type="checkbox"] { accent-color: var(--teal); width: 16px; height: 16px; }
.booking-form .checkbox-label:has(input:checked) { background: var(--teal-light); border-color: var(--teal); color: var(--teal); }
.booking-form .submit-btn { width: 100%; padding: 0.85rem; background: linear-gradient(135deg, var(--teal), #14b8a6); color: #fff; border: none; border-radius: 10px; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: opacity 0.2s, transform 0.2s; }
.booking-form .submit-btn:hover { opacity: 0.95; transform: translateY(-1px); }
.booking-form .privacy-note { margin-top: 1rem; font-size: 0.8rem; color: #999; text-align: center; }
.form-success { display: none; background: var(--teal-light); border: 1px solid #5eead4; border-radius: 10px; padding: 2rem; text-align: center; }
.form-success h3 { color: var(--teal); margin-bottom: 0.5rem; }
.booking-sidebar { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 1.5rem; display: flex; flex-direction: column; height: 100%; }
.booking-sidebar h2 { font-size: 1.2rem; color: #1a1a1a; margin-bottom: 0.8rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--teal); flex-shrink: 0; display: flex; align-items: center; gap: 6px; }
.bell-icon { display: inline-block; animation: bellShake 0.7s ease-in-out infinite; transform-origin: top center; }
@keyframes bellShake { 0%,100%{transform:rotate(0)} 15%{transform:rotate(20deg)} 30%{transform:rotate(-16deg)} 45%{transform:rotate(12deg)} 60%{transform:rotate(-8deg)} 75%{transform:rotate(4deg)} }
.booking-scroll-wrap { height: 440px; overflow: hidden; mask-image: linear-gradient(to bottom, #000 90%, transparent 100%); -webkit-mask-image: linear-gradient(to bottom, #000 90%, transparent 100%); }
.booking-scroll-track { animation: scrollUp 200s linear infinite; }
.booking-scroll-track:hover { animation-play-state: paused; }
@keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-4400px); } }
.booking-item { height: 44px; padding: 10px 12px; border-bottom: 1px solid #f1f5f9; font-size: 0.85em; color: #475569; display: flex; gap: 8px; align-items: center; overflow: hidden; }
.booking-item .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.booking-item .time { color: var(--teal); font-weight: 600; white-space: nowrap; }
.toast { position: fixed; top: 80px; left: 50%; transform: translateX(-50%); background: var(--teal); color: #fff; padding: 0.75rem 1.5rem; border-radius: 8px; font-size: 0.9rem; z-index: 9999; box-shadow: 0 4px 12px rgba(0,0,0,0.15); animation: toastIn 0.3s ease; }
.toast.error { background: #dc2626; }
@keyframes toastIn { from { opacity: 0; transform: translateX(-50%) translateY(-10px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ========== BLOG/CONTACT RESPONSIVE ========== */
@media (max-width: 768px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; height: auto; }
  .booking-form .checkbox-group { flex-direction: column; }
  .booking-scroll-wrap { max-height: 300px; flex: none; }
}