/* Pricing Page Styles */

.pricing-hero {
    padding: 120px 0 80px 0;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero-title {
    font-family: "Plus Jakarta Sans";
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 25px;
    color: var(--Soft-Beige, #F6F1EC);
    text-transform: uppercase;
}

.pricing-hero-subtitle {
    font-family: "Plus Jakarta Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 300;
    line-height: 45px;
    margin-bottom: 30px;
    color: var(--Soft-Beige, #F6F1EC);
}

.pricing-hero-description {
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    color: var(--color-white-882, rgba(255, 255, 255, 0.88));
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-section {
    padding: 100px 0;
    position: relative;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-single {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: #fd5b38;
    background: rgba(253, 91, 56, 0.05);
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: #fd5b38;
    background: rgba(253, 91, 56, 0.08);
    max-width: 400px;
    width: 100%;
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
}

.pricing-plan {
    font-size: 24px;
    font-weight: 600;
    color: #F6F1EC;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: #fd5b38;
    margin-bottom: 10px;
    line-height: 1;
}

.pricing-price .currency {
    font-size: 24px;
    vertical-align: top;
    margin-right: 5px;
}

.pricing-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    padding-left: 30px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #fd5b38;
    font-weight: bold;
    font-size: 18px;
}

.pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-features li.disabled::before {
    content: '×';
    color: rgba(255, 255, 255, 0.4);
}

.pricing-cta {
    width: 100%;
    background: #fd5b38;
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.pricing-cta:hover {
    background: #e54a29;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.pricing-cta.secondary {
    background: transparent;
    border: 2px solid #fd5b38;
    color: #fd5b38;
}

.pricing-cta.secondary:hover {
    background: #fd5b38;
    color: #fff;
}

.pricing-note {
    text-align: center;
    margin-top: 60px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}

.pricing-note a {
    color: #fd5b38;
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .pricing-hero-title {
        font-size: 40px;
        line-height: 50px;
    }

    .pricing-hero-subtitle {
        font-size: 28px;
        line-height: 35px;
    }

    .pricing-hero-description {
        font-size: 18px;
    }

    .pricing-single {
        margin-top: 40px;
    }

    .pricing-card.featured {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 0 60px 0;
        min-height: 50vh;
    }

    .pricing-hero-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .pricing-hero-subtitle {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 25px;
    }

    .pricing-hero-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .pricing-section {
        padding: 80px 0;
    }

    .pricing-single {
        margin-top: 30px;
    }

    .pricing-card {
        padding: 30px 25px;
    }

    .pricing-card.featured {
        max-width: 320px;
    }

    .pricing-price {
        font-size: 40px;
    }

    .pricing-plan {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-hero-title {
        font-size: 28px;
        line-height: 35px;
    }

    .pricing-hero-subtitle {
        font-size: 20px;
        line-height: 25px;
    }

    .pricing-hero-description {
        font-size: 14px;
    }

    .pricing-card {
        padding: 25px 20px;
    }

    .pricing-price {
        font-size: 36px;
    }

    .pricing-plan {
        font-size: 18px;
    }

    .pricing-features li {
        font-size: 14px;
        padding-left: 25px;
    }
} 