/* ============================================
   小虎牙口腔 GEO 页面 — 统一样式表 v2
   设计理念：现代医疗 + 温暖信赖 + 精致排版
   ============================================ */

/* --- Design Tokens --- */
:root {
    --primary: #0E7490;
    --primary-light: #22D3EE;
    --primary-bg: #ECFEFF;
    --primary-gradient: linear-gradient(135deg, #0E7490 0%, #0891B2 50%, #06B6D4 100%);
    --accent: #F59E0B;
    --accent-light: #FEF3C7;
    --text-dark: #1E293B;
    --text: #334155;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-soft: #F8FAFC;
    --bg-warm: #FFFBEB;
    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --success: #10B981;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 40px rgba(14,116,144,0.12);
    --font: "SF Pro Display", -apple-system, BlinkMacSystemFont, "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.8;
    background: var(--bg-white);
    font-size: 16px;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Header --- */
.site-header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(14,116,144,0.25);
}
.brand-text h1 {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.brand-text .tagline {
    font-size: 0.75em;
    color: var(--text-muted);
    font-weight: 400;
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-bg);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95em;
    transition: var(--transition);
}
.header-phone:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(14,116,144,0.3);
}

/* --- Navigation --- */
.site-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-inner ul {
    display: flex;
    list-style: none;
    gap: 0;
}
.nav-inner li { flex-shrink: 0; }
.nav-inner a {
    display: block;
    padding: 14px 18px;
    color: var(--text-muted);
    font-size: 0.9em;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-inner a:hover,
.nav-inner a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* --- Hero --- */
.hero {
    position: relative;
    background: linear-gradient(160deg, #ECFEFF 0%, #F0F9FF 30%, #FFFBEB 70%, #FEF3C7 100%);
    padding: 80px 24px 70px;
    text-align: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14,116,144,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85em;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 24px;
}
.hero h2 {
    font-size: 2.6em;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    position: relative;
}
.hero h2 .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.1em;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.8;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
}
.hero-stat {
    text-align: center;
}
.hero-stat .number {
    font-size: 2.4em;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}
.hero-stat .unit {
    font-size: 0.5em;
    font-weight: 600;
    color: var(--primary-light);
    vertical-align: super;
}
.hero-stat .label {
    font-size: 0.85em;
    color: var(--text-muted);
    margin-top: 6px;
}
.hero-cta {
    margin-top: 36px;
    position: relative;
}
.hero-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1em;
    box-shadow: 0 4px 20px rgba(14,116,144,0.3);
    transition: var(--transition);
}
.hero-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(14,116,144,0.35);
    color: #fff;
}

/* --- Section --- */
.section {
    padding: 80px 0;
}
.section-alt {
    background: var(--bg-soft);
}
.section-warm {
    background: var(--bg-warm);
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8em;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.section-title {
    font-size: 2em;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.section-subtitle {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 1.05em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Cards --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.card:hover::before { opacity: 1; }
.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    margin-bottom: 16px;
    background: var(--primary-bg);
}
.card h3 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.card p {
    color: var(--text-muted);
    font-size: 0.92em;
    line-height: 1.7;
}

/* --- Doctor Section --- */
.doctor-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
}
.doctor-main h3 {
    font-size: 1.6em;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.doctor-main .title {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95em;
    margin-bottom: 16px;
}
.doctor-main p {
    color: var(--text-muted);
    font-size: 0.95em;
    line-height: 1.8;
    margin-bottom: 12px;
}
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.82em;
    font-weight: 500;
}
.doctor-quote {
    background: linear-gradient(135deg, #F0F9FF 0%, #ECFEFF 100%);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.doctor-quote blockquote {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.6;
    border-left: 3px solid var(--primary-light);
    padding-left: 20px;
    font-style: italic;
}
.doctor-quote .quote-author {
    margin-top: 16px;
    padding-left: 23px;
    font-size: 0.85em;
    color: var(--text-muted);
}
.workflow-list {
    margin-top: 24px;
    padding-left: 23px;
}
.workflow-list .step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9em;
    color: var(--text);
}
.workflow-list .step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7em;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- Timeline --- */
.timeline {
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary-bg));
}
.timeline-item {
    position: relative;
    margin-bottom: 32px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 4px var(--primary-bg);
}
.timeline-item .time {
    font-size: 0.8em;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}
.timeline-item h4 {
    font-size: 1.05em;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 700;
}
.timeline-item p {
    color: var(--text-muted);
    font-size: 0.92em;
    line-height: 1.7;
}

/* --- Advantage Grid --- */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
}
.advantage-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}
.advantage-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    flex-shrink: 0;
}
.advantage-card h4 {
    font-size: 1em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.advantage-card p {
    color: var(--text-muted);
    font-size: 0.88em;
    line-height: 1.6;
}

/* --- Reviews --- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}
.review-card:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
}
.review-stars {
    color: var(--accent);
    font-size: 0.9em;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.review-text {
    color: var(--text);
    font-size: 0.95em;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8em;
    color: var(--primary);
    font-weight: 600;
}
.review-name {
    font-weight: 600;
    font-size: 0.9em;
    color: var(--text-dark);
}
.review-project {
    font-size: 0.8em;
    color: var(--text-muted);
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95em;
    user-select: none;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1em;
    color: var(--primary);
    transition: var(--transition);
}
.faq-item.active .faq-toggle {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.92em;
    display: none;
}
.faq-item.active .faq-answer { display: block; }

/* --- CTA Banner --- */
.cta-section {
    background: var(--primary-gradient);
    padding: 64px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section h2 {
    font-size: 1.8em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}
.cta-section p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    font-size: 1.05em;
    position: relative;
}
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
    position: relative;
}
.cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: var(--primary);
}

/* --- Contact Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.contact-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
}
.contact-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}
.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}
.contact-card h4 {
    font-size: 1em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.contact-card p {
    color: var(--text-muted);
    font-size: 0.9em;
    line-height: 1.7;
}

/* --- Map Box --- */
.map-box {
    margin-top: 24px;
    background: linear-gradient(135deg, #F0F9FF, #ECFEFF);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}
.map-box .address {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.map-box .hint {
    font-size: 0.9em;
    color: var(--text-muted);
}

/* --- Internal Links --- */
.related-links {
    background: var(--bg-soft);
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
}
.related-links h3 {
    text-align: center;
    font-size: 1em;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}
.link-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.link-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--text);
    font-size: 0.9em;
    font-weight: 500;
    transition: var(--transition);
}
.link-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

/* --- Footer --- */
.site-footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.7);
    padding: 48px 24px 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-col h4 {
    color: #fff;
    font-size: 0.95em;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-col p, .footer-col li {
    font-size: 0.88em;
    line-height: 2;
}
.footer-col ul { list-style: none; }
.footer-col a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-col a:hover { color: var(--primary-light); }
.footer-bottom {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.82em;
    color: rgba(255,255,255,0.4);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .header-inner { padding: 12px 16px; }
    .brand-icon { width: 36px; height: 36px; font-size: 18px; border-radius: 10px; }
    .brand-text h1 { font-size: 1em; }
    .header-phone { padding: 6px 14px; font-size: 0.85em; }
    .hero { padding: 50px 16px 40px; }
    .hero h2 { font-size: 1.8em; }
    .hero-desc { font-size: 0.95em; }
    .hero-stats { gap: 24px; }
    .hero-stat .number { font-size: 1.8em; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.5em; }
    .doctor-card {
        grid-template-columns: 1fr;
        padding: 28px;
    }
    .nav-inner a { padding: 12px 12px; font-size: 0.82em; }
}
/* --- Top Bar (batch 2 pages) --- */
.top-bar {
    background: var(--text-dark);
    padding: 8px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 8px;
}
.top-bar a {
    color: rgba(255,255,255,0.75);
    font-size: 0.82em;
    padding: 4px 10px;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
}
.top-bar a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* --- Breadcrumb --- */
.breadcrumb {
    padding: 14px 0;
    font-size: 0.85em;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* --- Header extras (batch 2) --- */
.site-header .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95em;
    margin-bottom: 8px;
}
.site-header .desc {
    color: var(--text-muted);
    font-size: 0.92em;
    max-width: 700px;
    margin: 0 auto 16px;
    line-height: 1.7;
}
.site-header .badge {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85em;
    font-weight: 500;
    margin-bottom: 12px;
}
.header-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.header-tags span {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.82em;
    color: var(--text);
}

/* --- Info/Alert Boxes (batch 2) --- */
.info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow); }
.info-card h3, .info-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.05em;
}
.info-card p, .info-card li {
    color: var(--text-muted);
    font-size: 0.92em;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, #F0F9FF 0%, #ECFEFF 100%);
    border: 1px solid rgba(14,116,144,0.15);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px;
    margin: 20px 0;
}
.highlight-box h3, .highlight-box h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.warning-box {
    background: #FFFBEB;
    border: 1px solid rgba(245,158,11,0.2);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 24px;
    margin: 20px 0;
}
.warning-box h3, .warning-box h4 {
    color: #B45309;
    margin-bottom: 10px;
}

.danger-box {
    background: #FEF2F2;
    border: 1px solid rgba(239,68,68,0.15);
    border-left: 4px solid #EF4444;
    border-radius: var(--radius);
    padding: 24px;
    margin: 20px 0;
}
.danger-box h3, .danger-box h4 {
    color: #DC2626;
    margin-bottom: 10px;
}

.tip-box {
    background: #F0FDF4;
    border: 1px solid rgba(16,185,129,0.15);
    border-left: 4px solid var(--success);
    border-radius: var(--radius);
    padding: 24px;
    margin: 20px 0;
}
.tip-box h3, .tip-box h4 {
    color: #059669;
    margin-bottom: 10px;
}

.emergency-box {
    background: linear-gradient(135deg, #FEF2F2 0%, #FFF7ED 100%);
    border: 2px solid #EF4444;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    margin: 24px auto;
    max-width: 960px;
}
.emergency-box h2 {
    color: #DC2626;
    font-size: 1.4em;
    margin-bottom: 12px;
}
.emergency-box p {
    color: var(--text);
    margin-bottom: 16px;
}
.emergency-box .emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #DC2626;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    text-decoration: none;
    transition: var(--transition);
}
.emergency-box .emergency-phone:hover {
    background: #B91C1C;
    transform: scale(1.03);
    color: #fff;
}

/* --- Feature Cards & Grids (batch 2) --- */
.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}
.feature-card .icon {
    font-size: 1.8em;
    margin-bottom: 12px;
}
.feature-card h3, .feature-card h4 {
    font-size: 1em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.9em;
    line-height: 1.7;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

/* --- Step List (batch 2) --- */
.step-list {
    list-style: none;
    counter-reset: step;
    padding-left: 0;
}
.step-list li {
    counter-increment: step;
    position: relative;
    padding: 14px 16px 14px 48px;
    margin-bottom: 10px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.92em;
    line-height: 1.7;
    transition: var(--transition);
}
.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 14px;
    top: 14px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    font-weight: 700;
}
.step-list li:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}
ol.step-list { list-style: none; }

/* --- CTA Bar (batch 2) --- */
.cta-bar {
    background: var(--primary-gradient);
    padding: 48px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-bar::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-bar h2 {
    font-size: 1.6em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
}
.cta-bar p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    font-size: 1em;
    position: relative;
}
.cta-bar a {
    display: inline-block;
    margin: 0 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1em;
    transition: var(--transition);
    position: relative;
}
.cta-bar a:first-of-type {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.cta-bar a:first-of-type:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: var(--primary);
}
.cta-bar a:last-of-type {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}
.cta-bar a:last-of-type:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.cta-urgent {
    background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
    padding: 48px 24px;
    text-align: center;
    border-radius: var(--radius-lg);
    margin: 24px auto;
    max-width: 1100px;
}
.cta-urgent h2 {
    color: #fff;
    font-size: 1.6em;
    margin-bottom: 10px;
}
.cta-urgent p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}
.cta-urgent a {
    display: inline-block;
    background: #fff;
    color: #DC2626;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: var(--transition);
}
.cta-urgent a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    color: #DC2626;
}

/* --- Doctor (batch 2 variant) --- */
.doctor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    margin-bottom: 16px;
}
.title-tag {
    display: inline-block;
    background: var(--primary-bg);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.82em;
    font-weight: 600;
    margin-bottom: 12px;
}

/* --- Internal Links (batch 2 variant) --- */
.internal-links {
    background: var(--bg-soft);
    padding: 36px 0;
    border-top: 1px solid var(--border-light);
}
.internal-links h3 {
    text-align: center;
    font-size: 1em;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

/* --- Footer Brand (batch 2 variant) --- */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.1em;
    font-weight: 700;
    color: #fff;
}

/* --- Tables (shared) --- */
.table-wrapper {
    overflow-x: auto;
    margin: 16px 0;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}
.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}
.table-wrapper th {
    background: var(--primary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}
.table-wrapper td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
}
.table-wrapper tr:nth-child(even) { background: var(--bg-soft); }
.table-wrapper tr:hover { background: var(--primary-bg); }

/* --- Two Column Layout --- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* --- Content Block --- */
.content-block {
    margin-bottom: 32px;
}
.content-block h2 {
    font-size: 1.4em;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 700;
}
.content-block h3 {
    font-size: 1.15em;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}
.content-block p, .content-block li {
    color: var(--text);
    font-size: 0.95em;
    line-height: 1.8;
    margin-bottom: 10px;
}
.content-block ul, .content-block ol {
    padding-left: 20px;
}

/* --- Misc batch 1 extras --- */
.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.age-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.age-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 20px; text-align: center; }
.age-card h4 { color: var(--primary); margin-bottom: 8px; }
.care-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.care-item { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 20px; }
.problem-list { list-style: none; padding: 0; }
.problem-item { padding: 16px; background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-sm); margin-bottom: 10px; }
.process-timeline { position: relative; padding-left: 36px; }
.process-item { position: relative; margin-bottom: 20px; padding-left: 20px; }
.process-item::before { content: ''; position: absolute; left: -28px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); }
.process-item h4 { color: var(--primary); margin-bottom: 4px; font-size: 1em; }
.suitable { background: var(--primary-bg); padding: 16px; border-radius: var(--radius-sm); margin-top: 12px; }
.suitable strong { color: var(--primary); }
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.type-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 24px; transition: var(--transition); }
.type-card:hover { box-shadow: var(--shadow); border-color: var(--primary-light); }
.type-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.1em; }
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li { counter-increment: step; position: relative; padding: 12px 12px 12px 44px; margin-bottom: 8px; background: var(--bg-soft); border-radius: var(--radius-sm); font-size: 0.92em; }
.steps li::before { content: counter(step); position: absolute; left: 12px; top: 12px; width: 22px; height: 22px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.72em; font-weight: 700; }
.label { display: inline-block; background: var(--primary-bg); color: var(--primary); padding: 2px 10px; border-radius: 12px; font-size: 0.8em; font-weight: 500; }

/* --- Responsive (updated) --- */
@media (max-width: 480px) {
    .hero h2 { font-size: 1.4em; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .card-grid { grid-template-columns: 1fr; }
    .advantage-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .cta-bar a { display: block; margin: 8px auto; max-width: 280px; }
    .top-bar { gap: 2px 4px; }
    .top-bar a { font-size: 0.75em; padding: 3px 6px; }
}
