/* Page Container */
.prices-page {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 25%, #f1f3f8 75%, #e8ecf4 100%);
    min-height: 100vh;
    padding: calc(var(--sections-vertical-spacing) * 1.5) 0;
}

/* Page Header */
.prices-header {
    text-align: center;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 var(--horizontal-padding);
    margin-bottom: calc(var(--sections-vertical-spacing) * 2.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.prices-title {
    font-family: 'TeXGyreChorus';
    font-weight: 500;
    font-style: italic;
    font-size: clamp(48px, 5vw, 72px);
    color: var(--header-background-color);
    margin-bottom: 20px;
    position: relative;
}

.prices-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2b4670, transparent);
    border-radius: 2px;
}

/* Pricing Cards Container */
.pricing-section {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 var(--horizontal-padding);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 12px 40px rgba(34, 58, 94, 0.12);
    border: 1px solid rgba(34, 58, 94, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;

    justify-content: center;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.3s;
}
.pricing-card:nth-child(2) {
    animation-delay: 0.5s;
}
.pricing-card:nth-child(3) {
    animation-delay: 0.7s;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--header-background-color), #2b4670, var(--header-background-color));
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(34, 58, 94, 0.18);
}

.pricing-card:hover::before {
    height: 6px;
}

.pricing-image {
    width: 80px;
    height: 80px;
    margin: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(34, 58, 94, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-image {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(34, 58, 94, 0.2);
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Container for image and icon in a row */
.pricing-visual-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 0 auto 25px;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--header-background-color), #2b4670);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(34, 58, 94, 0.15);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(34, 58, 94, 0.25);
}

.pricing-card-title {
    margin-bottom: 20px;
    line-height: 1.3;
}

.pricing-card-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 1.8vw, 22px);
    color: #2b4670;
    line-height: 1.4;
}

.pricing-card-note {
    line-height: 1.4;
    margin-bottom: 0px;
}

/* General Pricing Note */
.pricing-note {
    padding: 25px 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

.pricing-note-text,
.payment-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(16px, 1.4vw, 19px);
    color: var(--header-background-color);
    margin: 0;
}

/* Payment Methods Section */
.payment-section {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.payment-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(23px, 2.5vw, 28px);
    color: var(--header-background-color);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.payment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-item {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.payment-item:hover {
    color: var(--header-background-color);
    transform: translateX(5px);
}

.payment-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--header-background-color);
    font-size: 20px;
    font-weight: bold;
    top: -2px;
    transition: all 0.3s ease;
}

.payment-item:hover::before {
    transform: scale(1.2);
    color: #2b4670;
}

.payment-item:last-child {
    margin-bottom: 0;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 1100px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .pricing-card {
        max-width: 370px;
        width: calc(100% - 50px);
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card {
        padding: 30px 25px;
    }

    .payment-section {
        margin: 0 var(--horizontal-padding);
        padding: 0px 25px;
    }
}

@media screen and (max-width: 480px) {
    .pricing-visual-container {
        gap: 15px;
        margin-bottom: 20px;
    }

    .pricing-image,
    .pricing-icon {
        width: 60px;
        height: 60px;
    }

    .pricing-icon {
        font-size: 24px;
    }
}
