/* Custom Pages Frontend Styles - Luxury Minimal Theme */

/* ========================================
   Font System - 中文字体适配
   思源黑体为主，支持多平台
   ======================================== */
:root {
    /* Font Stacks */
    --font-sans: 'Source Han Sans SC', 'PingFang SC', 'Microsoft YaHei', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', sans-serif;
    --font-serif: 'Source Han Serif SC', 'Noto Serif SC', 'STSong', 'SimSun', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Source Code Pro', 'Consolas', monospace;
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Font Sizes - 中文适配 */
    --text-xs: 0.75rem;      /* 12px - 小字/标签 */
    --text-sm: 0.875rem;     /* 14px - 辅助文字 */
    --text-base: 1rem;        /* 16px - 正文（中文最佳阅读字号） */
    --text-lg: 1.125rem;     /* 18px - 卡片标题 */
    --text-xl: 1.25rem;      /* 20px - 区块标题 */
    --text-2xl: 1.5rem;      /* 24px - 移动端H1 */
    --text-3xl: 1.875rem;    /* 30px - 桌面端H2 */
    --text-4xl: 2.25rem;     /* 36px - 桌面端H1 */
    --text-5xl: 3rem;        /* 48px - Hero标题（谨慎使用） */
    
    /* Letter Spacing - 中文字间距优化 */
    --letter-spacing-tight: -0.02em;   /* 收紧 - 用于大标题 */
    --letter-spacing-normal: 0;         /* 正常 - 正文 */
    --letter-spacing-wide: 0.05em;     /* 加宽 - 按钮/标签 */
    --letter-spacing-widest: 0.1em;    /* 最宽 - 装饰文字 */
    
    /* Line Height - 中文行高 */
    --leading-tight: 1.1;    /* 标题 */
    --leading-normal: 1.6;   /* 正文 */
    --leading-relaxed: 1.8;  /* 长文/说明 */
}

/* ========================================
   Color System - 奢雅极简配色方案
   深海蓝背景 + 奢雅金点缀
   ======================================== */
:root {
    /* Primary Colors - 奢雅金 */
    --cp-gold: #C9A962;
    --cp-gold-light: #E8D5A3;
    --cp-gold-dark: #A68B3D;
    
    /* Background Colors - 深海蓝系列 */
    --cp-navy: #0A1628;
    --cp-navy-light: #152238;
    --cp-navy-lighter: #1E3A5F;
    
    /* Text Colors */
    --cp-ivory: #FAFAF8;
    --cp-stone: #9CA3AF;
    --cp-charcoal: #374151;
    --cp-text-dark: #0A1628;
    
    /* Legacy compatibility */
    --cp-primary: var(--cp-gold);
    --cp-primary-dark: var(--cp-gold-dark);
    --cp-primary-light: var(--cp-gold-light);
    --cp-text-primary: var(--cp-ivory);
    --cp-text-secondary: var(--cp-stone);
    --cp-text-muted: var(--cp-stone);
    --cp-text-light: var(--cp-ivory);
    --cp-bg-light: var(--cp-navy-light);
    --cp-bg-white: var(--cp-navy-light);
    --cp-bg-dark: var(--cp-navy);
    
    /* Shadows - 奢雅风格阴影 */
    --cp-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --cp-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --cp-shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    --cp-shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.3);
    
    /* Transitions */
    --cp-transition: 0.3s ease;
    --cp-transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Gradients */
    --cp-gradient-gold: linear-gradient(135deg, #C9A962 0%, #A68B3D 100%);
    --cp-gradient-navy: linear-gradient(180deg, #0A1628 0%, #152238 100%);
    --cp-gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}


/* Module Section Title - Override Theme Styles */
.real-content h3,
.module-section h3,
.section-title {
    font-size: 2.4em !important;
}


/* Base Styles */
.custom-pages-container {
    font-family: var(--font-sans);
    font-weight: var(--font-weight-regular);
    line-height: var(--leading-normal);
    color: var(--cp-text-primary);
    background-color: var(--cp-navy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 0;
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: var(--text-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--cp-gradient-gold);
    color: var(--cp-navy);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--cp-shadow-gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--cp-gold);
    border: 1px solid var(--cp-gold);
}

.btn-outline:hover {
    background-color: var(--cp-gold);
    color: var(--cp-navy);
}

/* Brand Intro Module - Modern Slider */
.brand-intro-module {
    position: relative;
    min-height: 100vh;
    background: var(--cp-bg-dark);
}

.overview-slides {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 1020px !important;
    max-height: 1020px !important;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1020px !important;
    max-height: 1020px !important;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

/* 移动端：完整显示图片，不裁剪 */
@media (max-width: 768px) {
    .slide {
        background-size: contain !important;
        background-position: center center !important;
    }
}

/* Slide Image with Ken Burns Effect */
.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1020px !important;
    max-height: 1020px !important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1);
    animation: kenBurns 20s ease-in-out infinite alternate;
}

/* 移动端：完整显示图片 */
@media (max-width: 768px) {
    .slide-image {
        background-size: contain !important;
        background-position: center center !important;
        animation: none !important;
    }
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(-2%, -1%);
    }
}

/* Gradient Overlay - elegant dark to transparent */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 30%,
        rgba(0, 0, 0, 0.2) 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

/* Slide Content - floating, no box */
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 25vh;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--cp-text-light);
    max-width: 900px;
    width: 100%;
    padding: 0 clamp(20px, 5vw, 60px);
}

/* Animate text elements on slide active */
.slide.active .slide-content h2 {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.slide.active .slide-content .subtitle {
    animation: slideUp 0.8s ease-out 0.4s both;
}

.slide.active .slide-content .description {
    animation: slideUp 0.8s ease-out 0.6s both;
}

.slide.active .slide-content .slide-cta {
    animation: slideUp 0.8s ease-out 0.8s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle - 中文副标题 */
.slide-content .subtitle {
    font-size: clamp(var(--text-sm), 1.5vw, var(--text-xl));
    margin-bottom: clamp(16px, 2.5vw, 28px);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    color: var(--cp-gold-light);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    font-family: var(--font-sans);
}

/* Main Title - 中文主标题（适度字号） */
.slide-content h2 {
    font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
    font-weight: var(--font-weight-light);
    margin-bottom: clamp(20px, 3vw, 36px);
    letter-spacing: var(--letter-spacing-tight);
    text-shadow: 0 6px 40px rgba(0, 0, 0, 0.7), 0 3px 15px rgba(0, 0, 0, 0.5);
    line-height: var(--leading-tight);
    color: var(--cp-ivory);
    font-family: var(--font-serif);
}

/* Desktop slide title - 中文桌面端标题 */
@media (min-width: 992px) {
    .slide-content h2,
    .real-content .slide-content h2 {
        font-size: var(--text-4xl) !important;
        font-weight: var(--font-weight-light) !important;
    }
}

/* Description - 中文描述文字 */
.slide-content .description {
    font-size: clamp(var(--text-sm), 1.8vw, var(--text-lg));
    margin-bottom: clamp(28px, 5vw, 48px);
    line-height: var(--leading-relaxed);
    max-width: min(700px, 90%);
    margin-left: auto;
    margin-right: auto;
    color: var(--cp-stone);
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.6);
    font-weight: var(--font-weight-regular);
    font-family: var(--font-sans);
}

/* CTA Button - larger and more prominent */
.slide-cta {
    display: inline-flex;
    gap: clamp(12px, 2vw, 24px);
    flex-wrap: wrap;
    justify-content: center;
}

.slide-cta .btn {
    padding: clamp(14px, 2vw, 20px) clamp(28px, 4vw, 48px);
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide-cta .btn-primary {
    background: var(--cp-primary);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.slide-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 124, 186, 0.4);
}

.slide-cta .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    backdrop-filter: blur(10px);
}

.slide-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
}

/* Slide Navigation Dots - 隐藏状态 */
.slide-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* 隐藏小圆点导航 */
    gap: 12px;
    z-index: 10;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slide-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slide-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Progress Bar */
.slide-progress {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--cp-primary);
    z-index: 10;
    animation: progress linear forwards;
}

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* No content state */
.no-content {
    padding: 80px 20px;
    text-align: center;
    background: var(--cp-bg-light);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-content p {
    font-size: 1.25rem;
    color: var(--cp-text-secondary);
}

.core-competitiveness {
    padding: 80px 0;
    background: var(--cp-navy);
}

.core-competitiveness h3 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 48px;
    color: var(--cp-ivory);
    font-weight: 300;
    position: relative;
    letter-spacing: -0.02em;
}

.core-competitiveness h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--cp-gold);
    margin: 24px auto 0;
}

.competitiveness-grid {
    display: flex;
    gap: 24px;
}

.competitiveness-grid > * {
    flex: 1;
    min-width: 280px;
}

.competitiveness-item {
    background: var(--cp-gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px;
    border-radius: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.competitiveness-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%);
}

.competitiveness-item .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--cp-gold);
}

.competitiveness-item h4 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--cp-ivory);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.competitiveness-item p {
    color: var(--cp-stone);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.competitiveness-item .learn-more {
    color: var(--cp-gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.competitiveness-item .learn-more:hover {
    color: var(--cp-gold-light);
    text-decoration: none;
}

/* Core Advantages Module - 奢雅深色背景 */
.core-advantages-module {
    padding: 80px 0;
    background: var(--cp-navy-light);
}

.competitor-comparison {
    margin-bottom: 60px;
}

/* 竞品对比优势区块 - 深海蓝背景上的象牙白文字 */
.core-advantages-module .competitor-comparison h3 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 48px;
    color: var(--cp-ivory);
    position: relative;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.core-advantages-module .competitor-comparison h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--cp-gold);
    margin: 24px auto 0;
}

/* Comparison Table - New Layout */
.comparison-table-wrapper {
    background: var(--cp-gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table-new {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table-new thead {
    background: rgba(201, 169, 98, 0.15);
}

.comparison-table-new th {
    padding: 18px 20px;
    color: var(--cp-ivory);
    font-weight: 500;
    font-size: 0.9375rem;
    text-align: center;
    border: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.comparison-table-new th.dimension-header {
    text-align: center;
    min-width: 140px;
    background: rgba(0, 0, 0, 0.2);
}

.comparison-table-new th.our-brand-header {
    background: rgba(201, 169, 98, 0.2);
    min-width: 180px;
}

.comparison-table-new th.competitor-header {
    background: rgba(0, 0, 0, 0.15);
    min-width: 150px;
}

.comparison-table-new tbody tr {
    transition: background 0.3s ease;
}

.comparison-table-new tbody tr:hover {
    background: rgba(201, 169, 98, 0.08);
}

.comparison-table-new tbody tr:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table-new td {
    padding: 20px;
    vertical-align: middle;
    border: none;
}

.comparison-table-new td.dimension-cell {
    background: rgba(0, 0, 0, 0.1);
    font-weight: 500;
    color: var(--cp-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 80px;
}

.dimension-cell .dimension-icon {
    font-size: 1.25rem;
    color: var(--cp-gold);
}

.dimension-cell .dimension-text {
    font-size: 0.9375rem;
}

.comparison-table-new td.our-advantage-cell {
    text-align: center;
    background: rgba(201, 169, 98, 0.05);
}

.our-advantage-cell .advantage-text {
    color: var(--cp-gold);
    font-weight: 600;
    font-size: 0.9375rem;
}

.comparison-table-new td.competitor-weakness-cell {
    text-align: center;
    background: rgba(0, 0, 0, 0.05);
}

.competitor-weakness-cell .weakness-text {
    color: var(--cp-stone);
    font-size: 0.9375rem;
}

.competitor-weakness-cell .no-data {
    color: var(--cp-charcoal);
    font-size: 1.25rem;
}

/* Old Table Styles - Keep for backwards compatibility */
.comparison-table {
    background: var(--cp-bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--cp-shadow-md);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-table th {
    background: var(--cp-bg-light);
    font-weight: 600;
    color: var(--cp-text-primary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .our-company {
    color: var(--cp-primary);
    font-weight: bold;
}

.advantage-highlights {
    padding: 32px;
    background: var(--cp-gradient-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0;
    margin-top: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-highlights h4 {
    color: var(--cp-gold);
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.advantage-highlights ul {
    list-style: none;
    padding: 0;
}

.advantage-highlights li {
    padding: 10px 0;
    position: relative;
    padding-left: 24px;
    color: var(--cp-stone);
    font-size: 0.9375rem;
}

.advantage-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--cp-gold);
    font-weight: 500;
}

.expert-team {
    margin-top: 60px;
}

/* 专家团队 - 深海蓝背景上的象牙白文字 */
.core-advantages-module .expert-team h3 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 48px;
    color: var(--cp-ivory);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.team-member {
    background: var(--cp-gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0;
    padding: 24px;
    text-align: center;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.12) 0%, rgba(201, 169, 98, 0.04) 100%);
}

.member-avatar {
    margin-bottom: 16px;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--cp-gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.avatar-placeholder span {
    color: var(--cp-navy);
    font-size: 2.5rem;
    font-weight: 500;
}

.team-member img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 auto !important;
    display: block !important;
    max-width: 100px !important;
    min-width: 100px !important;
}

.member-info h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--cp-text-primary);
}

.member-info .position {
    color: var(--cp-primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.member-info .experience {
    color: var(--cp-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.member-info .description {
    color: var(--cp-text-secondary);
    font-size: 0.875rem;
}

/* Products Module */
.products-module {
    padding: 80px 0;
    background: var(--cp-navy);
}

.pricing-plans {
    margin-bottom: 60px;
}

.pricing-plans h3 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 48px;
    color: var(--cp-ivory);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.plan {
    background: var(--cp-gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan.recommended {
    border-color: var(--cp-gold);
    position: relative;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
}

.plan.recommended::before {
    content: "推荐";
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--cp-gradient-gold);
    color: var(--cp-navy);
    padding: 4px 12px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.plan:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 98, 0.3);
}

.plan-header {
    margin-bottom: 24px;
}

.plan-header h4 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    color: var(--cp-ivory);
    font-weight: 500;
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--cp-gold);
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.features li {
    padding: 10px 0;
    color: var(--cp-stone);
    font-size: 0.9375rem;
}

.features li:before {
    content: "✓";
    color: var(--cp-gold);
    margin-right: 8px;
}

.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.plan-actions .btn {
    width: 70%;
}

.refund-policy {
    text-align: center;
    color: inherit;
    font-size: 0.875rem;
}

.scenarios {
    margin-top: 60px;
}

.scenarios h3 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 48px;
    color: inherit;
}

.scenario-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    margin: 0 8px 16px 0;
    border: none;
    background: var(--cp-bg-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--cp-ivory);
}

.tab-btn.active {
    background: #ffffff;
    color: var(--cp-text-dark);
}

.scenario-panel {
    display: none;
    background: var(--cp-bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.1);
    display: none;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
}

.scenario-panel.active {
    display: grid;
}

.scenario-left {
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.scenario-right {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.scenario-header {
    margin-bottom: 24px;
}

.scenario-header h5 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: inherit;
}

.pain-point {
    color: inherit;
    font-style: italic;
}

.solution-steps {
    margin-bottom: 24px;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    padding: 6px 8px;
    background: transparent;
    border-radius: 4px;
}

.step-text {
    font-size: 0.875rem;
    line-height: 1.4;
}

.step-number {
    width: 16.8px;
    height: 16.8px;
    background: var(--cp-primary);
    color: var(--cp-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    margin-right: 12px;
}

.scenario-right .result {
    background: rgba(201, 169, 98, 0.08);
    padding: 24px;
    border-radius: 12px;
    height: fit-content;
}

.scenario-right .result h5 {
    color: var(--cp-primary);
    font-size: 1.125rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.scenario-right .result p {
    color: inherit;
    line-height: 1.8;
}

/* Testimonials Module */
.testimonials-module {
    padding: 80px 0;
    background: var(--cp-bg-light);
}

.case-studies h3,
.faq-section h3 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 48px;
    color: var(--cp-text-primary);
}

/* 成功案例与FAQ之间的间距 */
.case-studies {
    margin-bottom: 80px;
}

.studies-filter {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.studies-filter select,
.studies-filter input {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    font-size: 1rem;
}

.studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.study-card {
    background: var(--cp-bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--cp-shadow-md);
    transition: transform 0.3s ease;
    position: relative;
    height: 280px;
    min-height: 280px;
}

.study-card:hover {
    transform: translateY(-8px);
}

.study-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.study-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

.study-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    color: #ffffff;
}

.study-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #ffffff;
    line-height: 1.3;
}

.study-content .industry {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 1.3;
}

/* 案例描述 - 前端隐藏，仅提供给搜索引擎索引 */
.study-content .problem {
    display: none;
}

.study-content .result {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 16px;
}

.study-content .view-details {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

.view-details:hover {
    text-decoration: underline;
}

.faq-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.faq-two-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    width: 100%;
}

.faq-two-columns .faq-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 169, 98, 0.2);
    transform: translateY(-2px);
}

.faq-item.expanded {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(201, 169, 98, 0.3);
}

.faq-item.expanded .faq-answer {
    display: block;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.02) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-question h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--cp-ivory);
    font-weight: 500;
    letter-spacing: -0.01em;
    flex: 1;
    line-height: 1.5;
}

.toggle-icon {
    font-size: 1rem;
    color: var(--cp-gold);
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.15);
    margin-left: 16px;
    flex-shrink: 0;
}

.faq-item:hover .toggle-icon {
    background: rgba(201, 169, 98, 0.25);
}

.faq-item.expanded .toggle-icon {
    transform: rotate(45deg);
    background: var(--cp-gold);
    color: var(--cp-navy);
}

.faq-answer {
    padding: 0 24px;
    overflow: hidden;
    display: none;
}

.faq-item.expanded .faq-answer {
    padding: 20px 24px 24px;
    display: block;
}

.faq-answer p {
    margin: 0;
    color: var(--cp-stone);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* About Module */
.about-module {
    padding: 80px 0;
    background: var(--cp-bg-white);
}

.resource-center h3,
.latest-news h3,
.contact-section h3 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 48px;
    color: inherit;
}

.resources-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    row-gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.resource-item {
    background: var(--cp-bg-light);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.resource-info h4 {
    font-size: 1.5rem !important;
    margin-bottom: 16px;
    color: #E8D5A3 !important;
    font-weight: 600;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 16px;
    transition: color 0.3s ease;
}

.resource-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 160px;
    height: 2px;
    background: linear-gradient(90deg, var(--cp-gold), transparent);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.resource-item:hover .resource-info h4 {
    color: var(--cp-gold);
}

.resource-item:hover .resource-info h4::after {
    width: 60px;
}

.category {
    color: var(--cp-primary);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.summary {
    color: inherit;
    margin-bottom: 8px;
    font-size: 0.875rem;
    line-height: 1.3;
}

.date {
    color: inherit;
    font-size: 0.75rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--cp-primary);
    color: var(--cp-text-light);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: var(--cp-primary-dark);
}

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

.news-item {
    display: flex;
    background: var(--cp-bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.news-date {
    background: var(--cp-primary);
    color: var(--cp-text-light);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    font-weight: bold;
}

.news-content {
    padding: 24px;
    flex-grow: 1;
}

.news-content h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: inherit;
}

.news-summary {
    color: inherit;
    font-size: 0.875rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-image {
    border-radius: 8px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 16px;
    background: var(--cp-bg-light);
    border-radius: 8px;
}

.label {
    font-weight: 500;
    color: var(--cp-text-primary);
    margin-right: 8px;
}

.value {
    color: var(--cp-text-secondary);
}

.contact-form {
    /* 无底色 - 简约风格 */
    background: transparent;
    padding: 8px 0;
    padding-left: 40px;
    border-radius: 0;
}

.contact-form h4 {
    margin-bottom: 32px;
    color: var(--cp-text-primary);
    font-size: 1.35rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    font-size: 1.05rem;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cp-primary);
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.08);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .brand-intro-module {
        min-height: 70vh;
    }
    
    .overview-slides {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .brand-intro-module {
        min-height: auto;
        background: var(--cp-bg-dark);
    }
    
    .overview-slides {
        height: 220px !important;
        min-height: 220px;
        max-height: 220px !important;
        overflow: hidden;
    }
    
    .slides-container {
        height: 220px !important;
        min-height: 220px;
        max-height: 220px !important;
    }
    
    .slide {
        height: 220px !important;
        min-height: 220px;
        max-height: 220px !important;
        padding: 0;
        position: absolute;
    }
    
    .slide-image {
        height: 100% !important;
        min-height: 100%;
        max-height: 100% !important;
        position: absolute;
        top: 0;
        left: 0;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .slide-overlay {
        height: 100% !important;
        min-height: 100%;
        max-height: 100% !important;
    }

    /* 幻灯片内容 - 移动端覆盖在图片上 */
    .slide-content-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    
    /* 减少幻灯片内容区域的内边距 */
    .slide-content {
        padding: 0 !important;
        max-width: 100%;
    }

    /* 幻灯片标题 - 移动端缩小 */
    .slide-content h2 {
        font-size: 1.4rem !important;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .slide-content .subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 2px;
        letter-spacing: 1px;
    }

    .slide-content .description {
        font-size: 0.7rem !important;
        margin-bottom: 6px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* 按钮缩小并堆叠 */
    .slide-cta {
        flex-direction: row;
        gap: 8px;
        justify-content: center;
    }
    
    .slide-cta .btn {
        padding: 5px 10px !important;
        font-size: 0.65rem !important;
    }

    /* 模块标题 - 移动端 (1.4rem) - 最高优先级覆盖主题样式 */
    body .custom-pages-container .core-competitiveness h3,
    body .custom-pages-container .competitor-comparison h3,
    body .custom-pages-container .expert-team h3,
    body .custom-pages-container .pricing-plans h3,
    body .custom-pages-container .scenarios h3,
    body .custom-pages-container .case-studies h3,
    body .custom-pages-container .faq-section h3,
    body .custom-pages-container .resource-center h3,
    body .custom-pages-container .latest-news h3,
    body .custom-pages-container .contact-section h3,
    body .custom-pages-container h3 {
        font-size: 1.4rem !important;
    }

    .slide-nav {
        bottom: 5px;
        gap: 5px;
    }
    
    .slide-dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 768px) {
    .competitiveness-grid,
    .team-grid,
    .plans-container,
    .studies-grid,
    .resources-list {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .news-item {
        flex-direction: column;
    }

    .news-date {
        min-width: auto;
        padding: 16px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .scenario-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        margin: 0 0 8px 0;
    }

    /* Comparison Table Mobile - Horizontal Scroll */
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table-new {
        min-width: 600px;
    }

    .comparison-table-new th,
    .comparison-table-new td {
        padding: 14px 12px;
        font-size: 0.875rem;
    }

    .comparison-table-new th.dimension-header,
    .comparison-table-new td.dimension-cell {
        min-width: 100px;
    }

    .comparison-table-new th.our-brand-header,
    .comparison-table-new th.competitor-header {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .overview-slides {
        height: 50vh;
        min-height: 30px;
    }
    
    .slide-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .slide-cta .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    
    .slide-nav {
        bottom: 16px;
    }

    .competitiveness,
    .expert-team,
    .pricing-plans,
    .scenarios,
    .case-studies,
    .faq-section,
    .resource-center,
    .latest-news,
    .contact-section {
        padding: 40px 0;
    }

    .competitiveness h3,
    .expert-team h3,
    .pricing-plans h3,
    .scenarios h3,
    .case-studies h3,
    .faq-section h3,
    .resource-center h3,
    .latest-news h3,
    .contact-section h3 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .resource-item {
        flex-direction: column;
        gap: 16px;
    }

    /* FAQ mobile: single column */
    .faq-two-columns {
        flex-direction: column;
    }

    /* Resources mobile: 1 column */
    .resources-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ========================================
   Responsive Breakpoints System
   移动端优先，6个断点全覆盖
   ======================================== */

/* X-Small (xs) - 手机竖屏 */
@media (max-width: 480px) {
    :root {
        --text-xs: 0.7rem;
        --text-sm: 0.8rem;
        --text-base: 0.9375rem;
        --text-lg: 1rem;
        --text-xl: 1.125rem;
        --text-2xl: 1.375rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .btn {
        padding: 10px 16px;
        font-size: var(--text-xs);
    }
    
    .slide-content h2 {
        font-size: var(--text-2xl) !important;
        line-height: 1.15;
    }
    
    .slide-content .subtitle {
        font-size: var(--text-sm) !important;
    }
    
    .slide-content .description {
        font-size: var(--text-sm) !important;
        line-height: var(--leading-relaxed);
    }
    
    .core-competitiveness,
    .core-advantages-module,
    .products-module,
    .testimonials-module,
    .about-module {
        padding: 32px 0;
    }
    
    .competitiveness-grid,
    .team-grid,
    .plans-container,
    .studies-grid,
    .resources-list {
        flex-direction: column;
        gap: 16px;
    }
    
    .competitiveness-item,
    .team-member,
    .plan {
        padding: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-form {
        padding-left: 0;
    }
    
    .faq-two-columns {
        flex-direction: column;
    }
    
    .scenario-panel {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .scenario-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 24px;
    }
    
    .scenario-right {
        padding-left: 0;
    }
}

/* Small (sm) - 手机横屏 */
@media (min-width: 481px) and (max-width: 640px) {
    :root {
        --text-xs: 0.75rem;
        --text-sm: 0.875rem;
        --text-base: 1rem;
        --text-lg: 1.125rem;
        --text-xl: 1.25rem;
        --text-2xl: 1.5rem;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .slide-content h2 {
        font-size: var(--text-3xl) !important;
    }
    
    .competitiveness-grid {
        flex-wrap: wrap;
    }
    
    .team-grid,
    .plans-container {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
}

/* Medium (md) - 平板竖屏 */
@media (min-width: 641px) and (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    .slide-content h2 {
        font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl)) !important;
    }
    
    .competitiveness-grid {
        flex-wrap: wrap;
    }
    
    .team-grid,
    .plans-container {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
    }
    
    .contact-info {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .faq-two-columns {
        flex-direction: row;
    }

    /* Resources tablet: 2 columns */
    .resources-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Large (lg) - 平板横屏 / 小屏笔记本 */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 900px;
        padding: 0 var(--space-lg);
    }
    
    .slide-content h2 {
        font-size: var(--text-4xl) !important;
    }
    
    .plans-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Extra Large (xl) - 标准桌面 */
@media (min-width: 1025px) and (max-width: 1280px) {
    .container {
        max-width: 1100px;
    }
    
    .slide-content h2 {
        font-size: var(--text-5xl) !important;
    }
}

/* Extra Extra Large (2xl) - 大屏显示器 */
@media (min-width: 1281px) {
    .container {
        max-width: 1400px;
    }
    
    .slide-content h2 {
        font-size: clamp(var(--text-4xl), 4.5vw, var(--text-5xl)) !important;
    }
    
    .competitiveness-grid {
        flex-wrap: wrap;
    }
    
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .plans-container {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Resources desktop: 3 columns */
    .resources-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* ========================================
   Touch Device Optimizations
   ======================================== */
@media (hover: none) {
    .competitiveness-item:hover,
    .team-member:hover,
    .plan:hover,
    .study-card:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-outline:hover {
        transform: none;
    }
}

/* ========================================
   High DPI Display Support
   ======================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .slide-content {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    }
}

/* ========================================
   Scroll Animation Classes
   ======================================== */
.animate-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-scroll-delay-1 {
    transition-delay: 0.1s;
}

.animate-scroll-delay-2 {
    transition-delay: 0.2s;
}

.animate-scroll-delay-3 {
    transition-delay: 0.3s;
}

.animate-scroll-delay-4 {
    transition-delay: 0.4s;
}

/* Fade In Animation */
.animate-fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.animate-fade-in.animated {
    opacity: 1;
}

/* Scale In Animation */
.animate-scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Slide In From Left */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In From Right */
.animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Particle Background Styles
   ======================================== */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(201, 169, 98, 0.4);
    border-radius: 50%;
    animation: float-particle 15s ease-in-out infinite;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-50px) translateX(20px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) translateX(-10px) scale(0.8);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-50px) translateX(-20px) scale(1.1);
        opacity: 0.5;
    }
}

/* ========================================
   Glow Effects
   ======================================== */
.glow-gold {
    box-shadow: 0 0 20px rgba(201, 169, 98, 0.3),
                0 0 40px rgba(201, 169, 98, 0.1),
                0 0 60px rgba(201, 169, 98, 0.05);
}

.glow-gold-intense {
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.4),
                0 0 60px rgba(201, 169, 98, 0.2),
                0 0 90px rgba(201, 169, 98, 0.1);
}

/* ========================================
   Custom Cursor
   ======================================== */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.6);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hovering {
    transform: translate(-50%, -50%) scale(2.5);
    background: rgba(201, 169, 98, 0.8);
}

/* ========================================
   Gradient Text Effect
   ======================================== */
.gradient-text-gold {
    background: linear-gradient(90deg, #C9A962, #E8D5A3, #C9A962, #A68B3D);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 8s ease infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========================================
   Decorative Divider
   ======================================== */
.divider-gold {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cp-gold), transparent);
    margin: var(--space-2xl) 0;
}

.divider-gold::before,
.divider-gold::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 1px solid var(--cp-gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.divider-gold::before {
    left: -24px;
}

.divider-gold::after {
    right: -24px;
}

/* ========================================
   Number Counter Animation
   ======================================== */
.counter-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

@keyframes count-up {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.counter-number.animating {
    animation: count-up 0.5s ease-out;
}

/* ========================================
   Smooth Scrollbar
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cp-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--cp-gold);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cp-gold-light);
}