/* ============================================
   DLYCA - Squarespace Inspired Design System
   ============================================ */

/* Temporarily hide store nav links */
a[href="store.html"] { display: none !important; }

/* --- CSS Variables --- */
:root {
    --primary: #2563eb;
    --primary-light: #eff6ff;
    --primary-dark: #1d4ed8;
    --accent: #e8623a;
    --accent-light: #fef0ec;
    --green: #1a7a4c;
    --green-light: #e8f5ee;
    --text: #1a1a1a;
    --text-secondary: #555;
    --text-muted: #888;
    --bg: #ffffff;
    --bg-alt: #f9f9f8;
    --border: #e8e8e6;
    --border-light: #f0f0ed;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
    --header-height: 72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: clamp(16px, 1.5vw, 20px); }

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-desc {
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.7);
    transition: all var(--transition);
}

.header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(37,99,235,0.35) 15%,
        rgba(232,98,58,0.5) 50%,
        rgba(37,99,235,0.35) 85%,
        transparent 100%
    );
    opacity: 0.7;
    pointer-events: none;
}

.header.scrolled {
    background: rgba(255,255,255,0.96);
    border-bottom-color: rgba(230,230,230,0.8);
    box-shadow: 0 1px 0 rgba(0,0,0,0.03), 0 8px 32px rgba(0,0,0,0.06);
}

.header.scrolled::after {
    opacity: 1;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    position: relative;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    color: var(--text);
    text-decoration: none;
    padding: 4px;
}

.logo::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37,99,235,0.12) 0%, rgba(232,98,58,0.1) 100%);
    border: 1px solid rgba(37,99,235,0.12);
    z-index: -1;
    transition: all 0.3s ease;
}

.logo:hover::before {
    transform: translateY(-50%) scale(1.08);
    border-color: rgba(37,99,235,0.2);
}

.logo .logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.logo-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    position: relative;
    padding: 9px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 100px;
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 18px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--text);
    background: rgba(37,99,235,0.04);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(37,99,235,0.08);
    font-weight: 600;
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Volunteer CTA */
.nav-link[href$="volunteer.html"] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 4px 14px rgba(37,99,235,0.22);
    margin-left: 6px;
}

.nav-link[href$="volunteer.html"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.32);
    color: #fff;
}

.nav-link[href$="volunteer.html"]::after {
    display: none;
}

/* Language Switch */
.lang-switch {
    margin-left: 12px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 100px;
    color: var(--primary);
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.15);
    transition: all var(--transition);
}

.lang-switch:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37,99,235,0.18);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: rgba(0,0,0,0.03);
    border: none;
    border-radius: 10px;
    transition: all var(--transition);
}

.menu-toggle:hover {
    background: rgba(37,99,235,0.08);
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Header & Close Button */
.nav-header {
    display: none;
}

.nav-close-btn {
    display: none;
    position: absolute;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.03);
    border: none;
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
}
.nav-close-btn:hover {
    background: rgba(37,99,235,0.08);
}
.nav-close-btn::before,
.nav-close-btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}
.nav-close-btn::before { transform: rotate(45deg); }
.nav-close-btn::after { transform: rotate(-45deg); }

@media (max-width: 768px) {
    .nav-close-btn { display: flex; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--text);
    background: var(--bg-alt);
}

.btn-light {
    background: #fff;
    color: var(--text);
}

.btn-light:hover {
    background: var(--bg-alt);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    gap: 6px;
}

.btn-ghost:hover {
    gap: 12px;
}

.btn-ghost::after {
    content: '→';
    font-size: 16px;
    transition: transform var(--transition);
}

.btn-ghost:hover::after {
    transform: translateX(3px);
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 32px 80px;
    background: var(--bg-alt);
    overflow: hidden;
}

/* Hide decorative circles when hero has a background image */
.hero[style*="background-image"],
.hero[style*="url("] {
    background-size: cover !important;
    background-position: center !important;
}

.hero[style*="url("]::before,
.hero[style*="url("]::after {
    display: none;
}

.hero[style*="url("] h1,
.hero[style*="url("] .hero-label,
.hero[style*="url("] p {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero[style*="url("] .stat-number,
.hero[style*="url("] .stat-label {
    color: #fff;
}

.hero[style*="url("] .btn-outline {
    border-color: rgba(255,255,255,0.8);
    color: #fff;
}

.hero[style*="url("] .btn-outline:hover {
    background: #fff;
    color: var(--text);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,98,58,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero with container wrapper */
.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 80px);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero .btn-group {
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 72px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
    letter-spacing: 0.04em;
}

/* --- Section Spacing --- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-narrow {
    padding: 80px 0;
}

/* --- Feature Grid (4 columns) --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.feature-icon.green { background: var(--primary-light); color: var(--primary); }
.feature-icon.blue { background: #eff6ff; color: #2563eb; }
.feature-icon.orange { background: var(--accent-light); color: var(--accent); }

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Cards Grid (4 columns) --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-image svg {
    width: 48px;
    height: 48px;
}

.card-body {
    padding: 24px;
}

.card-body h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.card-tag.green { background: var(--green-light); color: var(--green); }
.card-tag.blue { background: var(--primary-light); color: var(--primary); }
.card-tag.orange { background: var(--accent-light); color: var(--accent); }

/* --- News Card --- */
.news-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.news-card .card-image {
    position: relative;
}

.news-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card .card-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: auto;
    padding-top: 12px;
}

.news-card .card-body .btn-ghost {
    margin-top: auto;
    padding-top: 16px;
}

/* 新闻卡片图片覆盖标签 */
.card-tag-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}

.card-tag-overlay.green {
    background: rgba(26, 122, 76, 0.85);
    color: #fff;
}

.card-tag-overlay.blue {
    background: rgba(37, 99, 235, 0.85);
    color: #fff;
}

.card-tag-overlay.orange {
    background: rgba(232, 98, 58, 0.85);
    color: #fff;
}

/* 新闻卡片日期行 */
.news-card .card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 13px;
}

.news-card .card-meta::before {
    content: '📅';
    font-size: 13px;
}

/* --- Page Hero (sub pages) --- */
.page-hero {
    padding: 120px 0 64px;
    text-align: center;
    background: var(--bg-alt);
    position: relative;
}

/* Page Hero with background image */
.page-hero[style*="url("] {
    padding: 160px 0 80px;
    background-size: cover !important;
    background-position: center !important;
}

.page-hero[style*="url("] .breadcrumb,
.page-hero[style*="url("] .breadcrumb a {
    color: rgba(255,255,255,0.85);
}

.page-hero[style*="url("] .breadcrumb .current {
    color: #fff;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .sep {
    color: var(--border);
}

.breadcrumb .current {
    color: var(--text);
    font-weight: 500;
}

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

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.col-text h2 {
    margin-bottom: 20px;
}

.col-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.col-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.visual-placeholder svg {
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    padding: 100px 0;
    background: var(--primary);
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 32px;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--bg-alt);
}

.cta-section .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.cta-section .btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* --- Footer --- */
.footer {
    position: relative;
    background: #111;
    color: rgba(255,255,255,0.7);
    padding: 80px 0 40px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(37,99,235,0.7) 25%,
        rgba(232,98,58,0.85) 50%,
        rgba(37,99,235,0.7) 75%,
        transparent 100%
    );
    opacity: 0.8;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer .logo {
    padding: 0;
    color: #fff;
}

.footer .logo::before,
.footer .logo::after {
    display: none;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    padding: 6px 0;
    transition: all var(--transition);
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin: 6px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-lang a {
    color: rgba(255,255,255,0.5);
    margin-left: 16px;
    transition: color var(--transition);
}

.footer-lang a:hover {
    color: #fff;
}

/* Footer QR Code */
.footer-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-qrcode img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,0.15);
}

.footer-qrcode span {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-align: center;
    line-height: 1.4;
}

/* --- News Page Layout --- */
.news-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.news-list {
    display: grid;
    gap: 24px;
}

.news-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
}

.news-item:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.news-item-date {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    opacity: 0.3;
}

.news-item-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    transition: color var(--transition);
}

.news-item:hover .news-item-content h3 {
    color: var(--primary);
}

.news-item-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.news-item-meta {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    gap: 16px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: calc(var(--header-height) + 32px);
}

.sidebar-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-card h4 {
    font-size: 16px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--bg-alt);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.category-tag:hover,
.category-tag.active {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.hot-news-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    cursor: pointer;
    transition: color var(--transition);
}

.hot-news-item:last-child { border-bottom: none; }

.hot-news-item:hover { color: var(--primary); }

.hot-news-item h5 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 4px;
}

.hot-news-item .meta {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   News Detail Modal — Professional Article View
   ============================================ */
.news-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.news-modal-overlay.visible { opacity: 1; }
.news-modal-overlay.closing { opacity: 0; }

.news-modal {
    background: #fff;
    width: 100%;
    max-width: 780px;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 80px rgba(0,0,0,0.3);
    transform: translateY(30px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-modal-overlay.visible .news-modal { transform: translateY(0); }
.news-modal-overlay.closing .news-modal { transform: translateY(30px); }

/* Close button — fixed position */
.news-modal-close {
    position: fixed;
    top: 20px; right: 28px;
    width: 44px; height: 44px;
    border: none;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    transition: all 0.2s ease;
}
.news-modal-close:hover {
    background: rgba(0,0,0,0.7);
    transform: scale(1.1);
}

/* Hero image */
.news-modal-hero {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: #1a1a2e;
}
.news-modal-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.news-modal-overlay.visible .news-modal-hero-img {
    transform: scale(1.02);
}
.news-modal-hero-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}

/* Content area */
.news-modal-content {
    padding: 40px 48px 60px;
    max-width: 720px;
    margin: 0 auto;
}

/* Breadcrumb */
.news-modal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.news-modal-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.news-modal-breadcrumb a:hover { color: var(--primary); }
.news-modal-breadcrumb-sep { color: #ccc; }
.news-modal-breadcrumb-current { color: var(--text-secondary); }

/* Meta top row */
.news-modal-meta-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.news-modal-category {
    display: inline-block;
    padding: 5px 14px;
    background: var(--primary);
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.news-modal-dot {
    color: #ccc;
    font-weight: bold;
}
.news-modal-date {
    font-size: 14px;
    color: var(--text-secondary);
}
.news-modal-readtime {
    font-size: 13px;
    color: var(--text-muted);
}

/* Title */
.news-modal-title {
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 24px;
    color: #111;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Byline */
.news-modal-byline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 28px;
}
.news-modal-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.news-modal-author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #f0f4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.news-modal-author-info {
    display: flex;
    flex-direction: column;
}
.news-modal-author-name {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}
.news-modal-author-role {
    font-size: 12px;
    color: var(--text-muted);
}
.news-modal-share-btn {
    width: 40px; height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.news-modal-share-btn:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    color: var(--primary);
}

/* Lead paragraph (blockquote style) */
.news-modal-lead {
    margin: 0 0 32px;
    padding: 0 0 0 20px;
    border-left: 3px solid var(--primary);
    font-size: 18px;
    font-weight: 400;
    color: #444;
    line-height: 1.75;
    font-style: normal;
}

/* Body text */
.news-modal-body {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}
.news-modal-body p {
    margin: 0 0 28px;
}
.news-modal-body p:last-child { margin-bottom: 0; }

/* Tags */
.news-modal-tags {
    display: flex;
    gap: 10px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.news-modal-tag {
    display: inline-block;
    padding: 6px 16px;
    background: #f5f5f5;
    color: #666;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.2s;
}
.news-modal-tag:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Divider */
.news-modal-divider {
    height: 1px;
    background: #e8e8e8;
    margin: 32px 0 24px;
}

/* Article nav */
.news-modal-nav {
    text-align: center;
    padding: 8px 0 20px;
}
.news-modal-nav-hint {
    font-size: 13px;
    color: #bbb;
    letter-spacing: 1px;
}

/* Footer */
.news-modal-footer {
    text-align: center;
    padding-top: 8px;
}
.news-modal-close-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.news-modal-close-btn:hover {
    background: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

@media (max-width: 768px) {
    .news-modal-hero { height: 220px; }
    .news-modal-content { padding: 28px 20px 48px; }
    .news-modal-title { font-size: 24px; }
    .news-modal-lead { font-size: 16px; }
    .news-modal-body { font-size: 15px; }
    .news-modal-close { top: 12px; right: 12px; width: 36px; height: 36px; }
    .news-modal-byline { flex-direction: column; gap: 16px; align-items: flex-start; }
    .news-modal-breadcrumb { display: none; }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--bg);
}

.page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.page-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* --- Projects Page --- */
.project-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.project-section:last-child { border-bottom: none; }

.project-section .section-header {
    margin-bottom: 48px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.project-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.project-card .badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.badge-brand { background: var(--primary-light); color: var(--primary); }
.badge-edu { background: #eff6ff; color: #2563eb; }
.badge-comm { background: #fef3c7; color: #d97706; }
.badge-intl { background: #f3e8ff; color: #7c3aed; }
.badge-health { background: #fce7f3; color: #db2777; }
.badge-env { background: var(--green-light); color: var(--green); }

.project-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.project-card .subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.project-card .info-row {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.project-card .info-row span strong {
    color: var(--text);
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.project-card .desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- About Page --- */
.about-visual {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-light), rgba(37,99,235,0.08));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-visual img {
    transition: transform 0.5s ease;
}

.about-visual:hover img {
    transform: scale(1.03);
}

.about-visual svg {
    width: 100px;
    height: 100px;
    opacity: 0.4;
}

/* Honor Grid */
.honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.honor-card {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.honor-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.honor-card .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.honor-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.honor-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mission-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

.mission-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.mission-card .icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.mission-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Party Building Section */
#party-building {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
}

.party-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
}

.party-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all var(--transition);
    border-top: 3px solid #c41e3a;
    box-shadow: var(--shadow-sm);
}

.party-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(196, 30, 58, 0.2);
}

.party-card .icon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
}

.party-card-content {
    flex: 1;
}

.party-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text);
    line-height: 1.3;
}

.party-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Org Structure */
.org-chart {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.org-top {
    display: inline-block;
    padding: 16px 32px;
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.org-line {
    width: 2px;
    height: 30px;
    background: var(--border);
    margin: 0 auto;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.org-node {
    padding: 12px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    background: var(--bg);
    transition: all var(--transition);
}

.org-node:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.org-departments {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.org-dept {
    padding: 10px 18px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
}

/* Contact Info */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-item {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
}

.contact-item .icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 15px;
    color: var(--text);
}

/* --- Volunteer Page --- */
.volunteer-intro {
    max-width: 700px;
    margin: 0 auto 64px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.benefit-card {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.benefit-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.benefit-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.benefit-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.step p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Form */
.form-container {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.form-title {
    text-align: center;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group .required {
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: var(--font-sans);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--text);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-actions {
    text-align: center;
    margin-top: 32px;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
    display: none;
}

.form-success.show { display: block; }

.form-success .icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.form-success h3 {
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-secondary);
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Requirements List */
.req-list {
    max-width: 600px;
    margin: 0 auto;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.req-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* Direction Tags */
.direction-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.dir-tag {
    padding: 12px 24px;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.dir-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }

/* Scroll-triggered animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Agreement Page --- */
.agreement-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 0;
}

.agreement-page h2 {
    text-align: center;
    margin-bottom: 8px;
}

.agreement-page .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.agreement-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 40px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.agreement-content h3 {
    font-size: 20px;
    color: var(--text);
    margin: 32px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.agreement-content h3:first-child {
    margin-top: 0;
}

.agreement-content p {
    margin-bottom: 12px;
}

.agreement-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.agreement-content ul li {
    list-style: decimal;
    padding: 4px 0;
}

.agreement-actions {
    text-align: center;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .honor-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .news-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .project-grid { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 32px; flex-wrap: wrap; }
    .stat-number { font-size: 32px; }
    .council-grid { grid-template-columns: repeat(3, 1fr); }
    .partner-logo-grid { grid-template-columns: repeat(3, 1fr); }
    .disclosure-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .header .container { padding: 0 28px; }
    .section { padding: 64px 0; }
    .section-header { margin-bottom: 40px; }
    .section-desc { font-size: 16px; padding: 0 8px; }
    .page-hero { padding: 100px 0 48px; }
    .page-hero h1 { font-size: clamp(28px, 7vw, 42px); }
    .page-hero p { font-size: 16px; padding: 0 8px; }
    
    /* Breadcrumb */
    .breadcrumb { font-size: 13px; flex-wrap: wrap; }
    
    .menu-toggle { display: flex; }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        height: 100dvh;
        z-index: 1001;
        background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(250,250,250,0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 96px 24px 40px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    }

    .nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    }

    .nav.open {
        transform: translateX(0);
    }

    /* Prevent body scroll when nav is open */
    body.nav-open { overflow: hidden; }

    .nav-link {
        padding: 16px 20px;
        font-size: 17px;
        border-radius: 12px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-link::after {
        position: static;
        transform: none;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--primary);
        opacity: 0;
        transition: opacity var(--transition);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: none;
        opacity: 1;
    }

    .nav-link.active {
        background: rgba(37,99,235,0.08);
        color: var(--primary);
    }

    .nav-link[href$="volunteer.html"] {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        justify-content: center;
        border-radius: 14px;
        padding: 18px 20px;
        font-size: 17px;
        font-weight: 600;
        box-shadow: 0 6px 18px rgba(37,99,235,0.25);
    }

    .nav-link[href$="volunteer.html"]::after {
        display: none;
    }

    .nav-link[href$="partner.html"] {
        margin-top: 4px;
        text-align: center;
        justify-content: center;
        color: var(--text-secondary);
        background: transparent;
        border: 1px solid var(--border);
    }

    .nav-link[href$="partner.html"]:hover {
        background: rgba(37,99,235,0.04);
        border-color: rgba(37,99,235,0.2);
    }

    .nav-link[href$="partner.html"]::after {
        display: none;
    }

    .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 8px;
        padding-top: 16px;
        border-top: 1px solid var(--border);
    }

    .lang-switch {
        margin-left: 0;
        text-align: center;
        padding: 14px;
        flex-shrink: 0;
        justify-content: center;
        border-radius: 14px;
        font-size: 14px;
        background: #fff;
        border: 1px solid var(--border);
    }

    .lang-switch:hover {
        background: var(--primary);
        border-color: var(--primary);
    }

    /* Mobile Nav Header */
    .nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 72px;
        padding: 0 24px;
        z-index: 1002;
        pointer-events: none;
    }

    .nav-header .nav-header-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        pointer-events: auto;
        color: var(--text);
        font-weight: 700;
        font-size: 17px;
    }

    .nav-header .nav-header-logo img {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .nav-header .nav-close-btn {
        display: flex;
        position: relative;
        top: auto;
        right: auto;
        width: 44px;
        height: 44px;
        background: rgba(0,0,0,0.04);
        pointer-events: auto;
    }

    .nav-header .nav-close-btn:hover {
        background: rgba(37,99,235,0.1);
    }
    
    /* Header */
    .header { height: auto; min-height: 64px; }
    .header-inner { height: auto; min-height: 64px; padding: 10px 0; }
    .logo { gap: 12px; }
    .logo-title { font-size: 18px; }
    .logo-subtitle { font-size: 12px; }
    .logo .logo-img { width: 38px; height: 38px; }
    .logo::before {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }
    .menu-toggle {
        width: 44px;
        height: 44px;
        padding: 0;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.04);
        border-radius: 12px;
    }
    .menu-toggle:hover { background: rgba(37,99,235,0.1); }
    .menu-toggle span { width: 20px; height: 2.5px; }
    
    /* Hero */
    .hero { min-height: auto; padding: 100px 0 64px; }
    .hero h1 { font-size: clamp(30px, 8vw, 44px); }
    .hero p { font-size: 16px; padding: 0; }
    .hero-content { max-width: 100%; }
    .hero > .container { text-align: center; }
    .hero .hero-label { font-size: 13px; }
    .hero-stats { gap: 20px; margin-top: 48px; padding-top: 28px; justify-content: center; }
    .stat-number { font-size: 28px; }
    .stat-label { font-size: 12px; }
    
    /* CTA Section */
    .cta-section { padding: 64px 20px; }
    .cta-section h2 { font-size: 26px; }
    .cta-section p { font-size: 16px; padding: 0; }
    
    /* Grid layouts - all single column */
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 32px 24px; }
    .cards-grid { grid-template-columns: 1fr; }
    .card-body { padding: 20px; }
    .honor-grid { grid-template-columns: 1fr 1fr; }
    .honor-card { padding: 24px 16px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-card { padding: 28px 20px; }
    .steps { grid-template-columns: 1fr 1fr; gap: 20px; }
    .mission-grid { grid-template-columns: 1fr; }
    .mission-card { padding: 32px 24px; }
    .party-grid { grid-template-columns: 1fr; gap: 20px; max-width: 100%; }
    .party-card { padding: 28px 24px; }
    .disclosure-grid { grid-template-columns: 1fr; }
    .disclosure-card { padding: 24px 20px; }
    
    /* Two column layout */
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    
    /* Project page */
    .project-section { padding: 64px 0; }
    .project-grid { grid-template-columns: 1fr; }
    .project-card { padding: 24px 20px; }
    .project-card .info-row { flex-direction: column; gap: 8px; }
    
    /* About timeline */
    .timeline { padding-left: 28px; }
    .timeline::before { left: 10px; }
    .timeline-item::before { left: -24px; }
    .timeline-year { font-size: 20px; }
    .timeline-content h4 { font-size: 16px; }
    
    /* Org chart */
    .org-chart { max-width: 100%; }
    .org-top { padding: 12px 24px; font-size: 15px; }
    .org-node { padding: 10px 16px; font-size: 13px; }
    .org-departments { gap: 8px; }
    .org-dept { padding: 8px 12px; font-size: 12px; }
    
    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 20px; }
    .contact-item { padding: 28px 20px; }
    
    /* Footer */
    .footer { padding: 56px 0 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-qrcode { align-items: flex-start; }
    .footer-qrcode img { width: 100px; height: 100px; }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
    .footer-lang { margin-left: 0; }
    .footer-lang a { margin-left: 0; margin-right: 16px; }
    
    /* News */
    .news-item { grid-template-columns: 1fr; padding: 20px; }
    .news-item-date { font-size: 32px; }
    
    /* Form */
    .form-container { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .form-group { margin-bottom: 16px; }
    
    /* Button group */
    .btn-group { flex-direction: column; align-items: stretch; width: 100%; }
    .btn-group .btn { width: 100%; text-align: center; justify-content: center; }
    .btn { padding: 12px 24px; font-size: 14px; }
    
    /* Single card */
    .single-card { padding: 28px 20px; }
    
    /* Volunteer intro */
    .volunteer-intro { padding: 0; }
    .volunteer-intro h2 { font-size: 24px; }
    .direction-tags { justify-content: center; }
    .dir-tag { padding: 10px 16px; font-size: 13px; }
    .req-list { padding: 0 0 0 20px; }
    .req-list li { font-size: 14px; padding: 8px 0; }
    
    /* Partner page */
    .partner-path-body { padding: 24px 20px; }
    .partner-path-header { padding: 32px 20px 24px; }
    .advantage-card { padding: 28px 20px; }
    .tier-card { padding: 28px 20px; }
    
    /* Council grid */
    .council-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .council-card-info { padding: 16px 12px; }
    
    /* Partner logo grid */
    .partner-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .partner-logo-card { padding: 24px 16px; }
}

/* Extra small screens (480px and below) */
@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .header .container { padding: 0 24px; }
    .section { padding: 48px 0; }
    .section-header { margin-bottom: 32px; }
    .section-label { font-size: 12px; }
    .section-desc { font-size: 15px; }
    
    /* Nav tighter on very small screens */
    .nav { padding: 84px 16px 32px; gap: 2px; }
    .nav-link { padding: 14px 14px; font-size: 16px; }
    .nav-link[href$="volunteer.html"],
    .nav-link[href$="partner.html"] { padding: 16px 14px; }
    .lang-switch { padding: 12px; font-size: 13px; }
    .nav-header { height: 64px; padding: 0 20px; }
    .nav-header .nav-header-logo img { width: 28px; height: 28px; }
    .nav-header .nav-header-logo { font-size: 15px; }
    .nav-header .nav-close-btn { width: 40px; height: 40px; }
    
    .header-inner { min-height: 60px; padding: 8px 0; }
    .logo { gap: 10px; }
    .logo-title { font-size: 16px; }
    .logo-subtitle { font-size: 11px; }
    .logo .logo-img { width: 34px; height: 34px; }
    .logo::before { width: 42px; height: 42px; }
    .menu-toggle { width: 40px; height: 40px; border-radius: 10px; }
    
    .hero { padding: 88px 0 48px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 15px; }
    .hero-stats { flex-wrap: wrap; justify-content: center; }
    .stat-item { flex: 0 1 calc(50% - 12px); }
    
    .page-hero { padding: 88px 0 40px; }
    .page-hero h1 { font-size: 26px; }
    
    .btn { padding: 12px 20px; font-size: 14px; width: 100%; }
    .btn-group .btn { width: 100%; }
    
    .honor-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .council-grid { grid-template-columns: 1fr; }
    .partner-logo-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
    
    .feature-card { padding: 24px 16px; }
    .card-body { padding: 16px; }
    .mission-card { padding: 24px 16px; }
    .party-card { padding: 24px 20px; flex-direction: column; gap: 16px; }
    .party-card .icon { width: 48px; height: 48px; font-size: 24px; }
    .party-card h3 { font-size: 18px; }
    .honor-card { padding: 20px 12px; }
    
    .form-container { padding: 24px 16px; }
    .form-group label { font-size: 14px; }
    .form-group input, .form-group select, .form-group textarea { font-size: 15px; }
    
    .cta-section { padding: 48px 16px; }
    .cta-section h2 { font-size: 24px; }
    
    .footer { padding: 48px 0 24px; }
    .footer-grid { gap: 24px; }
    .footer-brand p { font-size: 13px; }
    
    .timeline { padding-left: 24px; }
    .timeline::before { left: 8px; }
    .timeline-item::before { left: -20px; width: 10px; height: 10px; }
    
    .project-card { padding: 20px 16px; }
    .project-card h4 { font-size: 17px; }
    .project-section { padding: 48px 0; }
    
    .tier-card { padding: 24px 16px; }
    .partner-path-body { padding: 20px 16px; }
    .partner-path-header { padding: 24px 16px 20px; }
}

/* ==========================================
   Partner Page — International Redesign
   ========================================== */

/* --- Partner Stats Bar --- */
.partner-stats-bar {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0;
}
.partner-stat {
    text-align: center;
}
.partner-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-display);
}
.partner-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .partner-stats-bar { gap: 40px; flex-wrap: wrap; }
    .partner-stat-number { font-size: 32px; }
}

/* --- Partner Path Cards — Modern Stacked --- */
.partner-path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 12px;
}

.partner-path-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.partner-path-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.1);
    border-color: transparent;
}

.partner-path-header {
    padding: 36px 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.partner-path-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    border-radius: 3px;
}
.partner-path-header.path-supervisor { background: linear-gradient(160deg, #fef2f2 0%, #fee2e2 100%); }
.partner-path-header.path-supervisor::after { background: #dc2626; }
.partner-path-header.path-donate { background: linear-gradient(160deg, #eff6ff 0%, #e0ecff 100%); }
.partner-path-header.path-donate::after { background: #2563eb; }
.partner-path-header.path-cop { background: linear-gradient(160deg, #ecfdf5 0%, #d4f7e2 100%); }
.partner-path-header.path-cop::after { background: #059669; }
.partner-path-header.path-business { background: linear-gradient(160deg, #fffbeb 0%, #fef3c7 100%); }
.partner-path-header.path-business::after { background: #d97706; }

.partner-path-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
}
.partner-path-header.path-supervisor .partner-path-icon { background: rgba(220,38,38,0.1); }
.partner-path-header.path-donate .partner-path-icon { background: rgba(37,99,235,0.1); }
.partner-path-header.path-cop .partner-path-icon { background: rgba(5,150,105,0.1); }
.partner-path-header.path-business .partner-path-icon { background: rgba(217,119,6,0.1); }

.partner-path-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.partner-path-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.partner-path-body {
    padding: 28px 28px 32px;
}

.partner-path-body > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.partner-path-body h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Feature list with checkmarks */
.partner-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.partner-feature-list li {
    position: relative;
    padding: 7px 0 7px 28px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}
.partner-feature-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: currentColor;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/cover no-repeat;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/cover no-repeat;
    opacity: 0.4;
}
.partner-path-card:nth-child(1) .partner-feature-list li::before { color: #2563eb; }
.partner-path-card:nth-child(2) .partner-feature-list li::before { color: #059669; }
.partner-path-card:nth-child(3) .partner-feature-list li::before { color: #d97706; }

/* Keep old .partner-list for backward compatibility */
.partner-list {
    list-style: none;
    padding: 0;
}
.partner-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}
.partner-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* --- Partner Process (How It Works) --- */
.partner-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 12px;
}
.partner-process-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
}
.partner-process-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.partner-process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
}
.partner-process-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.partner-process-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .partner-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .partner-process-grid { grid-template-columns: 1fr; }
}

/* --- Partner Advantages — Card Grid --- */
.partner-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg);
    transition: all var(--transition);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.advantage-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.advantage-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.advantage-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* --- Partner Tiers — Pricing-style Cards --- */
.partner-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
    margin-top: 12px;
}

.tier-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.tier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.tier-card-header {
    padding: 32px 28px 24px;
}
.tier-card:nth-child(1) .tier-card-header { background: linear-gradient(160deg, #f8fafc, #f1f5f9); }
.tier-card:nth-child(2) .tier-card-header { background: linear-gradient(160deg, #eff6ff, #dbeafe); }
.tier-card:nth-child(3) .tier-card-header { background: linear-gradient(160deg, #ecfdf5, #d1fae5); }

.tier-card-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.tier-card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.tier-card-header .tier-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tier-amount {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    padding: 16px 28px;
    background: var(--primary-light);
    margin: 0;
}

.tier-card-body {
    padding: 28px;
    text-align: left;
}

.tier-card-body .partner-feature-list {
    margin: 0;
}
.tier-card-body .partner-feature-list li {
    font-size: 14px;
    padding: 8px 0 8px 28px;
}

.tier-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(37,99,235,0.06);
    position: relative;
    transform: translateY(-8px);
}
.tier-featured::before {
    content: attr(data-recommend);
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 0 0 12px 12px;
    white-space: nowrap;
    z-index: 2;
}
.tier-featured:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg), 0 0 0 6px rgba(37,99,235,0.1);
}

/* --- Partner CTA Section --- */
.partner-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 50%, #2563eb 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.partner-cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.partner-cta-section::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.partner-cta-section .container {
    position: relative;
    z-index: 1;
}
.partner-cta-section h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}
.partner-cta-section p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.partner-cta-section .btn-group {
    justify-content: center;
    gap: 16px;
}
.partner-cta-section .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.partner-cta-section .btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

/* --- Partner FAQ --- */
.partner-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.partner-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg);
    transition: all var(--transition);
}
.partner-faq-item:hover {
    border-color: var(--primary);
}
.partner-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    user-select: none;
    gap: 16px;
}
.partner-faq-q::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.partner-faq-item.open .partner-faq-q::after {
    content: '\2212';
    transform: rotate(180deg);
}
.partner-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.partner-faq-item.open .partner-faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .partner-path-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
    .partner-advantage-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-tier-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .tier-featured { transform: none; }
    .tier-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .partner-advantage-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .partner-cta-section h2 { font-size: 28px; }
}

/* --- Information Disclosure --- */
.disclosure-subsection {
    margin-bottom: 40px;
}
.disclosure-subsection:last-child {
    margin-bottom: 0;
}
.disclosure-subsection-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}
.disclosure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.disclosure-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.disclosure-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.disclosure-card .disclosure-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    width: fit-content;
}

.disclosure-card .disclosure-category.cat-financial { background: #e8f5ee; color: var(--green); }
.disclosure-card .disclosure-category.cat-annual { background: var(--primary-light); color: var(--primary); }
.disclosure-card .disclosure-category.cat-annual_info { background: var(--primary-light); color: var(--primary); }
.disclosure-card .disclosure-category.cat-project { background: #eff6ff; color: #2563eb; }
.disclosure-card .disclosure-category.cat-audit { background: #fef3c7; color: #d97706; }
.disclosure-card .disclosure-category.cat-governance { background: #f3e8ff; color: #7c3aed; }
.disclosure-card .disclosure-category.cat-constitution { background: #fff0e6; color: #e8650a; }
.disclosure-card .disclosure-category.cat-association { background: #eff6ff; color: #2563eb; }
.disclosure-card .disclosure-category.cat-other { background: #f0f0f0; color: #666; }

.disclosure-card h4 {
    font-size: 17px;
    line-height: 1.5;
    flex: 1;
}

.disclosure-card .disclosure-meta {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    gap: 16px;
}

.disclosure-card .disclosure-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--transition);
    text-decoration: none;
}

.disclosure-card .disclosure-link:hover {
    gap: 10px;
}

.disclosure-card .disclosure-link::after {
    content: '→';
    transition: transform var(--transition);
}

.disclosure-card .disclosure-link:hover::after {
    transform: translateX(3px);
}

/* PDF 操作按钮组 */
.disclosure-pdf-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.disclosure-link-pdf,
.disclosure-link-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-sans);
    border: none;
    text-decoration: none;
}

.disclosure-card .disclosure-link-pdf {
    background: var(--primary);
    color: #fff;
}

.disclosure-card .disclosure-link-pdf:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.disclosure-link-download {
    background: #fff;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.disclosure-link-download:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.disclosure-link-pdf::before {
    content: '👁';
}

.disclosure-link-download::before {
    content: '⬇';
}

.disclosure-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 64px 24px;
    color: var(--text-muted);
    font-size: 15px;
}

/* Disclosure Year Filter */
.disclosure-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.disclosure-filter-btn {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: var(--bg);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-sans);
}

.disclosure-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.disclosure-filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 1024px) {
    .disclosure-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .disclosure-grid { grid-template-columns: 1fr; }
}

/* --- Project Card Link --- */
.project-card-link {
    display: block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.project-card-link:hover {
    border-color: var(--primary);
}

.project-card-link h4 .card-arrow {
    display: inline-block;
    opacity: 0;
    transform: translateX(-6px);
    transition: all var(--transition);
    color: var(--primary);
}

.project-card-link:hover h4 .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.project-card-link .desc {
    transition: color var(--transition);
}

.project-card-link:hover .desc {
    color: var(--primary);
}

.project-card-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 6px;
    transition: all var(--transition);
}

.project-card-link:hover .project-card-btn {
    background: var(--primary);
    color: #fff;
}

/* ============================================
   YCCDL Detail Page – International Edition
   ============================================ */

/* Highlight key terms */
strong.hl {
    color: var(--primary);
    font-weight: 800;
}
.ycan-hero strong.hl {
    color: #fff;
    background: rgba(59, 130, 246, 0.72);
    padding: 1px 7px;
    border-radius: 5px;
    font-weight: 800;
    text-shadow: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.22);
}

/* --- Hero --- */
.ycan-hero {
    background: linear-gradient(170deg, #f0f7ff 0%, #e8f5ee 50%, #fef3c7 100%);
    position: relative;
    overflow: hidden;
}

/* When YCAN hero has a background image, make text white */
.ycan-hero[style*="url("] .ycan-hero-text h1,
.ycan-hero[style*="url("] .ycan-hero-text .ycan-hero-subtitle,
.ycan-hero[style*="url("] .ycan-hero-text .ycan-hero-desc {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.ycan-hero[style*="url("] .ycan-hero-badge {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
}

.ycan-hero[style*="url("] .breadcrumb,
.ycan-hero[style*="url("] .breadcrumb a {
    color: rgba(255,255,255,0.85);
}

/* Hero decorative globe */
.ycan-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
    animation: ycanGlobeFloat 20s ease-in-out infinite;
}

@keyframes ycanGlobeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.05); }
}

.ycan-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,122,76,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.ycan-hero-content {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 40px 0 20px;
}

.ycan-hero-text {
    flex: 1;
    max-width: 800px;
}

.ycan-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: rgba(37,99,235,0.08);
    color: var(--primary);
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(37,99,235,0.12);
}

.ycan-hero-text h1 {
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.15;
    margin-bottom: 12px;
}

.ycan-hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin: 0 0 24px;
    font-weight: 500;
    font-family: var(--font-display);
}

.ycan-abbr {
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.ycan-hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 760px;
}

/* --- Stats Bar --- */
.ycan-stats-bar {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 0;
    position: relative;
    z-index: 10;
}

.ycan-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 32px 0;
}

.ycan-stat-item {
    text-align: center;
    padding: 0 48px;
}

.ycan-stat-value {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.ycan-stat-blue .ycan-stat-num {
    color: var(--primary);
    font-weight: 900;
}

.ycan-stat-unit {
    font-size: 0.65em;
    color: var(--text-main);
    font-weight: 600;
    margin-left: 2px;
}

.ycan-stat-num {
    display: inline-block;
}

.ycan-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.ycan-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* --- Section --- */
.ycan-section {
    padding: 100px 0;
}

.ycan-section-alt {
    background: var(--bg-alt);
}

/* --- Advantages (3 cards) --- */
.ycan-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.ycan-adv-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px 32px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ycan-adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ycan-adv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.08);
    border-color: transparent;
}

.ycan-adv-card:hover::before {
    transform: scaleX(1);
}

.ycan-adv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    font-size: 36px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #e0ecf8 100%);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.ycan-adv-card:nth-child(2) .ycan-adv-icon {
    background: linear-gradient(135deg, var(--green-light) 0%, #d4ede0 100%);
}

.ycan-adv-card:nth-child(3) .ycan-adv-icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde9a0 100%);
}

.ycan-adv-card:hover .ycan-adv-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(37,99,235,0.15);
}

.ycan-adv-card:nth-child(2):hover .ycan-adv-icon {
    box-shadow: 0 8px 24px rgba(26,122,76,0.15);
}

.ycan-adv-card:nth-child(3):hover .ycan-adv-icon {
    box-shadow: 0 8px 24px rgba(200,160,0,0.15);
}

.ycan-adv-card h4 {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 700;
}

.ycan-adv-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.ycan-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 16px 24px;
    background: var(--primary-light);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.ycan-note p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Pipeline (horizontal steps) --- */
.ycan-pipeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.ycan-pipeline-step {
    text-align: center;
    padding: 28px 20px;
    flex: 0 0 auto;
    max-width: 200px;
    position: relative;
    transition: transform 0.3s ease;
}

.ycan-pipeline-step:hover {
    transform: translateY(-6px);
}

.pipeline-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(37,99,235,0.25);
    transition: all 0.3s ease;
}

.ycan-pipeline-step:nth-child(7) .pipeline-num { background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%); box-shadow: 0 6px 20px rgba(8,145,178,0.25); }
.ycan-pipeline-step:nth-child(13) .pipeline-num { background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%); box-shadow: 0 6px 20px rgba(124,58,237,0.25); }
.ycan-pipeline-step:nth-child(19) .pipeline-num { background: linear-gradient(135deg, #059669 0%, #10b981 100%); box-shadow: 0 6px 20px rgba(5,150,105,0.25); }
.ycan-pipeline-step:nth-child(25) .pipeline-num { background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%); box-shadow: 0 6px 20px rgba(220,38,38,0.25); }

.ycan-pipeline-step:hover .pipeline-num {
    transform: scale(1.1);
}

.ycan-pipeline-step h4 {
    font-size: 17px;
    margin-bottom: 10px;
    font-weight: 700;
}

.ycan-pipeline-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.ycan-pipeline-arrow {
    display: flex;
    align-items: center;
    padding-top: 44px;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    opacity: 0.5;
}

/* --- Org Grid --- */
.ycan-org-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.ycan-org-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ycan-org-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    border-radius: 0 0 0 80px;
    background: var(--primary-light);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.ycan-org-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.07);
    border-color: transparent;
}

.ycan-org-card:hover::after {
    opacity: 1;
}

.ycan-org-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.12;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    line-height: 1;
}

.ycan-org-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.ycan-org-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    position: relative;
    z-index: 1;
}

.ycan-org-card ul {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.ycan-org-card ul li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.65;
}

.ycan-org-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
}

/* --- Biz Grid --- */
.ycan-biz-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.ycan-biz-grid .ycan-biz-card {
    flex: 0 1 calc((100% - 56px) / 3);
    min-width: 280px;
}

.ycan-biz-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ycan-biz-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.07);
    border-color: transparent;
}

.ycan-biz-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.ycan-biz-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-light), #dbeafe);
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.35s ease;
}

.ycan-biz-card:hover .ycan-biz-num {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 6px 18px rgba(37,99,235,0.3);
}

.ycan-biz-header h4 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.ycan-biz-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* --- Timeline (international style) --- */
.ycan-timeline {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

/* Central vertical line */
.ycan-timeline::before {
    content: '';
    position: absolute;
    left: 104px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--green) 50%, var(--primary) 100%);
    opacity: 0.25;
    border-radius: 1px;
}

.ycan-timeline-item {
    display: flex;
    gap: 36px;
    padding-bottom: 48px;
    position: relative;
    align-items: flex-start;
}

.ycan-timeline-item:last-child {
    padding-bottom: 0;
}

.ycan-timeline-period {
    flex-shrink: 0;
    width: 104px;
    padding: 10px 0;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    text-align: right;
    position: relative;
    z-index: 1;
}

/* Timeline dot */
.ycan-timeline-period::after {
    content: '';
    position: absolute;
    right: -41px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.12);
    z-index: 2;
}

.ycan-timeline-item:nth-child(even) .ycan-timeline-period::after {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(26,122,76,0.12);
}

.ycan-timeline-content {
    flex: 1;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 32px;
    transition: all 0.3s ease;
    position: relative;
}

.ycan-timeline-content:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border-color: transparent;
    transform: translateX(4px);
}

.ycan-timeline-content h4 {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 700;
}

.ycan-timeline-content ul {
    list-style: none;
    padding: 0;
}

.ycan-timeline-content ul li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 5px 0 5px 22px;
    position: relative;
    line-height: 1.7;
}

.ycan-timeline-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.35;
}

/* --- Talent Grid --- */
.ycan-talent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ycan-talent-card {
    text-align: center;
    padding: 56px 32px 48px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--bg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ycan-talent-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(circle at 50% 0%, var(--primary-light) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ycan-talent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.08);
    border-color: transparent;
}

.ycan-talent-card:hover::before {
    opacity: 1;
}

.ycan-talent-level {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(37,99,235,0.25);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.ycan-talent-card:nth-child(2) .ycan-talent-level {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    box-shadow: 0 8px 24px rgba(124,58,237,0.25);
}

.ycan-talent-card:nth-child(3) .ycan-talent-level {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 8px 24px rgba(5,150,105,0.25);
}

.ycan-talent-card:hover .ycan-talent-level {
    transform: scale(1.1);
}

.ycan-talent-card h4 {
    font-size: 19px;
    margin-bottom: 14px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.ycan-talent-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* --- Ecosystem --- */
.ycan-ecosystem {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.ycan-eco-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 28px;
    border-radius: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.35s ease;
    min-width: 140px;
}

.ycan-eco-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border-color: transparent;
}

.ycan-eco-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-light), #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ycan-eco-icon {
    font-size: 26px;
}

.ycan-eco-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.ycan-eco-tag {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* --- CTA Enhanced --- */
.ycan-cta-section {
    padding: 100px 0 120px;
    background: var(--bg-alt);
}

.ycan-cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 72px 56px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 50%, #1e40af 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(37,99,235,0.2);
}

.ycan-cta-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
    pointer-events: none;
}

.ycan-cta-content {
    position: relative;
    z-index: 1;
}

.ycan-cta-card h2 {
    color: #fff;
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: 20px;
}

.ycan-cta-card p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.btn-ghost-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-ghost-cta:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* ==================== YCAN Responsive ==================== */

@media (max-width: 1200px) {
    .ycan-pipeline { gap: 8px; }
    .ycan-pipeline-arrow { display: none; }
    .ycan-pipeline-step { max-width: 160px; }
    .ycan-org-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .ycan-advantages { grid-template-columns: repeat(2, 1fr); }
    .ycan-org-grid { grid-template-columns: repeat(2, 1fr); }
    .ycan-biz-grid .ycan-biz-card { flex: 0 1 calc((100% - 28px) / 2); min-width: 240px; }
    .ycan-talent-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .ycan-pipeline { justify-content: flex-start; }
    .ycan-stats-grid { flex-wrap: wrap; gap: 24px; }
    .ycan-stat-divider { display: none; }
    .ycan-stat-item { padding: 0 24px; }
}

@media (max-width: 768px) {
    .ycan-section { padding: 64px 0; }
    .ycan-advantages { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
    .ycan-org-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .ycan-biz-grid { max-width: 480px; }
    .ycan-biz-grid .ycan-biz-card { flex: 1 1 100%; min-width: 0; }
    .ycan-timeline-item { flex-direction: column; gap: 16px; }
    .ycan-timeline::before { left: 23px; }
    .ycan-timeline-period { width: auto; text-align: left; padding-left: 48px; }
    .ycan-timeline-period::after { left: 17px; right: auto; }
    .ycan-timeline-content:hover { transform: none; }
    .ycan-hero-subtitle { font-size: 17px; }
    .ycan-hero-desc { font-size: 15px; }
    .ycan-cta-card { padding: 48px 28px; border-radius: 24px; }
    .ycan-hero-content { padding: 20px 0 12px; }
    .ycan-stats-grid { padding: 24px 0; }
    .ycan-stat-item { padding: 0 16px; }
    .ycan-stat-value { font-size: 28px; }
    .ycan-pipeline { justify-content: center; }
    .ycan-pipeline-step { flex: 0 0 auto; min-width: 130px; }
    .ycan-eco-grid { justify-content: center; }
    .ycan-cta-content h2 { font-size: 26px; }
    .ycan-cta-content p { font-size: 15px; }
    .ycan-section .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .ycan-pipeline-step { max-width: 100%; min-width: 0; width: 100%; }
    .ycan-cta-card { padding: 36px 16px; }
    .ycan-adv-card { padding: 32px 20px 28px; }
    .ycan-org-card { padding: 24px 16px 20px; }
    .ycan-biz-card { padding: 24px 20px; }
    .ycan-talent-card { padding: 32px 20px 28px; }
    .ycan-eco-item { min-width: 90px; padding: 14px 16px; }
    .ycan-stats-grid { gap: 12px; }
    .ycan-stat-item { padding: 0 12px; }
    .ycan-stat-value { font-size: 24px; }
    .ycan-hero h1 { font-size: 28px; }
    .ycan-hero-content { padding: 12px 0 8px; }
}

/* ============================================
   四联漫画大赛详情页 - Comic Page
   ============================================ */

/* --- Comic Hero --- */
.comic-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(170deg, #f0fdf4 0%, #eff6ff 30%, #fefce8 60%, #fdf2f8 100%);
    overflow: hidden;
}

.comic-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.comic-hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -250px;
    right: -150px;
    background: radial-gradient(circle, rgba(26,122,76,0.08) 0%, transparent 70%);
    animation: floatSlow 8s ease-in-out infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
    animation: floatSlow 6s ease-in-out infinite reverse;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 50%;
    background: radial-gradient(circle, rgba(255,193,7,0.05) 0%, transparent 70%);
    animation: floatSlow 10s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.03); }
}

.comic-hero-dots {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(26,122,76,0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.comic-hero .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 32px;
}

.comic-hero-content {
    display: flex;
    align-items: center;
    gap: 64px;
}

.comic-hero-text {
    flex: 1;
}

.comic-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
    background: linear-gradient(135deg, rgba(26,122,76,0.1), rgba(26,122,76,0.05));
    border: 1px solid rgba(26,122,76,0.15);
    border-radius: 30px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.comic-hero-text h1 {
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.2;
    margin-bottom: 12px;
    color: #0a2e1a;
}

.comic-hero-highlight {
    background: linear-gradient(135deg, var(--green), #2d8c5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comic-hero-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.comic-hero-taglines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.comic-hero-tagline-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-secondary);
}

.comic-hero-tagline-icon {
    font-size: 20px;
}

/* Comic Hero Visual (right side) */
.comic-hero-visual {
    flex-shrink: 0;
}

.comic-hero-frame {
    width: 260px;
    padding: 12px;
    background: #fff;
    border: 2px solid rgba(26,122,76,0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(26,122,76,0.08);
    transform: rotate(3deg);
    transition: transform 0.4s ease;
}

.comic-hero-frame:hover {
    transform: rotate(0deg) translateY(-4px);
}

.comic-hero-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.comic-panel {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.panel-1 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.panel-2 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.panel-3 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.panel-4 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }

.comic-panel:hover {
    transform: scale(1.08);
}

/* --- Comic Section --- */
.comic-section {
    padding: 96px 0;
}

.comic-section-alt {
    background: var(--bg-alt);
}

.comic-section .section-header {
    margin-bottom: 56px;
}

.comic-section .section-desc {
    margin: 12px auto 0;
    color: var(--text-muted);
    font-size: 16px;
}

/* --- Lianjiang Banner --- */
.comic-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 36px 32px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(26,122,76,0.12);
    border-radius: var(--radius-lg);
}

.comic-stat {
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.comic-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 800;
    color: var(--green);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.comic-stat-unit {
    font-size: 20px;
    font-weight: 700;
    opacity: 0.8;
    margin-left: 2px;
}

.comic-stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.5;
}

.comic-stat-divider {
    display: none;
}

.comic-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 56px;
    background: rgba(26,122,76,0.12);
}

.comic-lianjiang-banner {
    display: block;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 40%, #ecfeff 100%);
    border: 1px solid rgba(26,122,76,0.12);
    border-radius: 24px;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(26,122,76,0.08);
}
.comic-lianjiang-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(26,122,76,0.35), rgba(2,132,199,0.25), rgba(217,119,6,0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}
.comic-lianjiang-banner:hover::before {
    opacity: 1;
}
.comic-lianjiang-banner-glow {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,122,76,0.08) 0%, rgba(2,132,199,0.04) 40%, transparent 70%);
    pointer-events: none;
}
.comic-lianjiang-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26,122,76,0.14);
}
.comic-lianjiang-banner-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    padding: 48px 52px;
    align-items: center;
}
.comic-lianjiang-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 8px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    margin-bottom: 22px;
    box-shadow: 0 2px 8px rgba(217,119,6,0.12);
}
.badge-icon {
    font-size: 15px;
}
.comic-lianjiang-banner-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.comic-lianjiang-banner-title .title-highlight {
    display: block;
    color: var(--green, #1a7a4c);
    font-size: 42px;
    margin-bottom: 4px;
}
.comic-lianjiang-banner-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 560px;
}
.comic-lianjiang-banner-desc strong {
    color: var(--green, #1a7a4c);
    font-weight: 700;
}
.comic-lianjiang-banner-desc .highlight-green {
    color: #166534;
    font-weight: 700;
}
.comic-lianjiang-banner-desc .highlight-blue {
    color: #075985;
    font-weight: 700;
}
.comic-lianjiang-banner-desc .highlight-orange {
    color: #9a3412;
    font-weight: 700;
}
.comic-lianjiang-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #1a7a4c, #15803d);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(26,122,76,0.25);
    transition: all 0.3s ease;
    width: fit-content;
}
.comic-lianjiang-banner-link svg {
    transition: transform 0.3s ease;
}
.comic-lianjiang-banner:hover .comic-lianjiang-banner-link {
    background: linear-gradient(135deg, #166534, #14532d);
    box-shadow: 0 6px 24px rgba(26,122,76,0.35);
    transform: translateX(4px);
}
.comic-lianjiang-banner:hover .comic-lianjiang-banner-link svg {
    transform: translateX(4px);
}
.comic-lianjiang-banner-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.comic-lianjiang-banner-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 22px 20px;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(26,122,76,0.08);
    border-radius: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.comic-lianjiang-banner-stat:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26,122,76,0.1);
    border-color: rgba(26,122,76,0.18);
}
.stat-icon {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 2px;
}
.comic-lianjiang-banner-num {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}
.comic-lianjiang-banner-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}
@media (max-width: 1100px) {
    .comic-lianjiang-banner-content {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 40px 36px;
    }
    .comic-lianjiang-banner-stats {
        max-width: 560px;
    }
}
@media (max-width: 768px) {
    .comic-lianjiang-banner-title {
        font-size: 28px;
    }
    .comic-lianjiang-banner-title .title-highlight {
        font-size: 32px;
    }
    .comic-lianjiang-banner-desc {
        font-size: 15px;
    }
    .comic-lianjiang-banner-content {
        padding: 32px 26px;
    }
    .comic-lianjiang-banner-stats {
        gap: 12px;
    }
    .comic-lianjiang-banner-stat {
        padding: 18px 16px;
    }
    .comic-lianjiang-banner-num {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .comic-lianjiang-banner-title {
        font-size: 24px;
    }
    .comic-lianjiang-banner-title .title-highlight {
        font-size: 27px;
    }
    .comic-lianjiang-banner-content {
        padding: 26px 20px;
    }
    .comic-lianjiang-banner-stats {
        grid-template-columns: 1fr;
    }
    .comic-lianjiang-banner-link {
        width: 100%;
        justify-content: center;
    }
}

/* --- About Card --- */
.comic-about-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 40px;
    transition: box-shadow 0.3s ease;
}

.comic-about-card:hover {
    box-shadow: var(--shadow-md);
}

.comic-about-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.comic-about-icon {
    font-size: 28px;
}

.comic-about-header h3 {
    font-size: 24px;
    color: var(--text);
}

.comic-about-body p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 12px;
}

.comic-about-body p:last-child {
    margin-bottom: 0;
}

.comic-about-body strong {
    color: var(--text);
}

.comic-about-body em {
    font-style: normal;
    color: var(--green);
    font-weight: 500;
}

/* --- Positioning --- */
.comic-positioning {
    margin-top: 8px;
}

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

.comic-pos-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.comic-pos-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--green);
}

.comic-pos-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(26,122,76,0.1), rgba(37,99,235,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.comic-pos-info h4 {
    font-size: 17px;
    margin-bottom: 4px;
    color: var(--text);
}

.comic-pos-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Highlights --- */
.comic-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.comic-highlight-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.3s ease;
}

.comic-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.comic-highlight-featured {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(26,122,76,0.06);
    position: relative;
    overflow: hidden;
}

.comic-highlight-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--green), #2d8c5a);
}

.comic-highlight-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.comic-highlight-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green), #2d8c5a);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comic-highlight-title-wrap h3 {
    font-size: 19px;
    margin-bottom: 4px;
    color: var(--text);
}

.comic-highlight-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.comic-highlight-card ul {
    list-style: none;
    padding: 0;
}

.comic-highlight-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 7px 0 7px 22px;
    position: relative;
    line-height: 1.7;
}

.comic-highlight-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.5;
}

.comic-highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.comic-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--green);
    background: rgba(26,122,76,0.06);
    border: 1px solid rgba(26,122,76,0.12);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.comic-tag:hover {
    background: rgba(26,122,76,0.12);
    border-color: var(--green);
}

.comic-highlight-note {
    margin-top: 20px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(26,122,76,0.06), rgba(37,99,235,0.04));
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--green);
    line-height: 1.7;
    border-left: 3px solid var(--green);
}

/* Chain effect */
.comic-chain {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.comic-chain-item {
    padding: 10px 18px;
    background: rgba(26,122,76,0.06);
    border: 1px solid rgba(26,122,76,0.12);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
}

.comic-chain-arrow {
    font-size: 20px;
    color: var(--green);
    font-weight: 700;
}

.comic-chain-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Timeline --- */
.comic-timeline-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.comic-timeline-track {
    position: relative;
    padding-left: 48px;
}

.comic-timeline-track::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(180deg, var(--green) 0%, rgba(26,122,76,0.3) 50%, rgba(37,99,235,0.6) 100%);
    border-radius: 2px;
}

.comic-timeline-item {
    position: relative;
    padding-bottom: 36px;
}

.comic-timeline-item:last-child {
    padding-bottom: 0;
}

.comic-timeline-dot {
    position: absolute;
    left: -37px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(26,122,76,0.2);
    z-index: 1;
}

.comic-timeline-dot-special {
    background: #e8623a;
    box-shadow: 0 0 0 3px rgba(232,98,58,0.2);
    animation: pulse 2s ease-in-out infinite;
}

.comic-timeline-dot-future {
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
    border-style: dashed;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.comic-timeline-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    transition: all 0.3s ease;
}

.comic-timeline-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.comic-timeline-card-special {
    border-color: rgba(232,98,58,0.3);
    background: linear-gradient(135deg, #fff, #fef3ee);
}

.comic-timeline-card-future {
    border-color: rgba(37,99,235,0.3);
    border-style: dashed;
    background: linear-gradient(135deg, #fff, #eff6ff);
}

.comic-timeline-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 4px;
}

.comic-timeline-card-special .comic-timeline-year {
    color: #e8623a;
}

.comic-timeline-card-future .comic-timeline-year {
    color: var(--primary);
}

.comic-timeline-card h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.comic-timeline-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.comic-timeline-theme {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    padding: 6px 12px;
    background: rgba(26,122,76,0.06);
    border-left: 3px solid var(--green);
    border-radius: 0 6px 6px 0;
    line-height: 1.5;
}

.comic-timeline-card-special .comic-timeline-theme {
    background: rgba(232,98,58,0.06);
    border-left-color: #e8623a;
}

.comic-timeline-card-future .comic-timeline-theme {
    background: rgba(37,99,235,0.06);
    border-left-color: var(--primary);
}

.comic-timeline-card ul {
    margin: 0;
    padding-left: 18px;
}

.comic-timeline-card li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 6px;
}

.comic-timeline-card li:last-child {
    margin-bottom: 0;
}

/* --- Join Section --- */
.comic-join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.comic-join-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.comic-join-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.comic-join-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26,122,76,0.08), rgba(37,99,235,0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.comic-join-icon {
    font-size: 30px;
}

.comic-join-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text);
}

.comic-join-main {
    font-size: 16px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 12px;
}

.comic-join-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.comic-join-groups span {
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-alt);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.comic-join-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.comic-join-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.6;
}

.comic-join-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.5;
}

.comic-join-card ul li strong {
    color: var(--text);
}

/* Process */
.comic-process {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.comic-process-header {
    text-align: center;
    margin-bottom: 40px;
}

.comic-process-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.comic-process-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.comic-process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.comic-process-step {
    text-align: center;
    flex: 0 0 auto;
    max-width: 140px;
}

.comic-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #2d8c5a);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.comic-process-num-highlight {
    background: linear-gradient(135deg, #e8623a, #f97316);
    animation: pulse 2s ease-in-out infinite;
}

.comic-process-content h4 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text);
}

.comic-process-content p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.comic-process-arrow {
    display: flex;
    align-items: center;
    padding-top: 12px;
    font-size: 22px;
    color: var(--green);
    flex-shrink: 0;
    font-weight: 700;
}

/* --- Impact Grid --- */
.comic-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.comic-impact-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.comic-impact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.comic-impact-card-data {
    background: linear-gradient(135deg, #f0fdf4, #eff6ff);
    border-color: rgba(26,122,76,0.12);
}

.comic-impact-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.comic-impact-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text);
}

.comic-impact-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.comic-impact-stat {
    text-align: center;
}

.comic-impact-num {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--green);
    line-height: 1.2;
}

.comic-impact-stat span:last-child {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.comic-impact-card ul {
    list-style: none;
    padding: 0;
}

.comic-impact-card ul li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0 6px 20px;
    position: relative;
    line-height: 1.6;
}

.comic-impact-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.5;
}

/* --- Partner Section --- */
.comic-partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.comic-partner-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: all 0.3s ease;
}

.comic-partner-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.comic-partner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.comic-partner-icon {
    font-size: 28px;
}

.comic-partner-header h3 {
    font-size: 20px;
}

.comic-partner-card ul {
    list-style: none;
    padding: 0;
}

.comic-partner-card ul li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 10px 0 10px 24px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-light);
}

.comic-partner-card ul li:last-child {
    border-bottom: none;
}

.comic-partner-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--green);
    opacity: 0.6;
}

.comic-partner-intro {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.comic-coop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.comic-coop-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.comic-coop-item:hover {
    background: rgba(26,122,76,0.04);
}

.comic-coop-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comic-coop-item strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 2px;
}

.comic-coop-item p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.comic-en-name {
    text-align: center;
    padding: 20px;
    background: var(--bg);
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-muted);
}

.comic-en-name strong {
    color: var(--green);
    font-weight: 700;
}

/* --- CTA Section --- */
.comic-cta {
    padding: 100px 0;
    background: linear-gradient(160deg, #0a2e1a 0%, #1a7a4c 40%, #2563eb 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comic-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.comic-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.comic-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.comic-cta h2 {
    color: #fff;
    margin-bottom: 16px;
}

.comic-cta p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.comic-cta .btn-primary {
    background: #fff;
    color: var(--green);
}

.comic-cta .btn-primary:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.comic-cta .btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-sans);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.comic-cta .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* --- Comic Responsive --- */
@media (max-width: 1200px) {
    .comic-process-steps {
        gap: 12px;
    }
    .comic-process-arrow {
        display: none;
    }
    .comic-process-step {
        max-width: 130px;
    }
}

@media (max-width: 1024px) {
    .comic-hero-content {
        flex-direction: column;
        gap: 40px;
    }
    .comic-hero-visual {
        order: -1;
    }
    .comic-hero-frame {
        width: 200px;
    }
    .comic-highlights {
        grid-template-columns: 1fr;
    }
    .comic-positioning-grid {
        grid-template-columns: 1fr;
    }
    .comic-join-grid {
        grid-template-columns: 1fr;
    }
    .comic-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .comic-partner-grid {
        grid-template-columns: 1fr;
    }
    .comic-hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }
    .comic-stat:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .comic-hero {
        padding: 120px 0 64px;
    }
    .comic-section {
        padding: 64px 0;
    }
    .comic-about-card {
        padding: 28px 20px;
    }
    .comic-hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px;
    }
    .comic-stat:not(:last-child)::after {
        display: none;
    }
    .comic-stat-num {
        font-size: 36px;
    }
    .comic-hero-text h1 {
        font-size: 32px;
    }
    .comic-hero-subtitle {
        font-size: 18px;
    }
    .comic-highlight-card {
        padding: 28px 20px;
    }
    .comic-impact-grid {
        grid-template-columns: 1fr;
    }
    .comic-coop-grid {
        grid-template-columns: 1fr;
    }
    .comic-process {
        padding: 32px 20px;
    }
    .comic-process-steps {
        flex-direction: column;
        align-items: center;
    }
    .comic-process-step {
        max-width: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }
    .comic-process-num {
        flex-shrink: 0;
    }
    .comic-process-arrow {
        display: block;
        transform: rotate(90deg);
        padding: 8px 0;
    }
    .comic-chain {
        justify-content: center;
    }
    .comic-timeline-track {
        padding-left: 36px;
    }
    .comic-timeline-dot {
        left: -29px;
    }
    .comic-cta {
        padding: 64px 0;
    }
    .comic-cta h2 {
        font-size: 28px;
    }
    .comic-cta-content { padding: 0; }
    .comic-highlight-tags { gap: 8px; }
    .comic-tag { padding: 5px 10px; font-size: 12px; }
    .comic-join-card { padding: 28px 20px; }
    .comic-impact-card { padding: 24px 20px; }
    .comic-partner-card { padding: 28px 20px; }
    .comic-section .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
    .comic-hero { padding: 100px 0 48px; }
    .comic-section { padding: 48px 0; }
    .comic-hero-badge {
        font-size: 12px;
        padding: 6px 14px;
    }
    .comic-hero-stats {
        padding: 16px 12px;
    }
    .comic-stat-num {
        font-size: 28px;
    }
    .comic-stat-unit {
        font-size: 18px;
    }
    .comic-positioning-grid {
        gap: 12px;
    }
    .comic-pos-item {
        padding: 20px 16px;
    }
    .comic-about-card { padding: 24px 16px; }
    .comic-highlight-card { padding: 24px 16px; }
    .comic-process { padding: 24px 16px; }
    .comic-cta { padding: 48px 0; }
    .comic-cta h2 { font-size: 24px; }
    .comic-hero-text h1 { font-size: 26px; }
    .comic-hero-subtitle { font-size: 16px; }
    .comic-hero-tagline-item { font-size: 13px; }
}

/* ============================================
   协会理事界面
   ============================================ */
.council-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.council-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.council-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.council-card-avatar {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f5ee 0%, #eff6ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.council-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.council-card:hover .council-card-avatar img {
    transform: scale(1.05);
}

.council-avatar-placeholder {
    font-size: 64px;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.council-card:hover .council-avatar-placeholder {
    opacity: 0.5;
}

.council-card-body {
    padding: 24px 20px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.council-card-name {
    font-size: 19px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    font-family: var(--font-display);
}

.council-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.04em;
    background: var(--primary-light);
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    margin: 0 auto;
}

.council-card-bio {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 4px;
    flex: 1;
}

.council-card-org {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
}

.council-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 16px;
}

/* 响应式 - 协会理事 */
@media (max-width: 1100px) {
    .council-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .council-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 540px) {
    .council-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}

/* ============================================
   海岛童仓详情页 - Tongcang Page
   ============================================ */

/* --- Hero --- */
.tc-hero {
    position: relative;
    padding: 160px 0 100px;
}

.tc-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tc-hero-text h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 8px 0 4px;
}

.tc-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 16px;
}

.tc-hero .tc-hero-desc {
    font-size: 16px;
    color: #fff !important;
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.tc-hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
}

/* --- Changhai Island Photo --- */
.tc-photo-section {
    padding: 48px 0;
    background: var(--bg-alt);
}

.tc-photo-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.tc-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 480px;
}

.tc-photo-caption {
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    background: #fff;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* --- Stats Bar --- */
.tc-stats-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
}

.tc-stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.tc-stat-item {
    text-align: center;
    padding: 0 36px;
}

.tc-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.tc-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.tc-stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

.tc-stat-highlight {
    color: var(--primary);
    font-size: 1.15em;
    position: relative;
    display: inline-block;
}

.tc-stat-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    opacity: 0.3;
}

.tc-stat-unit {
    font-size: 0.55em;
    font-weight: 500;
    color: var(--text);
}

/* --- Sections --- */
.tc-section {
    padding: 80px 0;
}

.tc-section-alt {
    background: var(--bg-alt);
}

.tc-text-block {
    max-width: 820px;
    margin: 0 auto;
}

.tc-text-block p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.tc-text-block p strong {
    color: var(--text);
}

/* --- Sites Grid --- */
.tc-sites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.tc-site-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.tc-site-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.tc-site-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.tc-site-location {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.tc-site-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Note --- */
.tc-note {
    max-width: 820px;
    margin: 32px auto 0;
    padding: 16px 24px;
    background: #f0f9ff;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.tc-note p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.tc-note-highlight {
    background: linear-gradient(135deg, #eff6ff, #f0fdf4);
    border-left: 4px solid #0891b2;
    padding: 20px 28px;
    margin-top: 36px;
}

.tc-note-highlight p {
    font-size: 15px;
}

/* --- Service Grid --- */
/* --- 7-in-1 Service System --- */
.tc-service-section {
    max-width: 1100px;
    margin: 0 auto;
}

.tc-service-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tc-service-row-3 .tc-service-card {
    flex: 0 1 calc(33.333% - 14px);
    max-width: 340px;
    min-width: 280px;
}

.tc-service-row-4 .tc-service-card {
    flex: 0 1 calc(25% - 15px);
    max-width: 260px;
    min-width: 220px;
}

.tc-service-row + .tc-service-row {
    margin-top: 20px;
}

.tc-service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.tc-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.tc-service-num {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.25;
    letter-spacing: 0.05em;
}

.tc-service-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.tc-service-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.tc-service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* --- Model Grid --- */
.tc-model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.tc-model-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.tc-model-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.tc-model-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.tc-model-icon {
    font-size: 28px;
}

.tc-model-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.tc-model-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Whitepaper --- */
.tc-whitepaper-link {
    text-decoration: none;
    color: inherit;
    display: block;
    max-width: 820px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}
.tc-whitepaper-link:hover {
    transform: translateY(-2px);
}
.tc-whitepaper-link:hover .tc-whitepaper {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.tc-whitepaper-link:hover .tc-whitepaper-arrow {
    transform: translateX(4px);
    color: var(--primary);
}
.tc-whitepaper {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 36px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.tc-whitepaper-arrow {
    display: inline-block;
    transition: all 0.3s ease;
    color: var(--text-muted);
    font-weight: 400;
}

.tc-whitepaper-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.tc-whitepaper-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.tc-whitepaper-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- Impact Grid --- */
.tc-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.tc-impact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.tc-impact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tc-impact-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.tc-impact-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.tc-impact-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.tc-vision {
    max-width: 780px;
    margin: 36px auto 0;
    padding: 24px 32px;
    background: linear-gradient(135deg, #f0f9ff, #ecfeff);
    border-radius: var(--radius-md);
    text-align: center;
}

.tc-vision p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- CTA --- */
.tc-cta-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.tc-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0c4a6e 0%, #0284c7 50%, #0891b2 100%);
    padding: 64px 48px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(2,132,199,0.3);
}

.tc-cta-bg-pattern {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.tc-cta-content {
    position: relative;
    z-index: 1;
}

.tc-cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.tc-cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .tc-service-row-3 .tc-service-card {
        flex: 0 1 calc(33.333% - 14px);
    }
    .tc-service-row-4 .tc-service-card {
        flex: 0 1 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .tc-hero {
        padding: 120px 0 72px;
    }
    .tc-section { padding: 64px 0; }
    .tc-stats-grid {
        gap: 16px;
    }
    .tc-stat-item {
        padding: 0 20px;
    }
    .tc-stat-divider {
        display: none;
    }
    .tc-stat-value {
        font-size: 28px;
    }
    .tc-sites-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .tc-service-row-3 .tc-service-card,
    .tc-service-row-4 .tc-service-card {
        flex: 0 1 calc(50% - 10px);
        min-width: 180px;
    }
    .tc-model-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tc-impact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .tc-whitepaper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .tc-cta-card {
        padding: 48px 24px;
    }
    .tc-hero h1 { font-size: 32px; }
    .tc-hero-desc { font-size: 15px; }
    .tc-text-block { padding: 0; }
    .tc-text-block p { font-size: 15px; }
    .tc-section .section-header { margin-bottom: 40px; }
    .tc-site-card { padding: 28px 20px; }
    .tc-service-card { padding: 24px 16px; }
    .tc-model-card { padding: 24px 20px; }
    .tc-impact-card { padding: 24px 20px; }
    .tc-cta-content h2 { font-size: 26px; }
    .tc-cta-content p { font-size: 15px; }
}

@media (max-width: 480px) {
    .tc-hero { padding: 100px 0 48px; }
    .tc-section { padding: 48px 0; }
    .tc-service-row-3 .tc-service-card,
    .tc-service-row-4 .tc-service-card {
        flex: 0 1 100%;
        min-width: 0;
        max-width: 100%;
    }
    .tc-model-grid {
        grid-template-columns: 1fr;
    }
    .tc-stat-item {
        padding: 0 12px;
    }
    .tc-stat-value {
        font-size: 24px;
    }
    .tc-hero h1 { font-size: 28px; }
    .tc-hero-desc { font-size: 14px; }
    .tc-cta-card { padding: 36px 16px; }
    .tc-site-card { padding: 24px 16px; }
    .tc-whitepaper { padding: 24px 16px; }
    .tc-text-block p { font-size: 14px; }
}

/* ============================================
   童仓白皮书页面 - Whitepaper
   ============================================ */

/* --- Hero --- */
.wp-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(165deg, #f8fafc 0%, #eff6ff 30%, #f0f9ff 60%, #f8fafc 100%);
    overflow: hidden;
}
.wp-hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(2,132,199,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.wp-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,122,76,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.wp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
}
.wp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: rgba(2,132,199,0.08);
    color: #0284c7;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(2,132,199,0.15);
}
.wp-hero-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.wp-hero-edition {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 32px;
    letter-spacing: 0.04em;
}
.wp-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.wp-hero-meta-item {
    display: flex;
    gap: 16px;
    font-size: 14px;
    line-height: 1.6;
}
.wp-meta-label {
    flex-shrink: 0;
    min-width: 72px;
    font-weight: 700;
    color: var(--text);
    position: relative;
    padding-right: 16px;
}
.wp-meta-label::after {
    content: '';
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--border);
}
.wp-meta-value {
    color: var(--text-secondary);
}

/* --- Section --- */
.wp-section {
    padding: 80px 0;
}
.wp-section-alt {
    background: var(--bg-alt);
}

/* --- Table of Contents --- */
.wp-toc {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    box-shadow: var(--shadow-sm);
}
.wp-toc-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-light);
}
.wp-toc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.wp-toc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.wp-toc-item:hover {
    background: rgba(2,132,199,0.04);
    border-color: rgba(2,132,199,0.12);
    color: var(--primary);
}
.wp-toc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* --- Chapter Header --- */
.wp-chapter-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-light);
}
.wp-chapter-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(2,132,199,0.08);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.wp-chapter-header h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

/* --- Subsection --- */
.wp-subsection {
    margin-bottom: 40px;
}
.wp-subsection-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 3px solid var(--primary);
}

/* --- Text Block --- */
.wp-text-block {
    max-width: 820px;
}
.wp-text-block p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.wp-text-block p strong {
    color: var(--text);
}

/* --- Highlight Grid (阵地统计) --- */
.wp-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 720px;
    margin: 24px 0;
}
.wp-highlight-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}
.wp-highlight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.wp-highlight-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}
.wp-highlight-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* --- Info Row (服务周期/对象) --- */
.wp-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 820px;
    margin-top: 20px;
}
.wp-info-item {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    align-items: flex-start;
}
.wp-info-icon {
    font-size: 28px;
    flex-shrink: 0;
}
.wp-info-item strong {
    display: block;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
}
.wp-info-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* --- System Grid (六位一体) --- */
.wp-system-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}
.wp-system-grid .wp-system-card:last-child:nth-child(4),
.wp-system-grid .wp-system-card:last-child:nth-child(5) {
    grid-column: span 1;
}
.wp-system-grid:has(.wp-system-card:nth-child(4)) {
    grid-template-columns: repeat(4, 1fr);
}
.wp-system-grid:has(.wp-system-card:nth-child(5)) {
    grid-template-columns: repeat(5, 1fr);
}
.wp-system-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s;
}
.wp-system-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}
.wp-system-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
}
.wp-system-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.wp-system-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* --- Service Cards (八大服务体系) --- */
.wp-service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 28px;
    transition: all 0.3s;
}
.wp-service-card:hover {
    box-shadow: var(--shadow-md);
}
.wp-service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.wp-service-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
}
.wp-service-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
.wp-service-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(26,122,76,0.08);
    color: #1a7a4c;
    letter-spacing: 0.04em;
}
.wp-service-position {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    padding-left: 56px;
}
.wp-service-detail {
    padding-left: 56px;
}
.wp-detail-block {
    margin-bottom: 20px;
}
.wp-detail-block:last-child {
    margin-bottom: 0;
}
.wp-detail-block h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.wp-detail-block p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}
.wp-detail-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wp-detail-block ul li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}
.wp-detail-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.4;
}

/* --- Tag Cloud --- */
.wp-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.wp-tag-cloud span {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(2,132,199,0.06);
    color: #0284c7;
    border: 1px solid rgba(2,132,199,0.1);
}

/* --- Form Grid (安全课堂形式) --- */
.wp-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.wp-form-item {
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
}
.wp-form-icon {
    font-size: 22px;
    margin-bottom: 4px;
    display: block;
}
.wp-form-item strong {
    font-size: 14px;
    color: var(--text);
    display: block;
    margin-bottom: 2px;
}
.wp-form-item p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* --- Guide Cards (每日/每周/每月) --- */
.wp-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.wp-guide-card {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.wp-guide-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.wp-guide-daily {
    background: linear-gradient(135deg, #fff7ed 0%, #fff 100%);
    border-color: rgba(249,115,22,0.15);
}
.wp-guide-weekly {
    background: linear-gradient(135deg, #eff6ff 0%, #fff 100%);
    border-color: rgba(2,132,199,0.15);
}
.wp-guide-monthly {
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    border-color: rgba(26,122,76,0.15);
}
.wp-guide-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px dashed var(--border);
}
.wp-guide-icon {
    font-size: 32px;
}
.wp-guide-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
.wp-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wp-guide-list li {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}
.wp-guide-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

/* --- Personnel Grid --- */
.wp-personnel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.wp-personnel-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s;
}
.wp-personnel-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.wp-personnel-role {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.wp-personnel-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* --- Institution Grid --- */
.wp-institution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 28px;
}
.wp-institution-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    text-align: center;
    transition: all 0.2s;
}
.wp-institution-item:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    background: rgba(2,132,199,0.02);
}

/* --- Impact Content --- */
.wp-impact-content {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 900px;
}
.wp-impact-visual {
    flex-shrink: 0;
}
.wp-impact-hexagon {
    width: 160px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary), #0369a1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp-impact-hex-inner {
    text-align: center;
    color: #fff;
}
.wp-impact-hex-num {
    display: block;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}
.wp-impact-hex-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1.4;
}
.wp-impact-text {
    flex: 1;
}
.wp-impact-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 14px;
}
.wp-impact-text p strong {
    color: var(--text);
}
.wp-impact-text p:last-child {
    margin-bottom: 0;
}

/* --- Conclusion --- */
.wp-conclusion {
    max-width: 820px;
}
.wp-conclusion p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 16px;
}
.wp-conclusion-motto {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    letter-spacing: 0.04em;
    margin-bottom: 20px !important;
    font-family: var(--font-display);
}
.wp-publish-date {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: right;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- Responsive: Whitepaper --- */
@media (max-width: 1024px) {
    .wp-system-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .wp-system-grid:has(.wp-system-card:nth-child(5)) {
        grid-template-columns: repeat(3, 1fr);
    }
    .wp-personnel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wp-institution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wp-impact-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .wp-impact-hexagon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .wp-hero {
        padding: 120px 0 56px;
    }
    .wp-hero-title {
        font-size: 26px;
    }
    .wp-hero-edition {
        font-size: 15px;
    }
    .wp-hero-meta-item {
        flex-direction: column;
        gap: 2px;
    }
    .wp-meta-label::after {
        display: none;
    }
    .wp-section {
        padding: 56px 0;
    }
    .wp-toc {
        padding: 24px 20px;
    }
    .wp-toc-grid {
        grid-template-columns: 1fr;
    }
    .wp-highlight-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }
    .wp-highlight-num {
        font-size: 32px;
    }
    .wp-highlight-label {
        font-size: 12px;
    }
    .wp-info-row {
        grid-template-columns: 1fr;
    }
    .wp-system-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wp-system-grid:has(.wp-system-card:nth-child(5)) {
        grid-template-columns: repeat(2, 1fr);
    }
    .wp-service-card {
        padding: 24px 20px;
    }
    .wp-service-header h3 {
        font-size: 16px;
    }
    .wp-service-position {
        padding-left: 0;
    }
    .wp-service-detail {
        padding-left: 0;
    }
    .wp-form-grid {
        grid-template-columns: 1fr;
    }
    .wp-guide-grid {
        grid-template-columns: 1fr;
    }
    .wp-personnel-grid {
        grid-template-columns: 1fr 1fr;
    }
    .wp-institution-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .wp-hero {
        padding: 100px 0 40px;
    }
    .wp-section {
        padding: 40px 0;
    }
    .wp-highlight-grid {
        grid-template-columns: 1fr;
    }
    .wp-system-grid {
        grid-template-columns: 1fr 1fr;
    }
    .wp-personnel-grid {
        grid-template-columns: 1fr;
    }
    .wp-institution-grid {
        grid-template-columns: 1fr;
    }
    .wp-conclusion-motto {
        font-size: 22px !important;
    }
}

/* ============================================
   童仓阵地子页面 - Site Detail Pages
   ============================================ */
.site-subpage-hero {
    position: relative;
    padding: 140px 0 72px;
    color: #fff;
}

.site-subpage-hero-inner {
    max-width: 800px;
}

.site-hero-region {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.site-hero-title {
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.site-hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    line-height: 1.7;
    max-width: 600px;
}

.site-hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 28px;
}

.site-hero-stat-item {
    text-align: center;
}

.site-hero-stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin-top: 2px;
}

/* Back navigation */
.site-back-nav {
    padding: 24px 0;
}

.site-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.site-back-link:hover {
    color: var(--primary);
}

/* Location Grid */
.site-location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.site-location-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.site-location-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.site-location-card-header {
    padding: 32px 36px 0;
}

.site-location-num {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-location-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.site-location-addr {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-location-addr .addr-icon {
    font-size: 16px;
}

.site-location-body {
    padding: 24px 36px 36px;
}

.site-location-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.site-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.site-feature-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(37,99,235,0.07);
    color: var(--primary);
}

.site-feature-tag.sft-green {
    background: rgba(26,122,76,0.07);
    color: #1a7a4c;
}

.site-feature-tag.sft-orange {
    background: rgba(232,98,58,0.07);
    color: #e8623a;
}

.site-feature-tag.sft-teal {
    background: rgba(2,132,199,0.07);
    color: #0284c7;
}

.site-service-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.site-service-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
}

.site-service-item-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.site-service-item-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.site-service-item-text strong {
    display: block;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 2px;
}

/* Region overview section */
.site-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

.site-overview-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 32px;
}

.site-overview-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-overview-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Main tongcang page - site card links */
.tc-site-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.tc-site-link-arrow {
    font-size: 12px;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 500;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.25s;
}

.tc-site-card:hover .tc-site-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .site-subpage-hero {
        padding: 120px 0 56px;
    }
    .site-hero-title {
        font-size: 26px;
    }
    .site-hero-stats {
        gap: 16px;
    }
    .site-hero-stat-num {
        font-size: 24px;
    }
    .site-location-card-header {
        padding: 24px 20px 0;
    }
    .site-location-body {
        padding: 16px 20px 28px;
    }
    .site-location-name {
        font-size: 18px;
    }
    .site-service-highlights {
        grid-template-columns: 1fr 1fr;
    }
    .site-overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .site-service-highlights {
        grid-template-columns: 1fr;
    }
    .site-hero-stats {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* ============================================
   合作伙伴展示板块 - Partner Logo Grid
   ============================================ */
.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-logo-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.partner-logo-img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo-card:hover .partner-logo-img {
    transform: scale(1.08);
}

.partner-logo-placeholder {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), #dbeafe);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.6;
}

.partner-logo-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
}

.partner-logo-name-en {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.partner-logo-tier {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.partner-logo-tier.strategic {
    background: #fef3c7;
    color: #b45309;
}

.partner-logo-tier.core {
    background: #eff6ff;
    color: #1d4ed8;
}

.partner-logo-tier.general {
    background: var(--bg-alt);
    color: var(--text-muted);
}

.partner-logo-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 16px;
}

@media (max-width: 1024px) {
    .partner-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .partner-logo-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

/* ==========================================
   业务主管单位卡片 — Supervisor Card
   ========================================== */
.partner-supervisor-card {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: #fff;
    box-shadow: 0 4px 24px rgba(30, 64, 175, 0.2);
}
.partner-supervisor-badge {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.5px;
}
.partner-supervisor-name {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .partner-supervisor-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 22px 24px;
        margin-bottom: 24px;
    }
    .partner-supervisor-name { font-size: 15px; }
}

@media (max-width: 480px) {
    .partner-supervisor-card {
        padding: 18px 20px;
        margin-bottom: 20px;
    }
    .partner-supervisor-badge { font-size: 12px; padding: 5px 12px; }
    .partner-supervisor-name { font-size: 14px; }
}

/* ==========================================
   连小益公益商店 — Lian Xiaoyi Charity Store
   ========================================== */

/* --- Store Hero --- */
.store-hero {
    padding: 140px 0 80px;
    background: linear-gradient(170deg, #fdfcf0 0%, #faf6f0 30%, #f8f4ed 60%, #faf6f0 100%);
    position: relative;
    overflow: hidden;
}
.store-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,140,74,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.store-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,122,76,0.03) 0%, transparent 70%);
    pointer-events: none;
}
.store-hero-content {
    display: flex;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}
.store-hero-text {
    flex: 1;
}
.store-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: rgba(196,140,74,0.08);
    color: #8b6914;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(196,140,74,0.15);
}
.store-hero-text h1 {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 16px;
    color: #2d2414;
}
.store-hero-highlight {
    background: linear-gradient(135deg, #c48c4a, #a67c3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.store-hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 32px;
}
.store-hero-visual {
    flex-shrink: 0;
}
.store-hero-card {
    width: 280px;
    padding: 40px 32px;
    background: #fff;
    border: 1px solid rgba(196,140,74,0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    text-align: center;
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}
.store-hero-card:hover {
    transform: rotate(0deg) translateY(-4px);
}
.store-hero-card-icon {
    font-size: 56px;
    margin-bottom: 16px;
}
.store-hero-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.store-hero-card .price {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: #c48c4a;
    margin-bottom: 4px;
}
.store-hero-card .tagline {
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Store Section --- */
.store-section {
    padding: 96px 0;
}
.store-section-alt {
    background: var(--bg-alt);
}
.store-section .section-header {
    margin-bottom: 56px;
}
.store-section .section-desc {
    margin: 12px auto 0;
    color: var(--text-muted);
    font-size: 16px;
}

/* --- Store Category Label --- */
.store-category-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
}
.store-category-label .cat-icon {
    font-size: 28px;
}
.store-category-label h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}
.store-category-label .cat-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 20px;
    background: #fef3c7;
    color: #8b6914;
}

/* --- Product Grid --- */
.store-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.store-product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.store-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border-color: transparent;
}
.store-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    position: relative;
    overflow: hidden;
}
.store-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.store-product-card:hover .store-product-img img {
    transform: scale(1.05);
}

.store-product-body {
    padding: 20px 20px 24px;
}
.store-product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.4;
}
.store-product-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.store-product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.store-product-price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #c48c4a;
}
.store-product-price .unit {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-right: 2px;
}
.store-product-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
}
.store-product-badge.handmade {
    background: #fef3c7;
    color: #8b6914;
}
.store-product-badge.limited {
    background: #fce7f3;
    color: #be185d;
}
.store-product-badge.hot {
    background: #fee2e2;
    color: #dc2626;
}

/* --- Store Featured Product Banner --- */
.store-featured-banner {
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #fdfcf0 0%, #faf6f0 40%, #f8f1e6 100%);
    border: 1px solid rgba(196,140,74,0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.store-featured-visual {
    flex: 0 0 360px;
    background: linear-gradient(135deg, #e8dbc5 0%, #fdf6ec 50%, #e8d6bf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    position: relative;
    overflow: hidden;
}
.store-featured-visual::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(196,140,74,0.1);
}
.store-featured-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.store-featured-body {
    flex: 1;
    padding: 48px 48px 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.store-featured-tag {
    display: inline-block;
    width: fit-content;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: #c48c4a;
    color: #fff;
    border-radius: 20px;
    margin-bottom: 16px;
}
.store-featured-body h3 {
    font-size: 28px;
    font-weight: 800;
    color: #2d2414;
    margin-bottom: 12px;
}
.store-featured-body p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 24px;
}
.store-featured-price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}
.store-featured-price {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: #c48c4a;
    line-height: 1;
}
.store-featured-price .unit {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
}
.store-featured-includes {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.9;
}
.store-featured-includes span {
    display: inline-block;
    padding: 3px 10px;
    margin: 2px 4px 2px 0;
    background: rgba(196,140,74,0.06);
    border-radius: 12px;
    font-size: 12px;
}

/* --- Store Values --- */
.store-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 12px;
}
.store-value-card {
    text-align: center;
    padding: 40px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}
.store-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.store-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 28px;
    border-radius: 50%;
    background: rgba(196,140,74,0.08);
    margin-bottom: 20px;
}
.store-value-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.store-value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* --- Store CTA --- */
.store-cta {
    padding: 100px 0;
    background: linear-gradient(160deg, #2d2414 0%, #4a3520 40%, #c48c4a 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.store-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.store-cta-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}
.store-cta h2 {
    color: #fff;
    margin-bottom: 16px;
}
.store-cta p {
    font-size: 17px;
    opacity: 0.85;
    margin: 0 auto 36px;
    line-height: 1.8;
}
.store-cta .btn-primary {
    background: #fff;
    color: #4a3520;
}
.store-cta .btn-primary:hover {
    background: #faf6f0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.store-cta .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.store-cta .btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
}

/* --- Store Responsive --- */
@media (max-width: 1024px) {
    .store-hero-content {
        flex-direction: column;
        gap: 40px;
    }
    .store-hero-visual {
        order: -1;
    }
    .store-hero-card {
        width: 240px;
    }
    .store-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .store-featured-banner {
        flex-direction: column;
    }
    .store-featured-visual {
        flex: 0 0 200px;
    }
    .store-featured-body {
        padding: 32px;
    }
    .store-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .store-hero {
        padding: 120px 0 64px;
    }
    .store-section {
        padding: 64px 0;
    }
    .store-hero-text h1 {
        font-size: 32px;
    }
    .store-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .store-product-body {
        padding: 16px;
    }
    .store-product-name {
        font-size: 14px;
    }
    .store-values-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .store-featured-body h3 {
        font-size: 22px;
    }
    .store-featured-price {
        font-size: 32px;
    }
    .store-featured-body {
        padding: 24px;
    }
    .store-cta {
        padding: 64px 0;
    }
    .store-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .store-hero {
        padding: 100px 0 48px;
    }
    .store-section {
        padding: 48px 0;
    }
    .store-product-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }
    .store-featured-visual {
        flex: 0 0 160px;
    }
    .store-hero-card {
        width: 200px;
        padding: 28px 20px;
    }
    .store-hero-card-icon {
        font-size: 44px;
    }
    .store-hero-card .price {
        font-size: 26px;
    }
}

/* ==========================================
   商品详情弹出层
   ========================================== */
.store-detail-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.store-detail-overlay.active {
    display: flex;
}
.store-detail-modal {
    background: #fff;
    border-radius: 20px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: storeDetailIn 0.3s ease;
}
@keyframes storeDetailIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.store-detail-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.05);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    z-index: 2;
    transition: all 0.2s;
}
.store-detail-close:hover {
    background: rgba(0,0,0,0.1);
    color: var(--text);
}
.store-detail-visual {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 96px;
    background: linear-gradient(160deg, #fdfcf0 0%, #faf6f0 50%, #f8f4ed 100%);
    border-radius: 20px 20px 0 0;
}
.store-detail-body {
    padding: 32px 36px 36px;
}
.store-detail-badge-container {
    margin-bottom: 12px;
}
.store-detail-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
}
.store-detail-name {
    font-size: 26px;
    font-weight: 800;
    color: #2d2414;
    margin-bottom: 8px;
    line-height: 1.3;
}
.store-detail-price {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: #c48c4a;
    margin-bottom: 20px;
    line-height: 1;
}
.store-detail-price .unit {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
}
.store-detail-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}
.store-detail-extras {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: 12px;
}
.store-detail-extras h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.store-detail-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.store-detail-items span {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}
.store-detail-actions {
    display: flex;
    gap: 12px;
}
.store-detail-actions .btn {
    flex: 1;
}

@media (max-width: 480px) {
    .store-detail-visual {
        height: 180px;
        font-size: 72px;
    }
    .store-detail-body {
        padding: 24px 20px 28px;
    }
    .store-detail-name {
        font-size: 22px;
    }
    .store-detail-price {
        font-size: 28px;
    }
}

/* ========================================
   用户认证页面 (注册/登录)
   ======================================== */
.auth-page { min-height: calc(100vh - 80px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: var(--bg); }
.auth-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); padding: 40px; width: 100%; max-width: 440px; }
.auth-title { font-size: 24px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; text-align: center; }
.auth-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; text-align: center; }
.auth-form .form-group { margin-bottom: 20px; }
.auth-form label { display: block; font-size: 14px; font-weight: 500; color: var(--text-secondary); margin-bottom: 6px; }
.auth-form input { width: 100%; height: 44px; border: 1.5px solid var(--border); border-radius: 10px; padding: 0 14px; font-size: 15px; color: var(--text-primary); background: #fafbfc; transition: border-color 0.2s, box-shadow 0.2s; box-sizing: border-box; }
.auth-form input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); background: #fff; }
.auth-btn { width: 100%; height: 46px; background: var(--primary); color: #fff; border: none; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
.auth-btn:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
.auth-error { background: #fef2f2; color: #dc2626; padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; display: none; border: 1px solid #fecaca; }
.auth-error.show { display: block; }
.auth-switch { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-muted); }
.auth-switch a { color: var(--primary); font-weight: 500; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }
.auth-back { text-align: center; margin-top: 12px; }
.auth-back a { color: var(--text-muted); font-size: 13px; text-decoration: none; }
.auth-back a:hover { color: var(--primary); }

/* Header 认证链接 */
.auth-header-link { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.2s; margin-left: 4px; }
.auth-header-link.login { color: var(--primary); border: 1.5px solid var(--primary); }
.auth-header-link.login:hover { background: var(--primary); color: #fff; }
.auth-header-link.register { background: var(--primary); color: #fff; }
.auth-header-link.register:hover { background: #1d4ed8; }
.auth-user-menu { position: relative; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; padding: 6px 12px; border-radius: 8px; background: #f0f4ff; font-size: 14px; }
.auth-user-name { font-weight: 500; color: var(--primary); }
.auth-dropdown { position: absolute; top: 100%; right: 0; margin-top: 8px; background: #fff; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); min-width: 160px; padding: 8px 0; display: none; z-index: 100; }
.auth-dropdown.show { display: block; }
.auth-dropdown-item { display: block; padding: 10px 16px; font-size: 14px; color: var(--text-primary); text-decoration: none; transition: background 0.15s; cursor: pointer; border: none; background: none; width: 100%; text-align: left; }
.auth-dropdown-item:hover { background: #f5f7fa; }
.auth-dropdown-item.danger { color: #dc2626; }

/* ========================================
   购物车
   ======================================== */
.cart-toggle { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: #f0f4ff; border: none; cursor: pointer; font-size: 20px; transition: all 0.2s; margin-left: 8px; }
.cart-toggle:hover { background: #dbeafe; transform: scale(1.05); }
.cart-badge { position: absolute; top: -4px; right: -4px; background: #e8623a; color: #fff; font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 999; display: none; }
.cart-overlay.open { display: block; }
.cart-sidebar { position: fixed; top: 0; right: -420px; width: 400px; max-width: 90vw; height: 100vh; background: #fff; z-index: 1000; box-shadow: -4px 0 30px rgba(0,0,0,0.1); transition: right 0.3s ease; display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.cart-header h3 { font-size: 18px; font-weight: 700; margin: 0; }
.cart-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-muted); padding: 4px 8px; border-radius: 6px; }
.cart-close:hover { background: #f3f4f6; color: var(--text-primary); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--text-muted); font-size: 15px; }
.cart-empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f3f4f6; }
.cart-item-img { font-size: 32px; width: 48px; text-align: center; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }
.cart-item-qty { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.cart-qty-btn { width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.cart-qty-btn:hover { background: #f3f4f6; border-color: var(--primary); }
.cart-qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; color: #999; cursor: pointer; font-size: 16px; padding: 4px; border-radius: 4px; transition: all 0.15s; }
.cart-item-remove:hover { color: #dc2626; background: #fef2f2; }
.cart-footer { padding: 16px 24px; border-top: 1px solid var(--border); background: #fafbfc; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cart-total-label { font-size: 14px; color: var(--text-secondary); }
.cart-total-price { font-size: 22px; font-weight: 700; color: #e8623a; }
.cart-total-price .unit { font-size: 14px; font-weight: 500; }
.cart-checkout-btn { width: 100%; height: 44px; background: #e8623a; color: #fff; border: none; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.cart-checkout-btn:hover { background: #d04e2a; }
.cart-checkout-btn:disabled { background: #ccc; cursor: not-allowed; }

/* 加入购物车按钮 */
.btn-add-cart { display: inline-flex; align-items: center; gap: 4px; padding: 6px 14px; border-radius: 8px; background: var(--primary); color: #fff; border: none; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
.btn-add-cart:hover { background: #1d4ed8; transform: translateY(-1px); box-shadow: 0 2px 8px rgba(37,99,235,0.25); }
.btn-add-cart:active { transform: scale(0.97); }

/* ========================================
   结算模态框
   ======================================== */
.checkout-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1100; display: none; align-items: center; justify-content: center; }
.checkout-modal.open { display: flex; }
.checkout-modal-content { background: #fff; border-radius: 16px; width: 480px; max-width: 90vw; max-height: 85vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.checkout-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.checkout-modal-header h3 { font-size: 18px; font-weight: 700; margin: 0; }
.checkout-modal-close { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-muted); padding: 4px 8px; border-radius: 6px; }
.checkout-modal-close:hover { background: #f3f4f6; }
.checkout-modal-body { padding: 20px 24px; }
.checkout-form .form-group { margin-bottom: 16px; }
.checkout-form label { display: block; font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 4px; }
.checkout-form input, .checkout-form textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 12px; font-size: 14px; box-sizing: border-box; }
.checkout-form input:focus, .checkout-form textarea:focus { outline: none; border-color: var(--primary); }
.checkout-form textarea { resize: vertical; min-height: 60px; }
.checkout-summary { background: #f9fafb; border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; }
.checkout-summary h4 { font-size: 14px; font-weight: 600; margin: 0 0 10px 0; }
.checkout-item { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 4px 0; color: var(--text-secondary); }
.checkout-total-row { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; margin-top: 8px; border-top: 1px solid #e5e7eb; font-weight: 700; font-size: 16px; }
.checkout-submit-btn { width: 100%; height: 46px; background: #e8623a; color: #fff; border: none; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.checkout-submit-btn:hover { background: #d04e2a; }

/* ========================================
   订单状态标签
   ======================================== */
.order-status { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.order-status.pending { background: #fff7ed; color: #ea580c; }
.order-status.confirmed { background: #eff6ff; color: #2563eb; }
.order-status.shipped { background: #faf5ff; color: #9333ea; }
.order-status.completed { background: #f0fdf4; color: #16a34a; }
.order-status.cancelled { background: #f3f4f6; color: #6b7280; }

/* ========================================
   我的订单
   ======================================== */
.order-section { padding: 48px 0; }
.order-empty { text-align: center; padding: 48px 20px; color: var(--text-muted); }
.order-empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }
.order-card { background: #fff; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); margin-bottom: 16px; overflow: hidden; border: 1px solid var(--border); }
.order-card-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; background: #fafbfc; border-bottom: 1px solid #f3f4f6; font-size: 13px; }
.order-card-body { padding: 16px 20px; }
.order-card-item { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; }
.order-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; border-top: 1px solid #f3f4f6; }
.order-card-total { font-weight: 700; font-size: 16px; color: #e8623a; }

/* ========================================
   Toast 通知
   ======================================== */
.toast { position: fixed; top: 20px; right: 20px; z-index: 9999; padding: 14px 24px; border-radius: 10px; font-size: 14px; font-weight: 500; color: #fff; transform: translateX(120%); transition: transform 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.15); max-width: 360px; }
.toast.show { transform: translateX(0); }
.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }
.toast.info { background: #2563eb; }

/* ========================================
   响应式
   ======================================== */
@media (max-width: 768px) {
    .auth-card { padding: 28px 20px; }
    .cart-sidebar { width: 100%; max-width: 100%; right: -100%; }
}

/* ============================================
   Auth Pages (Login & Register)
   ============================================ */

.auth-page {
    min-height: calc(100vh - 360px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 60px;
    background: #f5f7fa;
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 48px 40px 40px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary, #1a1a2e);
    text-align: center;
    margin-bottom: 32px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary, #1a1a2e);
    margin-bottom: 6px;
}

.auth-form .form-group label .required {
    color: #e53e3e;
}

.auth-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    color: var(--text-primary, #1a1a2e);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.auth-input:focus {
    border-color: #4a9e6b;
    box-shadow: 0 0 0 3px rgba(74, 158, 107, 0.15);
}

.auth-input::placeholder {
    color: #9ca3af;
}

.auth-btn {
    width: 100%;
    padding: 13px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #4a9e6b;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.auth-btn:hover {
    background: #3d8a5a;
}

.auth-btn:active {
    transform: scale(0.98);
}

.auth-link {
    color: #4a9e6b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #3d8a5a;
    text-decoration: underline;
}

.auth-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #dc2626;
}

.auth-success {
    text-align: center;
    padding: 20px 0;
}

.auth-success .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f0fdf4;
    color: #22c55e;
    font-size: 28px;
    margin-bottom: 16px;
}

.auth-success h3 {
    font-size: 22px;
    color: var(--text-primary, #1a1a2e);
    margin-bottom: 8px;
}

.auth-success p {
    font-size: 15px;
    color: var(--text-secondary, #6b7280);
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary, #6b7280);
}

.form-actions {
    margin-top: 8px;
}

@media (max-width: 480px) {
    .auth-page {
        padding: 60px 16px 40px;
    }
    .auth-card {
        padding: 36px 24px 32px;
    }
    .auth-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

/* ========================================
   用户认证页面 (注册/登录)
   ======================================== */
.auth-page { min-height: calc(100vh - 80px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: var(--bg); }
.auth-card { background: #fff; border-radius: 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); padding: 40px; width: 100%; max-width: 440px; }
.auth-title { font-size: 24px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; text-align: center; }
.auth-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; text-align: center; }
.auth-form .form-group { margin-bottom: 20px; }
.auth-form label { display: block; font-size: 14px; font-weight: 500; color: var(--text-secondary); margin-bottom: 6px; }
.auth-form input { width: 100%; height: 44px; border: 1.5px solid var(--border); border-radius: 10px; padding: 0 14px; font-size: 15px; color: var(--text-primary); background: #fafbfc; transition: border-color 0.2s, box-shadow 0.2s; box-sizing: border-box; }
.auth-form input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); background: #fff; }
.auth-btn { width: 100%; height: 46px; background: var(--primary); color: #fff; border: none; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
.auth-btn:hover { background: var(--primary-dark, #1d4ed8); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }
.auth-error { background: #fef2f2; color: #dc2626; padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; display: none; border: 1px solid #fecaca; }
.auth-error.show { display: block; }
.auth-switch { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-muted); }
.auth-switch a { color: var(--primary); font-weight: 500; text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }
.auth-back { text-align: center; margin-top: 12px; }
.auth-back a { color: var(--text-muted); font-size: 13px; text-decoration: none; }
.auth-back a:hover { color: var(--primary); }

/* Header Auth Links */
.auth-header-link { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.2s; margin-left: 4px; }
.auth-header-link.login { color: var(--primary); border: 1.5px solid var(--primary); }
.auth-header-link.login:hover { background: var(--primary); color: #fff; }
.auth-header-link.register { background: var(--primary); color: #fff; }
.auth-header-link.register:hover { background: var(--primary-dark, #1d4ed8); }
.auth-user-menu { position: relative; display: inline-flex; align-items: center; gap: 6px; cursor: pointer; padding: 6px 12px; border-radius: 8px; background: #f0f4ff; font-size: 14px; }
.auth-user-name { font-weight: 500; color: var(--primary); }
.auth-dropdown { position: absolute; top: 100%; right: 0; margin-top: 8px; background: #fff; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); min-width: 160px; padding: 8px 0; display: none; z-index: 100; }
.auth-dropdown.show { display: block; }
.auth-dropdown-item { display: block; padding: 10px 16px; font-size: 14px; color: var(--text-primary); text-decoration: none; transition: background 0.15s; cursor: pointer; border: none; background: none; width: 100%; text-align: left; }
.auth-dropdown-item:hover { background: #f5f7fa; }
.auth-dropdown-item.danger { color: #dc2626; }

/* Cart Toggle & Sidebar */
.cart-toggle { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: #f0f4ff; border: none; cursor: pointer; font-size: 20px; transition: all 0.2s; margin-left: 8px; }
.cart-toggle:hover { background: #dbeafe; transform: scale(1.05); }
.cart-badge { position: absolute; top: -4px; right: -4px; background: #e8623a; color: #fff; font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 999; display: none; }
.cart-overlay.open { display: block; }
.cart-sidebar { position: fixed; top: 0; right: -400px; width: 400px; max-width: 90vw; height: 100vh; background: #fff; z-index: 1000; box-shadow: -4px 0 30px rgba(0,0,0,0.1); transition: right 0.3s ease; display: flex; flex-direction: column; }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.cart-header h3 { font-size: 18px; font-weight: 700; margin: 0; }
.cart-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-muted); padding: 4px 8px; border-radius: 6px; }
.cart-close:hover { background: #f3f4f6; color: var(--text-primary); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--text-muted); font-size: 15px; }
.cart-empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f3f4f6; }
.cart-item-img { font-size: 32px; width: 48px; text-align: center; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 13px; color: var(--text-secondary); margin-top: 2px; }
.cart-item-qty { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.cart-qty-btn { width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all 0.15s; }
.cart-qty-btn:hover { background: #f3f4f6; border-color: var(--primary); }
.cart-qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; color: #999; cursor: pointer; font-size: 16px; padding: 4px; border-radius: 4px; transition: all 0.15s; }
.cart-item-remove:hover { color: #dc2626; background: #fef2f2; }
.cart-footer { padding: 16px 24px; border-top: 1px solid var(--border); background: #fafbfc; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cart-total-label { font-size: 14px; color: var(--text-secondary); }
.cart-total-price { font-size: 22px; font-weight: 700; color: #e8623a; }
.cart-total-price .unit { font-size: 14px; font-weight: 500; }
.cart-checkout-btn { width: 100%; height: 44px; background: #e8623a; color: #fff; border: none; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.cart-checkout-btn:hover { background: #d04e2a; }
.cart-checkout-btn:disabled { background: #ccc; cursor: not-allowed; }

/* Add to Cart Button */
.btn-add-cart { display: inline-flex; align-items: center; gap: 4px; padding: 6px 14px; border-radius: 8px; background: var(--primary); color: #fff; border: none; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; margin-top: 8px; }
.btn-add-cart:hover { background: var(--primary-dark, #1d4ed8); transform: translateY(-1px); box-shadow: 0 2px 8px rgba(37,99,235,0.25); }
.btn-add-cart:active { transform: scale(0.97); }

/* Checkout Modal */
.checkout-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1100; display: none; align-items: center; justify-content: center; }
.checkout-modal.open { display: flex; }
.checkout-modal-content { background: #fff; border-radius: 16px; width: 480px; max-width: 90vw; max-height: 85vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.checkout-modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.checkout-modal-header h3 { font-size: 18px; font-weight: 700; margin: 0; }
.checkout-modal-close { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-muted); padding: 4px 8px; border-radius: 6px; }
.checkout-modal-close:hover { background: #f3f4f6; }
.checkout-modal-body { padding: 20px 24px; }
.checkout-form .form-group { margin-bottom: 16px; }
.checkout-form label { display: block; font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 4px; }
.checkout-form input, .checkout-form textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 12px; font-size: 14px; box-sizing: border-box; }
.checkout-form input:focus, .checkout-form textarea:focus { outline: none; border-color: var(--primary); }
.checkout-form textarea { resize: vertical; min-height: 60px; }
.checkout-summary { background: #f9fafb; border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; }
.checkout-summary h4 { font-size: 14px; font-weight: 600; margin: 0 0 10px 0; }
.checkout-item { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 4px 0; color: var(--text-secondary); }
.checkout-total-row { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; margin-top: 8px; border-top: 1px solid #e5e7eb; font-weight: 700; font-size: 16px; }
.checkout-submit-btn { width: 100%; height: 46px; background: #e8623a; color: #fff; border: none; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.checkout-submit-btn:hover { background: #d04e2a; }

/* Order Status Tags */
.order-status { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 600; }
.order-status.pending { background: #fff7ed; color: #ea580c; }
.order-status.confirmed { background: #eff6ff; color: #2563eb; }
.order-status.shipped { background: #faf5ff; color: #9333ea; }
.order-status.completed { background: #f0fdf4; color: #16a34a; }
.order-status.cancelled { background: #f3f4f6; color: #6b7280; }

/* My Orders Section */
.order-section { padding: 48px 0; }
.order-empty { text-align: center; padding: 48px 20px; color: var(--text-muted); }
.order-empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }
.order-card { background: #fff; border-radius: 12px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); margin-bottom: 16px; overflow: hidden; border: 1px solid var(--border); }
.order-card-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; background: #fafbfc; border-bottom: 1px solid #f3f4f6; font-size: 13px; }
.order-card-body { padding: 16px 20px; }
.order-card-item { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; }
.order-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; border-top: 1px solid #f3f4f6; }
.order-card-total { font-weight: 700; font-size: 16px; color: #e8623a; }

/* Toast Notification */
.toast { position: fixed; top: 20px; right: 20px; z-index: 9999; padding: 14px 24px; border-radius: 10px; font-size: 14px; font-weight: 500; color: #fff; transform: translateX(120%); transition: transform 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.15); max-width: 360px; }
.toast.show { transform: translateX(0); }
.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }
.toast.info { background: #2563eb; }

/* Responsive */
@media (max-width: 768px) {
    .auth-card { padding: 28px 20px; }
    .cart-sidebar { width: 100%; max-width: 100%; right: -100%; }
}
