/* Pricing Page Specific Styles */

.pricing-hero-section {
    padding: 1.5rem 0 3rem;
    background: linear-gradient(180deg, #f0f9ff 0%, #f8fafc 100%);
    min-height: 100vh;
    overflow: hidden;
}

.pricing-main-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.roi-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ec4899;
    margin-bottom: 1.5rem;
}

/* Carousel Container */
.pricing-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 0;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.pricing-cards-wrapper {
    display: flex;
    gap: 1.75rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    height: fit-content;
    align-items: center;
}

/* Pricing Card */
.pricing-card {
    min-width: 420px;
    max-width: 420px;
    background: white;
    border: 2px solid #e0e7ff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8);
    flex-shrink: 0;
    height: fit-content;
    max-height: 620px;
    overflow: visible;
    pointer-events: none;
}

.pricing-card.side {
    opacity: 0.35;
    pointer-events: none;
}

.pricing-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: #1aced2;
    box-shadow: 0 20px 60px rgba(26, 206, 210, 0.15);
    pointer-events: auto;
}

.pricing-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
}

.starting-text {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 0.1rem;
}

.pricing-amount {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1aced2;
    margin-bottom: 0.85rem;
}

/* Why Section Box */
.why-section-box {
    background: linear-gradient(135deg, rgba(26, 206, 210, 0.05), rgba(144, 129, 178, 0.05));
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.85rem;
}

.why-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1aced2;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.why-title i {
    font-size: 0.75rem;
}

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

.why-list li {
    font-size: 0.75rem;
    color: var(--text-dark);
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    position: relative;
    line-height: 1.35;
}

.why-list li:before {
    content: "•";
    color: #1aced2;
    font-weight: bold;
    position: absolute;
    left: 0.4rem;
}

.why-list li:last-child {
    margin-bottom: 0;
}

/* Listen to Demo Button */
.listen-demo-btn {
    width: 100%;
    padding: 0.7rem;
    background: #f1f5f9;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0.85rem;
}

.listen-demo-btn:hover {
    background: white;
    border-color: #1aced2;
    color: #1aced2;
}

.listen-demo-btn i {
    margin-right: 0.4rem;
    font-size: 0.8rem;
}

/* Pricing Options */
.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 0.25rem;
}

.pricing-option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.85rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pricing-option-item:hover {
    border-color: #1aced2;
    transform: translateX(5px);
}

.pricing-option-item.bundle {
    background: linear-gradient(135deg, rgba(26, 206, 210, 0.05), rgba(144, 129, 178, 0.05));
    border: 2px dashed #1aced2;
    padding: 0.6rem 0.85rem;
}

.option-left {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.option-left i {
    font-size: 1rem;
}

.option-left i.cyan {
    color: #1aced2;
}

.option-left i.pink {
    color: #ec4899;
}

.option-left span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.option-left strong {
    font-size: 0.85rem;
}

.option-left small {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.option-right {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.option-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1aced2;
}

.option-price.pink {
    color: #ec4899;
}

.save-text {
    font-size: 0.7rem;
    color: #ec4899;
    font-weight: 600;
}

/* Add Buttons */
.add-btn-light,
.add-btn-pink,
.add-btn-gradient {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-btn-light {
    background: #cbd5e1;
}

.add-btn-light:hover {
    background: #94a3b8;
    transform: scale(1.1);
}

.add-btn-pink {
    background: #ec4899;
}

.add-btn-pink:hover {
    background: #db2777;
    transform: scale(1.1);
}

.add-btn-gradient {
    background: linear-gradient(135deg, #1aced2, #9081b2);
}

.add-btn-gradient:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(26, 206, 210, 0.4);
}

/* Carousel Navigation Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e5e7eb;
    color: var(--text-gray);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav-btn:hover {
    background: #1aced2;
    color: white;
    border-color: #1aced2;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-card {
        min-width: 390px;
        max-width: 390px;
    }
    
    .pricing-carousel-container {
        height: 630px;
    }
}

@media (max-width: 992px) {
    .pricing-main-title {
        font-size: 2rem;
    }
    
    .roi-text {
        font-size: 1rem;
    }
    
    .pricing-card {
        min-width: 370px;
        max-width: 370px;
        padding: 1.25rem 1.35rem 1.4rem;
        max-height: 600px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .pricing-carousel-container {
        height: 620px;
    }
}

@media (max-width: 768px) {
    .pricing-hero-section {
        padding: 1.5rem 0 2rem;
    }
    
    .pricing-main-title {
        font-size: 1.75rem;
    }
    
    .roi-text {
        font-size: 0.95rem;
    }
    
    .pricing-card {
        min-width: 85vw;
        max-width: 85vw;
        padding: 1.25rem 1.25rem 1.4rem;
        max-height: 580px;
    }
    
    .pricing-cards-wrapper {
        gap: 1.5rem;
    }
    
    .carousel-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .pricing-carousel-container {
        height: 600px;
    }
}

/* Initial Setup Fee Section */
.setup-fee-section {
    background: white;
}

.setup-fee-card {
    background: white;
    border: 3px solid transparent;
    border-radius: 20px;
    padding: 2rem 2.5rem;
    position: relative;
    background-clip: padding-box;
}

.setup-fee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, #1aced2, #ec4899);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.setup-fee-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.setup-fee-price {
    font-size: 2rem;
    font-weight: 800;
    color: #1aced2;
    margin-bottom: 1.5rem;
}

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

.setup-fee-list li {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.6;
}

.setup-fee-list li:before {
    content: "•";
    color: var(--text-dark);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.setup-fee-list li:last-child {
    margin-bottom: 0;
}

/* Monthly Subscription Plans Section */
.subscription-main-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.subscription-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.subscription-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.subscription-card:hover {
    border-color: #1aced2;
    box-shadow: 0 10px 30px rgba(26, 206, 210, 0.15);
    transform: translateY(-5px);
}

.subscription-card.featured {
    border-color: #1aced2;
    border-width: 3px;
    box-shadow: 0 15px 40px rgba(26, 206, 210, 0.2);
}

.subscription-plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.subscription-price-wrapper {
    margin-bottom: 1.5rem;
}

.subscription-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1aced2;
}

.subscription-period {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-gray);
}

.subscription-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.subscription-features li {
    font-size: 0.9rem;
    color: var(--text-dark);
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    line-height: 1.5;
}

.subscription-features li:before {
    content: "•";
    color: #1aced2;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.subscription-features li:last-child {
    margin-bottom: 0;
}

.subscription-btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: #cbd5e1;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.subscription-btn:hover {
    background: #94a3b8;
    transform: translateY(-2px);
}

.subscription-btn.featured-btn {
    background: linear-gradient(135deg, #1aced2, #9081b2);
    color: white;
}

.subscription-btn.featured-btn:hover {
    box-shadow: 0 5px 20px rgba(26, 206, 210, 0.4);
    transform: translateY(-2px);
}

/* Responsive Design for Subscription Plans */
@media (max-width: 992px) {
    .subscription-card {
        margin-bottom: 1.5rem;
    }
    
    .subscription-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .setup-fee-card {
        padding: 1.5rem 1.75rem;
    }
    
    .setup-fee-title {
        font-size: 1.25rem;
    }
    
    .setup-fee-price {
        font-size: 1.75rem;
    }
    
    .subscription-main-title {
        font-size: 1.75rem;
    }
    
    .subscription-card {
        padding: 1.5rem 1.25rem;
    }
    
    .subscription-plan-name {
        font-size: 1.15rem;
    }
    
    .subscription-price {
        font-size: 2rem;
    }
}

/* Add-Ons Section */
.addons-section {
    background: white;
}

.addons-main-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.addons-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.addon-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.addon-card:hover {
    border-color: #1aced2;
    box-shadow: 0 8px 25px rgba(26, 206, 210, 0.12);
    transform: translateY(-3px);
}

.addon-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.addon-price-wrapper {
    margin-bottom: 1.5rem;
}

.addon-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1aced2;
}

.addon-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
}

.addon-btn {
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: #cbd5e1;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.addon-btn:hover {
    background: #94a3b8;
    transform: translateY(-2px);
}

.addon-btn i {
    font-size: 0.85rem;
}

/* Responsive Design for Add-Ons */
@media (max-width: 992px) {
    .addons-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .addons-main-title {
        font-size: 1.75rem;
    }
    
    .addon-card {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .addon-name {
        font-size: 1rem;
    }
    
    .addon-price {
        font-size: 1.5rem;
    }
}
