/* Pricing Page Styles - Fynicom theme (#E62A38, #dc3545) */
.pricing-main {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

/* Hero Section */
.pricing-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #E62A38 0%, #dc3545 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.pricing-hero .container {
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Plans Section */
.pricing-plans {
    padding: 3rem 0 4rem;
}

.pricing-plans .section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-plans .section-heading h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.pricing-plans .section-heading p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin: 0;
}

/* Pricing Cards Grid */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* What every plan gets you */
.what-included {
    margin-bottom: 3rem;
}

.what-included-title {
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 2rem;
}

.what-included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.what-included-item {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(230, 42, 56, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.what-included-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(230, 42, 56, 0.12);
}

.what-included-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #E62A38 0%, #dc3545 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

.what-included-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.what-included-desc {
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .what-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .what-included {
        margin-bottom: 2rem;
    }
    .what-included-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .what-included-item {
        padding: 1.25rem;
    }
}

/* Single Pricing Card - modern UI */
.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E62A38 0%, #dc3545 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(230, 42, 56, 0.12);
    border-color: rgba(230, 42, 56, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border: 2px solid #E62A38;
    box-shadow: 0 8px 32px rgba(230, 42, 56, 0.15);
}

.pricing-card.featured::before {
    opacity: 1;
}

.pricing-card .plan-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #E62A38 0%, #dc3545 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.4rem 0.7rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 2px 8px rgba(230, 42, 56, 0.35);
}

.pricing-card .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.pricing-card .plan-desc {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-bottom: 1.25rem;
    min-height: 2.6em;
    font-weight: 500;
}

.pricing-card .plan-price {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.15rem;
}

.pricing-card .plan-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E62A38;
    line-height: 1.2;
}

.pricing-card .plan-price .amount {
    font-size: 2rem;
    font-weight: 800;
    color: #E62A38;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pricing-card .plan-price .period {
    font-size: 0.95rem;
    color: #5a6c7d;
    font-weight: 500;
    margin-left: 0.1rem;
}

.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.pricing-card .plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.65rem;
    line-height: 1.4;
}

.pricing-card .plan-features li i {
    color: #E62A38;
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.pricing-card .plan-cta {
    display: block;
    width: 100%;
    padding: 0.9rem 1.25rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.25s ease;
    text-decoration: none;
    border: 2px solid #E62A38;
    background: linear-gradient(135deg, #E62A38 0%, #dc3545 100%);
    color: white;
    margin-top: auto;
    box-shadow: 0 2px 12px rgba(230, 42, 56, 0.25);
}

.pricing-card .plan-cta:hover {
    background: linear-gradient(135deg, #c6232f 0%, #b91c28 100%);
    border-color: #c6232f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 42, 56, 0.35);
}

.pricing-card .plan-cta.outline {
    background: transparent;
    color: #E62A38;
    box-shadow: none;
}

.pricing-card .plan-cta.outline:hover {
    background: rgba(230, 42, 56, 0.08);
    color: #c6232f;
    border-color: #c6232f;
}

/* FAQ Section */
.pricing-faq {
    padding: 3.5rem 0 4.5rem;
    background: #fff;
}

.pricing-faq .section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-faq .section-heading h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.pricing-faq .section-heading p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin: 0;
}

.pricing-faq .accordion {
    max-width: 800px;
    margin: 0 auto;
    --bs-accordion-border-color: rgba(230, 42, 56, 0.15);
    --bs-accordion-btn-focus-border-color: #E62A38;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.2rem rgba(230, 42, 56, 0.2);
    --bs-accordion-active-bg: rgba(230, 42, 56, 0.06);
    --bs-accordion-active-color: #1a1a1a;
}

.pricing-faq .accordion-item {
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(230, 42, 56, 0.12);
    overflow: hidden;
}

.pricing-faq .accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    color: #2c3e50;
    background: #fafafa;
    padding: 1.1rem 1.25rem;
}

.pricing-faq .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(230, 42, 56, 0.08) 0%, rgba(220, 53, 69, 0.06) 100%);
    color: #E62A38;
    box-shadow: none;
}

.pricing-faq .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E62A38'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.pricing-faq .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.pricing-faq .accordion-body {
    padding: 1rem 1.25rem 1.25rem;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #5a6c7d;
    background: #fff;
}

/* CTA Section */
.pricing-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-cta .cta-inner {
    text-align: center;
    padding: 2rem;
}

.pricing-cta .cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.pricing-cta .cta-text {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.pricing-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    background: linear-gradient(135deg, #E62A38 0%, #dc3545 100%);
    color: white !important;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.pricing-cta .cta-button:hover {
    background: linear-gradient(135deg, #c6232f 0%, #b91c28 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 42, 56, 0.3);
}

/* Responsive - all resolutions */
@media (max-width: 1200px) {
    .pricing-cards {
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    .pricing-plans {
        padding: 2.5rem 0 3rem;
    }
    .pricing-card .plan-price .currency {
        font-size: 1.35rem;
    }
    .pricing-card .plan-price .amount {
        font-size: 1.85rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 3rem 1rem 2rem;
    }

    .pricing-plans .container,
    .pricing-faq .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .pricing-plans .section-heading {
        margin-bottom: 2rem;
    }

    .pricing-cards {
        gap: 1.25rem;
    }

    .pricing-card {
        padding: 1.75rem 1.25rem;
    }

    .pricing-card .plan-price .currency {
        font-size: 1.25rem;
    }
    .pricing-card .plan-price .amount {
        font-size: 1.75rem;
    }

    .pricing-faq {
        padding: 2.5rem 0 3rem;
    }

    .pricing-faq .accordion-button {
        font-size: 1rem;
        padding: 1rem 1rem;
    }

    .pricing-cta .cta-inner {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .pricing-hero {
        padding: 2.5rem 0.75rem 1.75rem;
    }

    .pricing-title {
        font-size: 1.75rem;
    }

    .pricing-subtitle {
        font-size: 0.95rem;
    }

    .pricing-plans {
        padding: 2rem 0 2.5rem;
    }

    .pricing-plans .section-heading h2 {
        font-size: 1.5rem;
    }

    .pricing-cards {
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .pricing-card .plan-badge {
        font-size: 0.6rem;
        padding: 0.3rem 0.55rem;
        top: 0.75rem;
        right: 0.75rem;
    }

    .pricing-card .plan-name {
        font-size: 1.35rem;
    }

    .pricing-card .plan-price {
        margin-bottom: 1.25rem;
    }

    .pricing-card .plan-price .currency {
        font-size: 1.15rem;
    }

    .pricing-card .plan-price .amount {
        font-size: 1.65rem;
    }

    .pricing-card .plan-price .period {
        font-size: 0.9rem;
    }

    .pricing-card .plan-features li {
        font-size: 0.85rem;
    }

    .pricing-card .plan-cta {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .pricing-faq .section-heading h2 {
        font-size: 1.4rem;
    }

    .pricing-cta {
        padding: 2rem 0;
    }
}

@media (max-width: 380px) {
    .pricing-card .plan-price .amount {
        font-size: 1.5rem;
    }
    .pricing-card .plan-price .currency {
        font-size: 1.05rem;
    }
}
