/* ============================================
   「翠玉流光」设计系统 — 旺财28平台
   独创风格：翡翠绿 × 暖金 × 玉白
   灵感：东方雅韵 + 现代极简 + 财富寓意
   ============================================ */

/* ---------- 基础重置 & 全局 ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    background-color: #F7F4EF;
    color: #3D362E;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: #4A8B6C;
    color: #fff;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F0EBE3;
}
::-webkit-scrollbar-thumb {
    background: #C5B5A5;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #B0A090;
}

/* ---------- 容器 & 区块 ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #F0EBE3;
}

/* ---------- 导航栏 — 玻璃暖玉 ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(247, 244, 239, 0.88);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-bottom: 1px solid rgba(212, 165, 90, 0.20);
    transition: background 0.3s;
}

.site-header.scrolled {
    background: rgba(247, 244, 239, 0.96);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 标志 */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    color: #3D362E;
    letter-spacing: 0.5px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #4A8B6C 0%, #6BAD8A 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(74, 139, 108, 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: #5D5248;
    transition: color 0.25s, transform 0.25s;
    position: relative;
    padding: 4px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4A8B6C, #D4A55A);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 1px;
}

.main-nav a:hover {
    color: #4A8B6C;
}

.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, #4A8B6C 0%, #6BAD8A 100%);
    box-shadow: 0 4px 14px rgba(74, 139, 108, 0.30);
    transition: all 0.3s !important;
    letter-spacing: 0.3px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(74, 139, 108, 0.40) !important;
    color: #fff !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #3D362E;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ---------- Hero 区域 — 翡翠迎宾 ---------- */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 72px;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(212, 165, 90, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(74, 139, 108, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #F7F4EF 0%, #F0EBE3 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 90, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 139, 108, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    background: rgba(74, 139, 108, 0.10);
    color: #4A8B6C;
    border: 1px solid rgba(74, 139, 108, 0.15);
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.6rem;
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #2D2822;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #4A8B6C 0%, #D4A55A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: #7A6F65;
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    background: #EDE8E0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- 按钮系统 ---------- */
.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: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #4A8B6C 0%, #6BAD8A 100%);
    box-shadow: 0 4px 16px rgba(74, 139, 108, 0.30);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(74, 139, 108, 0.40);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3A7D5C 0%, #5A9D7A 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    border: 2px solid #D4A55A;
    color: #D4A55A;
    box-shadow: inset 0 0 0 0 #D4A55A;
}

.btn-outline:hover {
    background: #D4A55A;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(212, 165, 90, 0.30);
}

/* ---------- 标签 & 标题 ---------- */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #4A8B6C;
    background: rgba(74, 139, 108, 0.08);
    padding: 4px 16px;
    border-radius: 50px;
    border: 1px solid rgba(74, 139, 108, 0.10);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #2D2822;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.section-title .gold {
    color: #D4A55A;
}

.section-desc {
    max-width: 600px;
    color: #7A6F65;
    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: 20px;
    padding: 32px 28px;
    background: #FFFFFF;
    border: 1px solid rgba(212, 165, 90, 0.12);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4A8B6C, #D4A55A);
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(74, 139, 108, 0.08), 0 4px 16px rgba(212, 165, 90, 0.06);
    border-color: rgba(212, 165, 90, 0.25);
}

.category-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    background: linear-gradient(135deg, rgba(74, 139, 108, 0.10), rgba(212, 165, 90, 0.08));
    color: #4A8B6C;
    transition: all 0.3s;
}

.category-card:hover .card-icon {
    background: linear-gradient(135deg, #4A8B6C, #6BAD8A);
    color: #fff;
    transform: scale(1.05);
}

.category-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2D2822;
}

.category-card p {
    font-size: 0.92rem;
    color: #7A6F65;
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-link {
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    color: #4A8B6C;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 12px;
    color: #D4A55A;
}

/* ---------- 特性块 — 双栏翡翠 ---------- */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
    background: #EDE8E0;
    position: relative;
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(212, 165, 90, 0.08);
    border-radius: 20px;
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s;
}

.feature-image:hover img {
    transform: scale(1.02);
}

.feature-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2D2822;
}

.feature-text p {
    color: #7A6F65;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-top: 8px;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: #3D362E;
    border-bottom: 1px solid rgba(212, 165, 90, 0.06);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✦';
    font-weight: 700;
    color: #D4A55A;
    font-size: 0.7rem;
}

/* ---------- 数据条 — 金玉满堂 ---------- */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.stat-item {
    padding: 32px 20px;
    border-radius: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(212, 165, 90, 0.10);
    transition: all 0.4s;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4A55A, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(74, 139, 108, 0.06);
    border-color: rgba(212, 165, 90, 0.20);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #4A8B6C;
    line-height: 1.1;
    letter-spacing: -1px;
}

.stat-number .gold {
    color: #D4A55A;
}

.stat-label {
    font-size: 0.92rem;
    color: #8A7D72;
    margin-top: 8px;
    font-weight: 500;
}

/* ---------- 内容墙 — 翡翠画廊 ---------- */
.content-wall {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.content-wall-item {
    border-radius: 20px;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid rgba(212, 165, 90, 0.10);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.content-wall-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(74, 139, 108, 0.08);
    border-color: rgba(212, 165, 90, 0.20);
}

.content-wall-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s;
}

.content-wall-item:hover img {
    transform: scale(1.03);
}

.content-wall-body {
    padding: 24px;
}

.content-wall-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #2D2822;
}

.content-wall-body p {
    font-size: 0.88rem;
    color: #7A6F65;
    line-height: 1.6;
}

.content-wall-body .meta {
    font-size: 0.78rem;
    color: #B0A090;
    margin-top: 12px;
    display: flex;
    gap: 16px;
}

/* ---------- FAQ — 金线折叠 ---------- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(212, 165, 90, 0.12);
    border-radius: 16px;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    background: #FFFFFF;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(212, 165, 90, 0.25);
    box-shadow: 0 4px 16px rgba(74, 139, 108, 0.04);
}

.faq-item .faq-question {
    padding: 20px 24px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #2D2822;
    transition: color 0.3s;
}

.faq-item .faq-question::after {
    content: '▾';
    font-size: 0.8rem;
    color: #D4A55A;
    transition: transform 0.4s;
}

.faq-item.open .faq-question::after {
    transform: rotate(180deg);
}

.faq-item.open .faq-question {
    color: #4A8B6C;
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    display: none;
    color: #7A6F65;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    display: block;
    animation: fadeSlide 0.35s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- CTA 横幅 — 暖金流光 ---------- */
.cta-banner {
    padding: 64px 32px;
    text-align: center;
    border-radius: 24px;
    background: linear-gradient(135deg, #4A8B6C 0%, #3A7D5C 40%, #D4A55A 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.10) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(212, 165, 90, 0.20) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 28px;
}

.cta-banner .btn-primary {
    background: #fff;
    color: #4A8B6C;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.cta-banner .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
    background: #fff;
    color: #3A7D5C;
}

.cta-banner .btn-primary::before {
    background: rgba(255, 255, 255, 0.1);
}

/* ---------- 页脚 — 暖玉温润 ---------- */
.site-footer {
    padding: 64px 0 32px;
    background: #EDE8E0;
    border-top: 1px solid rgba(212, 165, 90, 0.10);
    color: #3D362E;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2D2822;
}

.footer-brand p {
    font-size: 0.88rem;
    color: #8A7D72;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2D2822;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #8A7D72;
    font-size: 0.88rem;
    transition: color 0.25s;
}

.footer-col ul li a:hover {
    color: #4A8B6C;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 165, 90, 0.12);
    margin-top: 40px;
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
    color: #8A7D72;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: #4A8B6C;
    text-decoration: none;
}

/* ---------- 工具类 ---------- */
.text-accent {
    color: #D4A55A;
}

.text-center {
    text-align: center;
}

.text-green {
    color: #4A8B6C;
}

.seo-description {
    max-width: 600px;
    margin: 0 auto 56px;
    color: #7A6F65;
    font-size: 1rem;
    line-height: 1.7;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

/* 装饰分割线 */
.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #4A8B6C, #D4A55A);
    border-radius: 1px;
    margin: 0 auto 20px;
}

.divider-left {
    margin: 0 0 20px;
}

/* 金色标签角标 */
.badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 50px;
    background: rgba(212, 165, 90, 0.12);
    color: #D4A55A;
    border: 1px solid rgba(212, 165, 90, 0.15);
    letter-spacing: 0.5px;
}

/* 幽灵装饰元素 */
.gold-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D4A55A;
    margin: 0 6px;
}

/* ---------- 响应式设计 ---------- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-block .feature-image {
        order: -1;
    }

    .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;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(247, 244, 239, 0.98);
        backdrop-filter: blur(20px);
        padding: 24px 32px;
        gap: 16px;
        border-bottom: 1px solid rgba(212, 165, 90, 0.10);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.04);
    }

    .main-nav.open a {
        font-size: 1rem;
        padding: 8px 0;
    }

    .main-nav.open .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .content-wall {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 56px 0;
    }

    .cards-grid,
    .content-wall,
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-desc {
        font-size: 0.92rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.88rem;
    }

    .category-card {
        padding: 24px 20px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .cta-banner {
        padding: 40px 20px;
    }

    .cta-banner h2 {
        font-size: 1.3rem;
    }

    .faq-item .faq-question {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    .faq-item .faq-answer {
        padding: 0 18px 16px;
        font-size: 0.88rem;
    }
}

/* ---------- 额外精致细节 ---------- */

/* 卡片内联金色装饰 */
.card-gold-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #D4A55A, transparent);
    border-radius: 1px;
    margin: 12px 0 16px;
}

/* 渐变文字 */
.gradient-text {
    background: linear-gradient(135deg, #4A8B6C, #D4A55A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 柔和阴影容器 */
.glass-card {
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 165, 90, 0.12);
    border-radius: 20px;
}

/* 金色边框按钮变体 */
.btn-gold {
    background: linear-gradient(135deg, #D4A55A, #C5954A);
    color: #fff;
    box-shadow: 0 4px 16px rgba(212, 165, 90, 0.30);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(212, 165, 90, 0.40);
}

/* 装饰性波浪分隔 */
.wave-divider {
    width: 100%;
    height: 40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40'%3E%3Cpath d='M0,20 C200,0 400,40 600,20 C800,0 1000,40 1200,20 L1200,40 L0,40 Z' fill='%23F0EBE3'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}