/* 服务流程卡片 */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3447db, #2a3bb8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3447db;
}

.process-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(52, 71, 219, 0.4);
    z-index: 2;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(52, 71, 219, 0.3);
    transition: all 0.4s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}

.process-info h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.process-info p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.process-arrow {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    color: #3447db;
    font-size: 1.5rem;
    z-index: 3;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.process-card:hover .process-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
}

/* 现代服务流程 */
.modern-process-flow {
    padding: 2rem 0;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    position: relative;
    width: 100%;
}

.process-step-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 200px;
}

.step-circle {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(52, 71, 219, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.step-circle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(52, 71, 219, 0.4);
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #fff;
    color: #3447db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid #3447db;
}

.step-icon {
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content {
    background: var(--bg-primary);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
}

.step-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.step-content h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.step-connector {
    position: absolute;
    top: 40px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, #3447db, transparent);
    z-index: 1;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid #3447db;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

/* 服务内容模块 */
.service-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-module {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3447db, #2a3bb8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-module:hover::before {
    transform: scaleX(1);
}

.service-module:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3447db;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.module-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(52, 71, 219, 0.3);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.service-module:hover .module-icon {
    transform: scale(1.1);
}

.module-info h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
}

.module-badge {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.module-content {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.module-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.module-features li i {
    color: #27ae60;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* 优势对比模块 */
.advantage-comparison {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    margin-bottom: 3rem;
}

.comparison-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.comparison-header h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.comparison-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-column {
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

.comparison-column.us {
    background: linear-gradient(135deg, rgba(52, 71, 219, 0.1), rgba(42, 59, 184, 0.1));
    border: 2px solid #3447db;
}

.comparison-column.others {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(192, 57, 43, 0.1));
    border: 2px solid #e74c3c;
}

.column-header {
    text-align: center;
    margin-bottom: 2rem;
}

.column-header h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.column-header.us h5 {
    color: #3447db;
}

.column-header.others h5 {
    color: #e74c3c;
}

.column-header .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
}

.column-header.us .badge {
    background: #3447db;
    color: white;
}

.column-header.others .badge {
    background: #e74c3c;
    color: white;
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-features li:last-child {
    border-bottom: none;
}

.comparison-features li i {
    font-size: 1rem;
    flex-shrink: 0;
}

.comparison-features.us li {
    color: var(--text-primary);
}

.comparison-features.us li i {
    color: #27ae60;
}

.comparison-features.others li {
    color: var(--text-secondary);
}

.comparison-features.others li i {
    color: #e74c3c;
}

/* 增值服务网 */
.value-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.value-service-item {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3447db, #2a3bb8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-service-item:hover::before {
    transform: scaleX(1);
}

.value-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #3447db;
}

.value-service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(52, 71, 219, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.value-service-item:hover .value-service-icon {
    transform: scale(1.1);
}

.value-service-info {
    flex: 1;
}

.value-service-info h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.value-service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3447db;
    margin: 0;
}

.price-note {
    font-size: 0.9rem;
    font-weight: 500;
    color: #3447db;
    margin-left: 0.2rem;
}

.value-service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.value-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.value-tag {
    background: rgba(52, 71, 219, 0.1);
    color: #3447db;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(52, 71, 219, 0.2);
    transition: all 0.3s ease;
}

.value-service-item:hover .value-tag {
    background: #3447db;
    color: white;
    border-color: #3447db;
}

/* 合作伙伴徽章 */
.partner-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.partner-badge i {
    font-size: 1rem;
}

/* 合作伙伴展示区域 */
.partner-section {
    background: linear-gradient(135deg, rgba(52, 71, 219, 0.05), rgba(42, 59, 184, 0.05));
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(52, 71, 219, 0.1);
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(52, 71, 219, 0.3);
    flex-shrink: 0;
}

.partner-content h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.partner-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.partner-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    background: rgba(52, 71, 219, 0.1);
    color: #3447db;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(52, 71, 219, 0.2);
}

.feature-badge.highlight-badge {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border-color: #f39c12;
    box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
}

/* 服务内容网格 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3447db, #2a3bb8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #3447db;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(52, 71, 219, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-wrapper {
    transform: scale(1.1);
}

.service-header h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    font-size: 1.2rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0;
}

.feature-item i {
    color: #27ae60;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-item.highlight {
    background: rgba(52, 71, 219, 0.05);
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #3447db;
}

.feature-item.highlight i {
    color: #f39c12;
}

/* 对比优势部分 */
.comparison-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(52, 71, 219, 0.1);
}

.comparison-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: center;
}

.vs-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.vs-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    position: relative;
    animation: vsPulse 2s infinite;
}

.vs-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #f39c12, #e67e22, #f39c12);
    border-radius: 50%;
    z-index: -1;
    animation: vsRotate 3s linear infinite;
}

.vs-text {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

@keyframes vsRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.comparison-item {
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.comparison-item.us {
    background: linear-gradient(135deg, rgba(52, 71, 219, 0.05), rgba(42, 59, 184, 0.05));
    border: 2px solid rgba(52, 71, 219, 0.2);
}

.comparison-item.others {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(192, 57, 43, 0.05));
    border: 2px solid rgba(231, 76, 60, 0.2);
}

.comparison-item.us:hover {
    border-color: #3447db;
    box-shadow: 0 4px 15px rgba(52, 71, 219, 0.2);
}

.comparison-item.others:hover {
    border-color: #e74c3c;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-item.us .comparison-header {
    color: #3447db;
}

.comparison-item.others .comparison-header {
    color: #e74c3c;
}

.comparison-header i {
    font-size: 1.2rem;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.comparison-item.us .comparison-list li {
    color: var(--text-primary);
}

.comparison-item.others .comparison-list li {
    color: var(--text-secondary);
}

.comparison-item.us .comparison-list li i {
    color: #27ae60;
    font-size: 0.8rem;
}

.comparison-item.others .comparison-list li i {
    color: #e74c3c;
    font-size: 0.8rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-card {
        padding: 2rem;
    }
    
    .process-arrow {
        display: none;
    }
    
    .service-modules {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-module {
        padding: 2rem;
    }
    
    .module-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .comparison-grid {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .comparison-item.us,
    .vs-container,
    .comparison-item.others {
        order: unset !important;
    }
    
    .value-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-service-item {
        padding: 1.5rem;
    }
    
    .value-service-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .value-service-price {
        font-size: 1.6rem;
    }
    
    .partner-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .partner-features {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        padding: 1.5rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .partner-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* 对比部分响应 */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs-container {
        order: -1;
        padding: 1rem 0;
        margin: 1rem 0;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .vs-container::before,
    .vs-container::after {
        content: '';
        position: absolute;
        left: 50%;
        width: 2px;
        height: 20px;
        background: linear-gradient(180deg, #f39c12, transparent);
        transform: translateX(-50%);
    }
    
    .vs-container::before {
        top: -20px;
    }
    
    .vs-container::after {
        bottom: -20px;
    }
    
    .vs-badge {
        width: 50px;
        height: 50px;
    }
    
    .vs-text {
        font-size: 1rem;
    }
    
    .comparison-item {
        padding: 1rem;
    }
    
    .comparison-title {
        font-size: 1rem;
    }
    
    .value-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-service-item {
        padding: 1.5rem;
    }
    
    .value-service-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .value-service-price {
        font-size: 1.6rem;
    }
    
    /* 现代服务流程响应 */
    .process-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .process-step-modern {
        min-height: 180px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-icon {
        font-size: 1.4rem;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
    
    .step-content {
        padding: 1rem;
    }
    
    .step-content h5 {
        font-size: 0.9rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .step-connector {
        display: none;
    }
    
    /* 弹性计算器移动端样式 */
    .range-container {
        padding: 0.5rem 0;
    }
    
    .custom-range {
        height: 18px;
    }
    
    .custom-range::-webkit-slider-thumb {
        width: 32px;
        height: 32px;
    }
    
    .custom-range::-moz-range-thumb {
        width: 32px;
        height: 32px;
    }
    
    .range-progress {
        height: 18px;
        border-radius: 9px;
    }
    
    .range-ticks {
        top: 17px;
    }
    
    .tick-label {
        font-size: 0.7rem;
        padding: 0.15rem 0.3rem;
    }
    
    .value-info {
        padding: 1rem 1.2rem;
    }
    
    .value-main {
        min-width: 140px;
    }
    
    .current-number {
        font-size: 1.8rem;
        min-width: 50px;
    }
    
    .current-unit {
        font-size: 0.9rem;
    }
    
    .value-desc {
        font-size: 0.8rem;
    }
    
    .price-content {
        padding: 1rem;
    }
    
    .price-content .row {
        flex-direction: row;
        gap: 1rem;
    }
    
    .price-breakdown,
    .total-price {
        flex: 1;
        min-width: 0;
    }
    
    .price-value {
        font-size: 1.4rem;
    }
    
    .total-value {
        font-size: 1.6rem;
    }
    
    /* 套餐卡片移动端样式 */
    .package-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .package-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .package-title {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    /* 玻璃套餐移动端样式 */
    .pricing-glass {
        margin-bottom: 1.5rem;
    }
    
    /* 服务保障移动端样式 */
    .guarantee-services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .guarantee-service-item {
        padding: 1.5rem;
    }
    
    .guarantee-service-header {
        gap: 0.75rem;
    }
    
    .guarantee-service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .guarantee-service-header h5 {
        font-size: 1.2rem;
    }
}

/* 现代服务流程响应 */
@media (min-width: 1400px) {
    .process-container {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media (max-width: 1399px) and (min-width: 1200px) {
    .process-container {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .process-step-modern:nth-child(5),
    .process-step-modern:nth-child(6),
    .process-step-modern:nth-child(7) {
        grid-column: span 1;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .process-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 服务流程步骤 */
.process-step {
    background: linear-gradient(90deg, #3447db, #2a3bb8);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(52, 71, 219, 0.4);
}

.process-step.active {
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(52, 71, 219, 0.3);
}

.process-step.completed {
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(52, 71, 219, 0.3);
}

.process-step.completed:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(52, 71, 219, 0.4);
}

/* 弹性服务计算器样式 */
.range-container {
    position: relative;
    padding: 0.75rem 0;
}

.range-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.custom-range {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 16px;
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(52, 71, 219, 0.4);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(52, 71, 219, 0.5);
}

.custom-range::-webkit-slider-thumb:active {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(52, 71, 219, 0.6);
}

.custom-range::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(52, 71, 219, 0.4);
    border: 3px solid white;
    transition: all 0.3s ease;
}

.custom-range::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(52, 71, 219, 0.5);
}

.custom-range::-moz-range-thumb:active {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(52, 71, 219, 0.6);
}

.custom-range:active {
    transform: scale(1.02);
}

.range-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    background: linear-gradient(90deg, #3447db61, #2a3bb8);
    border-radius: 8px;
    transition: width 0.1s ease;
    z-index: 1;
    pointer-events: none;
}

/* 刻度标记样式 */
.range-ticks {
    position: absolute;
    top: 17px;
    left: 0;
    right: 0;
    height: 0;
    z-index: 1;
}

.tick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
}

.tick-item::before {
    content: '';
    position: absolute;
    top: -12px;
    width: 2px;
    height: 8px;
    background: #dee2e6;
    border-radius: 1px;
}

.tick-label {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    margin-top: 0.15rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    border: 1px solid #e9ecef;
    white-space: nowrap;
}

/* 当前值显示样式 */
.current-value-display {
    text-align: center;
    margin-top: 1.5rem;
}

.value-info {
    display: inline-block;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 16px;
    padding: 1rem 1.2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3447db, #2a3bb8);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-info:hover::before {
    transform: scaleX(1);
}

.value-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #3447db;
}

.value-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    min-width: 140px;
}

.current-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3447db;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(52, 71, 219, 0.2);
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
    display: inline-block;
}

.current-unit {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.value-desc {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    opacity: 0.8;
}

.price-result {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    border: 2px solid #e9ecef;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.price-result:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #3447db;
}

.price-header {
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    color: white;
    padding: 1rem;
    text-align: center;
    position: relative;
}

.price-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
}

.price-title {
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.price-content {
    padding: 1rem;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.price-item-wrapper {
    flex: 1;
    min-width: 0;
}

.price-breakdown,
.total-price {
    text-align: center;
}

.price-label {
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.price-item {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3447db;
    text-shadow: 0 2px 4px rgba(52, 71, 219, 0.2);
}

.price-unit {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.total-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #198754;
    text-shadow: 0 2px 4px rgba(25, 135, 84, 0.2);
}

.total-unit {
    font-size: 1.3rem;
    color: #6c757d;
    font-weight: 500;
}

/* 服务说明样式 */
.service-info {
    background: linear-gradient(135deg, rgba(52, 71, 219, 0.05), rgba(42, 59, 184, 0.05));
    border: 1px solid rgba(52, 71, 219, 0.1);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.service-info:hover {
    border-color: rgba(52, 71, 219, 0.2);
    box-shadow: 0 4px 15px rgba(52, 71, 219, 0.1);
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.info-title {
    font-weight: 600;
    color: #3447db;
    font-size: 1rem;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.info-item span {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* 登录注册模态框样式 */
.modal-content {
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem 1rem 0 0;
    }
    
.modal-title {
    font-weight: 600;
    color: #2c3e50;
    }
    
.input-group-text {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}

.form-control:focus {
    border-color: #3447db;
    box-shadow: 0 0 0 0.2rem rgba(52, 71, 219, 0.25);
    }
    
.form-check-input:checked {
    background-color: #3447db;
    border-color: #3447db;
    }
    
.btn-primary {
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    border: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    }
    
.btn-primary:hover {
    background: linear-gradient(135deg, #2a3bb8, #1e2a8a);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(52, 71, 219, 0.3);
    }
    
.btn-outline-primary {
    border-color: #3447db;
    color: #3447db;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    }
    
.btn-outline-primary:hover {
    background: #3447db;
    border-color: #3447db;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(52, 71, 219, 0.3);
    }
    
/* 游客登录区域样式 */
#guest-login-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    border: 1px solid transparent;
    margin: 0;
    padding: 2rem 1.5rem !important;
    }
    
.guest-content {
    max-width: 280px;
    margin: 0 auto;
    }
    
#guest-login-section .fa-user-lock {
    color: #6c757d;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    }
    
#guest-login-section h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1rem;
    }
    
#guest-login-section p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6c757d;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
    }
    
#guest-login-section .btn {
    padding: 0.875rem 1rem;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 120px;
    white-space: nowrap;
}

/* 服务套餐样式 */
.pricing-glass {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    }
    
.pricing-glass:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
    }
    
.pricing-glass .icon {
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: var(--shadow-light);
    }
    
.pricing-glass h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    }
    
.pricing-glass .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 0.5rem;
    }
    
.pricing-glass .desc {
    color: var(--text-secondary);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-glass .features {
    text-align: left;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    }
    
.pricing-glass .features li {
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.pricing-glass .features i {
    color: var(--success-color);
    margin-right: 0.5rem;
    font-size: 1rem;
    }
    
.pricing-glass .badge-bottom {
    background: var(--accent-color);
    color: white;
    border-radius: 20px;
        font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    text-align: center;
    margin-top: auto;
    }
    
.pricing-glass .tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--success-color);
    color: white;
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
}

.pricing-glass.recommend {
    border-color: #f39c12;
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.3);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.05), rgba(230, 126, 34, 0.05));
    position: relative;
}

.pricing-glass.recommend::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.pricing-glass.recommend .icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.pricing-glass.recommend .price {
    color: #f39c12;
}

.pricing-glass.recommend .badge-bottom {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.pricing-glass.recommend .tag {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
}

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

.pricing-glass.recommend:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(243, 156, 18, 0.4);
} 

/* 服务保障专用样式 */
.guarantee-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.guarantee-service-item {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.guarantee-service-item:hover::before {
    transform: scaleX(1);
}

.guarantee-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #27ae60;
}

.guarantee-service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guarantee-service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.guarantee-service-item:hover .guarantee-service-icon-wrapper {
    transform: scale(1.1);
}

.guarantee-service-header h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
    font-size: 1.4rem;
}

.guarantee-service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.guarantee-service-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0;
}

.guarantee-service-feature-item i {
    color: #27ae60;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.guarantee-service-feature-item span {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 新的套餐卡片样式 */
.package-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.package-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 12px 35px rgba(52, 71, 219, 0.15);
}

.package-card.featured:hover {
    box-shadow: 0 20px 50px rgba(52, 71, 219, 0.2);
}

.package-card.featured .package-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.package-card.featured:hover .package-icon {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.package-card.featured .price-amount {
    color: #ff6b35;
}

.package-card.featured .package-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.package-badge-top {
    position: absolute;
    top: 1rem;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    z-index: 2;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(52, 71, 219, 0.3);
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.1);
}

.package-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.package-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 700;
}

.price-unit {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-left: 0.25rem;
}

.package-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-features {
    flex: 1;
        margin-bottom: 1.5rem;
    }

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-item i {
    color: #28a745;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.feature-item span {
    flex: 1;
}

.package-badge {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
}

.package-card.featured .package-badge {
    background: linear-gradient(135deg, #3447db, #2a3bb8);
    color: white;
}

/* 选中状态的套餐样式 */
.package-card.selected {
    border: 2px solid #ff6b35;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.package-card.selected:hover {
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    border-color: #f7931e;
}

.package-card.selected .package-icon {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.package-card.selected:hover .package-icon {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.package-card.selected .price-amount {
    color: #ff6b35;
}

.package-card.selected .package-badge {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

/* 非标准套餐选中时隐藏推荐徽章 */
.package-card.selected:not(.featured) .package-badge-top {
    display: none !important;
}
