.price-area {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-box {
    background: #fff;
    border-radius: 20px;
    padding: 45px 35px;
    transition: all .4s ease;
    position: relative;
    border: 2px solid #f0f0f0;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.pricing-box:hover {
    transform: translateY(-10px);
    border-color: #6153fc;
}

.pricing-box.active {
    transform: translateY(-10px);
    border-color: #6153fc;
    box-shadow: 0 20px 40px rgba(97,83,252,0.1);
}

.pricing-head {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-head h4 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #3b3663;
    font-weight: 700;
}

.pricing-head .price h2 {
    font-size: 52px;
    color: #6153fc;
    margin-bottom: 0;
    line-height: 1;
}

.pricing-head .price h2 span {
    font-size: 18px;
    color: #898799;
    font-weight: 500;
}

.recommended {
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(45deg, #ff4b36, #ff6e5a);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255,75,54,0.2);
}

.pricing-list ul li {
    padding: 14px 0;
    color: #5d5a77;
    font-size: 15px;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.pricing-list ul li i {
    margin-right: 10px;
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-list ul li i.fa-check {
    color: #6153fc;
}

.pricing-list ul li i.fa-times {
    color: #898799;
}

.pricing-btn {
    text-align: center;
    margin-top: 35px;
}

.pricing-btn .btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(45deg, #6153fc, #4c40e3);
    box-shadow: 0 10px 20px rgba(97,83,252,0.15);
}

.pricing-btn .btn:hover {
    background: linear-gradient(45deg, #4c40e3, #6153fc);
    transform: translateY(-2px);
}

.custom-plan {
    background: linear-gradient(45deg, #6153fc, #4c40e3);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(97,83,252,0.15);
    margin-top: 70px;
}

.custom-plan h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fff;
}

.custom-plan p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 16px;
}

.custom-plan .btn {
    background: #fff;
    color: #6153fc;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.custom-plan .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .pricing-box {
        margin-bottom: 30px;
    }
    
    .pricing-box.active {
        transform: none;
    }
    
    .custom-plan {
        padding: 40px 30px;
    }
}

/* 面包屑区域样式 */
.breadcrumb-area {
    padding: 120px 0;
    background: linear-gradient(45deg, #6153fc 0%, #4c40e3 100%);
    position: relative;
    overflow: hidden;
}

/* 添加装饰性背景元素 */
.breadcrumb-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

/* 添加右侧装饰条纹 */
.breadcrumb-area::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-15deg);
    transform-origin: top right;
}

/* 内容样式 */
.breadcrumb-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0;
}

.breadcrumb-content::before {
    display: none;
}

.breadcrumb-content .title {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0;
}

.breadcrumb-content .desc {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    padding: 0;
}

/* 装饰圆形 */
.breadcrumb-shape span {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.breadcrumb-shape span:nth-child(1) {
    width: 150px;
    height: 150px;
    left: 5%;
    top: 20%;
    animation: float 6s ease-in-out infinite;
}

.breadcrumb-shape span:nth-child(2) {
    width: 100px;
    height: 100px;
    right: 10%;
    top: 30%;
    animation: float 8s ease-in-out infinite;
}

.breadcrumb-shape span:nth-child(3) {
    width: 80px;
    height: 80px;
    left: 15%;
    bottom: 20%;
    animation: float 7s ease-in-out infinite;
}

/* 浮动动画 */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* 响应式调整 */
@media (max-width: 991px) {
    .breadcrumb-area {
        padding: 80px 0;
    }
    
    .breadcrumb-content .title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .breadcrumb-content .desc {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-area {
        padding: 60px 0;
    }
    
    .breadcrumb-content .title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .breadcrumb-content .desc {
        font-size: 16px;
    }
} 