*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
    background: #FFFCF8;
    color: #1E1E2A;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #FFF8F3;
}

/* 整体视觉语言：暖珊瑚+香槟金+鼠尾草绿，极简奢华杂志风 */
:root {
    --primary: #FF6B3D;
    --primary-dark: #E8552A;
    --secondary: #B88A5E;
    --secondary-light: #E8D5C0;
    --accent: #F5C842;
    --sage: #A8C5B5;
    --sage-light: #D4E4DA;
    --bg-warm: #FFFCF8;
    --bg-cream: #FFF5EE;
    --text-dark: #1E1E2A;
    --text-mid: #4A4A5A;
    --text-light: #8A8A9A;
    --border-light: rgba(184, 138, 94, 0.15);
    --shadow-warm: rgba(255, 107, 61, 0.08);
    --shadow-card: rgba(184, 138, 94, 0.10);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ========== 导航 ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(18px) saturate(1.2);
    border-bottom: 1px solid var(--border-light);
    transition: 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px var(--shadow-warm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 107, 61, 0.25);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: 0.25s ease;
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.3px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: 0.3s ease;
    border-radius: 2px;
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, var(--primary), #FF8F5E) !important;
    box-shadow: 0 4px 16px rgba(255, 107, 61, 0.25) !important;
    transition: 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(255, 107, 61, 0.35) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 4px;
    border-radius: 8px;
    transition: 0.2s;
}

.menu-toggle:hover {
    background: var(--bg-cream);
}

/* ========== Hero ========== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    background: linear-gradient(165deg, var(--bg-warm) 0%, var(--bg-cream) 40%, #FFF0E8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 61, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '✦';
    position: absolute;
    bottom: 10%;
    left: 5%;
    font-size: 12rem;
    color: rgba(184, 138, 94, 0.05);
    pointer-events: none;
    font-family: serif;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 100%;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--sage-light), #F0F5F0);
    color: var(--secondary);
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-mid);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(184, 138, 94, 0.15);
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* ========== 按钮 ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.3px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #FF8F5E);
    box-shadow: 0 4px 20px rgba(255, 107, 61, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 107, 61, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(184, 138, 94, 0.2);
}

/* ========== 标签/标题 ========== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 14px;
    color: var(--secondary);
    text-transform: uppercase;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-desc {
    max-width: 600px;
    color: var(--text-mid);
    font-size: 1.05rem;
    margin-bottom: 48px;
    line-height: 1.7;
}

/* ========== 卡片网格 ========== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.category-card {
    border-radius: var(--radius-md);
    padding: 36px 32px;
    background: #fff;
    border: 1px solid var(--border-light);
    transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: 0.3s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px var(--shadow-card);
    border-color: transparent;
}

.category-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--bg-cream), #FFE8DC);
    color: var(--primary);
    transition: 0.3s ease;
}

.category-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary), #FF8F5E);
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 107, 61, 0.25);
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.25s ease;
}

.card-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ========== 特性块 ========== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(184, 138, 94, 0.12);
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.6s ease;
}

.feature-image:hover img {
    transform: scale(1.03);
}

.feature-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.2;
}

.feature-text p {
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-mid);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-cream);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ========== 数据条 ========== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.stat-item {
    padding: 32px 20px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--border-light);
    transition: 0.3s ease;
    position: relative;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px var(--shadow-card);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ========== 内容墙 ========== */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.content-wall-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-light);
    transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px var(--shadow-card);
    border-color: transparent;
}

.content-wall-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s ease;
}

.content-wall-item:hover img {
    transform: scale(1.03);
}

.content-wall-body {
    padding: 24px 24px 28px;
}

.content-wall-body .meta {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.content-wall-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.content-wall-body p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: var(--secondary-light);
}

.faq-item .faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    transition: 0.3s ease;
}

.faq-item .faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--secondary);
    transition: 0.3s ease;
}

.faq-item.open .faq-question::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    display: none;
    color: var(--text-mid);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open {
    border-color: var(--secondary-light);
    box-shadow: 0 4px 16px rgba(184, 138, 94, 0.06);
}

/* ========== CTA横幅 ========== */
.cta-banner {
    padding: 72px 40px;
    text-align: center;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary) 0%, #FF8F5E 50%, var(--accent) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(255, 107, 61, 0.25);
}

.cta-banner::before {
    content: '✦';
    position: absolute;
    top: -40%;
    right: -10%;
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.04);
    font-family: serif;
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.cta-banner .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

/* ========== 页脚 ========== */
.site-footer {
    padding: 72px 0 32px;
    background: #1E1E2A;
    color: rgba(255, 255, 255, 0.7);
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 280px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========== 工具类 ========== */
.text-accent {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 48px;
    color: var(--text-mid);
    line-height: 1.7;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero .container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: var(--bg-warm);
        padding: 24px 32px;
        gap: 16px;
        border-bottom: 1px solid var(--border-light);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    }

    .main-nav.open a {
        font-size: 1rem;
        padding: 8px 0;
    }

    .section {
        padding: 72px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-desc {
        margin-bottom: 32px;
    }

    .cta-banner {
        padding: 48px 24px;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .header-inner {
        height: 64px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }

    .content-wall-item img {
        height: 180px;
    }

    .cta-banner h2 {
        font-size: 1.4rem;
    }

    .feature-block {
        gap: 28px;
    }

    .feature-text h3 {
        font-size: 1.4rem;
    }
}

/* ========== 额外点缀：滚动条 ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-warm);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========== 选中文本样式 ========== */
::selection {
    background: rgba(255, 107, 61, 0.2);
    color: var(--text-dark);
}

/* ========== 导航活动状态 ========== */
.main-nav a.active {
    color: var(--primary);
}

.main-nav a.active::after {
    width: 100%;
}

/* ========== 卡片网格内标题统一 ========== */
.category-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.category-card .card-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ========== 内容墙元数据 ========== */
.content-wall-body .tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--bg-cream);
    color: var(--secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* ========== 装饰性分隔线 ========== */
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    margin: 20px 0 28px;
}

.text-center .divider {
    margin: 20px auto 28px;
}

/* ========== 图片占位背景 ========== */
.hero-image img[src=""],
.feature-image img[src=""] {
    background: linear-gradient(135deg, var(--bg-cream), var(--sage-light));
    min-height: 320px;
}

.content-wall-item img[src=""] {
    background: linear-gradient(135deg, var(--bg-cream), var(--sage-light));
    min-height: 220px;
}

/* ========== FAQ打开关闭平滑 ========== */
.faq-item .faq-answer {
    display: none;
    animation: faqSlide 0.3s ease;
}

.faq-item.open .faq-answer {
    display: block;
}

@keyframes faqSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== 徽章小点缀 ========== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--sage-light), #F0F5F0);
    color: var(--secondary);
    text-transform: uppercase;
}

/* ========== 悬停缩放通用 ========== */
.hover-lift {
    transition: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
}