/* Pricing Section */
.pricing {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 2rem 50rem 2rem;
    border-radius: 20px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeIn 3s ease 0.6s forwards;
    opacity: 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pricing-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: left;
}

.pricing-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
    max-width: none;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.primary-payment h4,
.alternative-payment h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #e0e7ff;
    text-align: center;
}

.primary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.payment-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        5px 5px 10px rgba(0, 0, 0, 0.2),
        -5px -5px 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.payment-card.alternative {
    padding: 0.25rem;
    width: 80px;
    height: 80px;
}

.payment-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.payment-card.alternative img {
    max-width: 140px;
    max-height: 90px;
}

.payment-card:hover {
    box-shadow:
        8px 8px 15px rgba(0, 0, 0, 0.3),
        -8px -8px 15px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 212, 255, 0.3);
    transform: scale(1.05);
}

.payment-carousel {
    position: relative;
}

.payment-carousel .carousel-container {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 15px;
}

.about .carousel-container {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-slide {
    display: none;
    padding: 2rem;
}

.about .carousel-slide {
    display: none;
    padding: 2rem;
}

.payment-carousel .carousel-slide {
    display: block;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.carousel-slide.active {
    display: block;
}

.payment-carousel .carousel-slide.active {
    transform: scale(1);
}

.payment-carousel .carousel-slide:not(.active) {
    transform: scale(0.8);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dots .dot.active {
    background: #10b981;
}

.pricing-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-selection {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-note {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-note .pill {
    background: #374151;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    font-weight: 500;
}

.pricing-selection h4 {
    margin-bottom: 1rem;
    color: #e0e7ff;
    font-weight: 600;
}

.tier-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tier-btn {
    width: 100%;
    text-align: left;
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow:
        5px 5px 10px rgba(0, 0, 0, 0.2),
        -5px -5px 10px rgba(255, 255, 255, 0.1);
    color: #e0e7ff;
}

.tier-btn.active {
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.5);
    box-shadow:
        inset 5px 5px 10px rgba(0, 0, 0, 0.2),
        inset -5px -5px 10px rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.tier-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow:
        8px 8px 15px rgba(0, 0, 0, 0.3),
        -8px -8px 15px rgba(255, 255, 255, 0.1);
}

.tier-btn div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.tier-btn h5 {
    font-family: 'Rock Salt', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    margin-top: 0.25rem;
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tier-btn p {
    font-size: 0.875rem;
    color: #cbd5e1;
}

.indicator {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    box-shadow:
        inset 2px 2px 4px rgba(0, 0, 0, 0.2),
        inset -2px -2px 4px rgba(255, 255, 255, 0.1);
}

.tier-btn.active .indicator {
    background: linear-gradient(135deg, #00d4ff, #00ff88);
    box-shadow:
        0 0 10px rgba(0, 212, 255, 0.5),
        inset 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-details {
    flex: 1;
}

.tier-detail {
    display: none;
}

.tier-detail.active {
    display: block;
}

.pricing-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(0, 212, 255, 0.2);
    color: #e0e7ff;
    text-align: center;
}

.pricing-box .price {
    font-family: 'Rock Salt', cursive;
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 1rem;
    margin-top: 0.1rem;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.pricing-box .price sub {
    font-size: 0.6rem;
    color: #1e293b;
    vertical-align: sub;
    white-space: nowrap;
}

.pricing-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    text-align: center;
}

.pricing-box .btn {
    margin-top: 1rem;
}

.tier-features,
.tier-team {
    display: flex;
    flex-wrap: wrap;
    gap: 0.50rem;
    margin:1rem;
    padding: 1rem;
    justify-content: center;
}

.tier-features .pill,
.tier-team .pill {
    background: rgba(16, 185, 129, 0.2);
    color: white;
    padding: 0.25rem 0.75rem 0.1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: none;
    white-space: normal;
    line-height: 1.4;
    text-align: center;
    margin-top: 0;
}

.tier-team .pill {
    background: #1e40af;
    color: white;
}

.tier-team {
    display: block;
}

.tier-team h6 {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}

.services-subtitle {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}

.team-cards {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-card {
    width: 100px;
    height: 100px;
    background: rgba(59, 130, 246, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem;
    box-sizing: border-box;
    outline: 2px solid #3b82f6;
}

.team-pill {
    background: rgba(59, 130, 246, 0.8);
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.3);
    outline: 2px solid #3b82f6;
    font-weight: 600;
    text-align: center;
}

.core-team-container {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    outline: 2px solid #10b981;
    padding: 0.5rem;
    border-radius: 10px;
    position: relative;
}

.core-team-card {
    outline: 2px solid #10b981;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
}

.core-team-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #10b981;
    color: white;
    padding: 0.125rem 0.25rem;
    border-radius: 8px;
    font-size: 0.625rem;
    font-weight: 600;
    z-index: 1;
}

.core-team-pill {
    background: rgba(59, 130, 246, 0.8);
    color: #ffffff;
    border: 1px solid rgba(59, 130, 246, 0.3);
    outline: 2px solid #10b981;
    font-weight: 600;
    text-align: center;
}

.role-pill {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    font-weight: 600;
    display: inline-block;
    margin-right: 0.1rem;
}

/* Responsive adjustments for 320px breakpoint */
@media (max-width: 320px) {
    .pricing {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-info {
        width: 50%;
        margin: 0;
        text-align: center;
        box-sizing: border-box;
        padding: 1rem;
    }

    .pricing-info p {
        text-align: left;
    }

    .primary-grid {
        grid-template-columns: repeat(auto-fit, 45%);
        gap: 0.5rem;
        justify-content: center;
    }

    .payment-card {
        min-height: 60px;
        padding: 0.75rem;
        width: 45%;
    }

    .payment-card img {
        height: auto;
    }

    .tier-btn h5 {
        font-size: 1.2rem;
    }

    .pricing-box .price {
        font-size: 1.5rem;
    }

    .pricing-info p {
        font-size: 1rem;
    }

    .pricing-cta-btn {
        width: 100%;
        text-align: center;
    }

    .pricing-cta-btn .text {
        font-size: 0.8rem;
    }

    .pricing-box .price sub {
        font-size: 0.3rem !important;
    }

    .tier-features {
        margin: 0rem;
    }

    .tier-features .pill {
        padding: 0.5rem;
    }
}