/* 装备定制页面样式 */
.page-hero {
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--background-medium) 100%);
    color: var(--text-primary);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: slideInUp 0.8s ease-out;
}

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

.hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    }
}

.hero-subtitle {
    font-size: 1.2em;
    color: var(--text-secondary);
    margin-bottom: 25px;
    letter-spacing: 3px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    animation: fadeIn 1s ease-out 0.5s both;
}

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

/* 定制模块布局 */
.custom-modules {
    padding: 60px 20px;
    background: linear-gradient(to bottom, var(--background-dark) 0%, var(--background-medium) 100%);
    min-height: 100vh;
}

.module-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.custom-module {
    background: linear-gradient(135deg, var(--background-medium) 0%, var(--background-light) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow-dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--border-color);
    animation: slideInUp 0.6s ease-out;
}

.custom-module:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-dark);
    border-color: var(--primary-color);
}

.custom-module:nth-child(even) {
    animation-delay: 0.2s;
}

.module-header {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.module-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.module-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.custom-module:hover .module-header img {
    transform: scale(1.1);
}

.module-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 3;
    color: white;
}

.module-title h2 {
    font-size: 2.2em;
    margin: 0 0 8px 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.module-subtitle {
    font-size: 1em;
    color: rgba(255,255,255,0.9);
    letter-spacing: 2px;
    font-weight: 300;
}

/* 模块内容增强 */
.module-content {
    padding: 40px;
}

/* 特色亮点 */
.feature-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00cc6a 100%);
    color: var(--background-dark);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

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

.custom-module:hover .feature-highlight::before {
    left: 100%;
}

.feature-highlight h3 {
    font-size: 1.5em;
    margin: 0 0 15px 0;
    font-weight: 700;
    color: var(--background-dark);
}

.feature-highlight p {
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
    color: var(--background-dark);
    opacity: 0.9;
}

/* 服务详情 */
.service-details {
    margin-bottom: 30px;
}

.service-details h4 {
    font-size: 1.3em;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.service-details h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details li {
    padding: 12px 0;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
    transition: color 0.3s ease;
}

.service-details li:hover {
    color: var(--text-primary);
}

.service-details li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-color);
    font-size: 0.8em;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.service-details li:last-child {
    border-bottom: none;
}

/* 流程时间线 */
.process-timeline {
    margin-bottom: 30px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 2px solid var(--background-dark);
}

.timeline-item .day {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.9em;
    margin-bottom: 5px;
    display: block;
}

.timeline-item .task {
    color: var(--text-primary);
    font-size: 1em;
}

/* 价格优势 */
.pricing-advantage {
    margin-bottom: 30px;
}

.pricing-advantage h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.price-benefits {
    display: grid;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--background-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-item:hover {
    background: var(--background-medium);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.5em;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--background-dark);
}

.benefit-text {
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.5;
}

/* CTA按钮 */
.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00cc6a 100%);
    color: var(--background-dark);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(0);
}

/* 联系部分 */
.contact-section {
    background: linear-gradient(135deg, var(--background-medium) 0%, var(--background-dark) 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-content h2 {
    font-size: 2.5em;
    color: var(--text-primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content p {
    color: var(--text-secondary);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-item {
    background: var(--background-light);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.contact-icon {
    font-size: 2em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .custom-modules {
        padding: 40px 15px;
    }
    
    .module-header {
        height: 200px;
    }
    
    .module-title {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .module-title h2 {
        font-size: 1.8em;
    }
    
    .module-content {
        padding: 25px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding: 12px 15px;
    }
    
    .timeline-item::before {
        left: -5px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-content h2 {
        font-size: 2em;
    }
}

.loading {
    opacity: 0.5;
    pointer-events: none;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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