﻿/* Plan Hero Section */
.plan-hero-section {
    background: #1a2536;
    padding: 6rem 0 5rem;
    position: relative;
}

.plan-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.plan-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.plan-hero-title-highlight {
    color: #ff5722;
}

.plan-hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.desktop-break {
    display: inline;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .plan-hero-section {
        padding: 5rem 0 4rem;
    }

    .plan-hero-container {
        padding: 0 2rem;
    }

    .plan-hero-title {
        font-size: 3rem;
    }

    .plan-hero-description {
        font-size: 1.063rem;
    }
}

@media screen and (max-width: 768px) {
    .plan-hero-section {
        padding: 4rem 0 3.5rem;
    }

    .plan-hero-container {
        padding: 0 1.5rem;
    }

    .plan-hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }

    .plan-hero-description {
        font-size: 1rem;
    }

    .desktop-break {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .plan-hero-section {
        padding: 3.5rem 0 3rem;
    }

    .plan-hero-container {
        padding: 0 1.25rem;
    }

    .plan-hero-title {
        font-size: 2rem;
        line-height: 1.25;
    }

    .plan-hero-description {
        font-size: 0.938rem;
        line-height: 1.6;
    }
}

@media screen and (max-width: 480px) {
    .plan-hero-container {
        padding: 0 1rem;
    }

    .plan-hero-title {
        font-size: 1.75rem;
    }

    .plan-hero-description {
        font-size: 0.875rem;
    }
}

/* Pricing Plans Section */
.pricing-plans-section {
    background: #ffffff;
    padding: 5rem 0;
}

.pricing-plans-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

/* Pricing Card - CENTER ALIGNED */
.pricing-plan-card {
    background: #ffffff;
    border: 2px solid #ff5722;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

    .pricing-plan-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

/* Featured Card - Performance Pack */
.pricing-plan-featured {
    background: #1f2937;
    border-color: #1f2937;
    transform: scale(1);
}

    .pricing-plan-featured:hover {
        transform: translateY(-5px) scale(1);
    }

    .pricing-plan-featured .plan-name,
    .pricing-plan-featured .plan-subtitle,
    .pricing-plan-featured .plan-description,
    .pricing-plan-featured .price-currency,
    .pricing-plan-featured .price-amount,
    .pricing-plan-featured .price-duration {
        color: #ffffff;
    }

    .pricing-plan-featured .plan-features li {
        color: #ffffff;
    }

        .pricing-plan-featured .plan-features li svg {
            stroke: #fbbf24;
        }

    .pricing-plan-featured .plan-subscribe-btn {
        background: #ff5722;
        color: #ffffff;
    }

        .pricing-plan-featured .plan-subscribe-btn:hover {
            background: #d63e00;
        }

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff5722;
    color: #ffffff;
    padding: 0.4rem 1.25rem;
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 600;
}

/* Plan Details - CENTER ALIGNED */
.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1d2e;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

.plan-subtitle {
    font-size: 1rem;
    color: #ff5722 !important ;
    margin: 0 0 1rem 0;
    font-weight: 500;
    text-align: center;
}

.plan-description {
    font-size: 0.938rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    text-align: center;
}

/* Price - CENTER ALIGNED */
.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 0.25rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1d2e;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1d2e;
    line-height: 1;
}

.price-duration {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Features List - CENTER ALIGNED */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

    .plan-features li {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 0.75rem;
        font-size: 0.938rem;
        color: #4b5563;
        line-height: 1.5;
        text-align: left;
        max-width: 300px;
        width: 100%;
    }

        .plan-features li svg {
            flex-shrink: 0;
            margin-top: 0.125rem;
            stroke: #10b981;
        }

/* Subscribe Button */
.plan-subscribe-btn {
    width: 100%;
    max-width: 300px;
    padding: 0.875rem 1.5rem;
    background: #ff5722;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

    .plan-subscribe-btn:hover {
        background: #d63e00;
    }

/* Regular cards Subscribe button */
.pricing-plan-card:not(.pricing-plan-featured) .plan-subscribe-btn {
    background: #ff5722;
    color: #ffffff;
}

    .pricing-plan-card:not(.pricing-plan-featured) .plan-subscribe-btn:hover {
        background: #d63e00;
    }

/* Responsive */
@media screen and (max-width: 991px) {
    .pricing-plans-container {
        padding: 0 2rem;
    }

    .pricing-plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .pricing-plan-card:nth-child(2) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ============================================
   MOBILE VIEW - VERTICAL STACK
   ============================================ */

@media screen and (max-width: 768px) {
    .pricing-plans-section {
        padding: 3rem 0;
    }

    .pricing-plans-container {
        padding: 0 1.5rem;
    }

    /* VERTICAL STACK: PERFORMANCE, ESSENTIAL, ELITE */
    .pricing-plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Reorder cards */
    .pricing-plan-card:nth-child(1) {
        order: 2;
    }

    .pricing-plan-card:nth-child(2) {
        order: 1;
        max-width: 100%;
    }

    .pricing-plan-card:nth-child(3) {
        order: 3;
    }

    .pricing-plan-card {
        padding: 2rem 1.75rem;
    }

        .pricing-plan-card:hover {
            transform: translateY(-3px);
        }

    .pricing-plan-featured:hover {
        transform: translateY(-3px) scale(1);
    }

    .plan-name {
        font-size: 1.375rem;
    }

    .plan-subtitle {
        font-size: 0.938rem;
    }

    .plan-description {
        font-size: 0.875rem;
        margin-bottom: 1.75rem;
    }

    .plan-price {
        margin-bottom: 1.75rem;
    }

    .price-currency {
        font-size: 1.25rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .price-duration {
        font-size: 0.938rem;
    }

    .plan-features {
        gap: 0.875rem;
        margin-bottom: 1.75rem;
    }

        .plan-features li {
            font-size: 0.875rem;
        }

            .plan-features li svg {
                width: 18px;
                height: 18px;
            }

    .plan-subscribe-btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.938rem;
    }

    .popular-badge {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }
}

@media screen and (max-width: 576px) {
    .pricing-plans-section {
        padding: 2.5rem 0;
    }

    .pricing-plans-container {
        padding: 0 1.25rem;
    }

    .pricing-plans-grid {
        gap: 1.75rem;
    }

    .pricing-plan-card {
        padding: 1.75rem 1.5rem;
    }

    .plan-name {
        font-size: 1.25rem;
    }

    .plan-subtitle {
        font-size: 0.875rem;
    }

    .plan-description {
        font-size: 0.813rem;
    }

    .price-amount {
        font-size: 2.25rem;
    }

    .plan-features li {
        font-size: 0.813rem;
    }
}

@media screen and (max-width: 480px) {
    .pricing-plans-container {
        padding: 0 1rem;
    }

    .pricing-plan-card {
        padding: 1.5rem 1.25rem;
    }

    .plan-name {
        font-size: 1.125rem;
    }

    .price-amount {
        font-size: 2rem;
    }
}

/* Why Subscribe Section */
.why-subscribe-section {
    background: #f5f5f7;
    padding: 5rem 0;
}

.why-subscribe-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.why-subscribe-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1d2e;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.why-subscribe-subtitle {
    font-size: 1.063rem;
    color: #6b7280;
    margin: 0 0 3.5rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

/* Benefit Icons */
.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.benefit-icon-orange {
    background: #ff8800;
}

.benefit-icon-blue {
    background: #0066ff;
}

.benefit-icon-purple {
    background: #9933ff;
}

.benefit-icon-green {
    background: #00aa44;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1d2e;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.benefit-description {
    font-size: 0.938rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media screen and (max-width: 1200px) {
    .why-subscribe-container {
        padding: 0 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media screen and (max-width: 768px) {
    .why-subscribe-section {
        padding: 3rem 0;
    }

    .why-subscribe-container {
        padding: 0 1.5rem;
    }

    .why-subscribe-title {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }

    .why-subscribe-subtitle {
        font-size: 0.938rem;
        margin-bottom: 2.5rem;
    }

    /* MOBILE: 2x2 GRID */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .benefit-card {
        padding: 1.75rem 1.25rem;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

        .benefit-icon svg {
            width: 32px;
            height: 32px;
        }

    .benefit-title {
        font-size: 0.938rem;
        margin-bottom: 0.75rem;
    }

    .benefit-description {
        font-size: 0.813rem;
        line-height: 1.5;
    }
}

@media screen and (max-width: 576px) {
    .why-subscribe-section {
        padding: 2.5rem 0;
    }

    .why-subscribe-container {
        padding: 0 1.25rem;
    }

    .why-subscribe-title {
        font-size: 1.75rem;
    }

    .why-subscribe-subtitle {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.5rem 1rem;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
    }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
        }

    .benefit-title {
        font-size: 0.875rem;
    }

    .benefit-description {
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 480px) {
    .why-subscribe-container {
        padding: 0 1rem;
    }

    .why-subscribe-title {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 1.25rem 0.875rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

        .benefit-icon svg {
            width: 26px;
            height: 26px;
        }
}


/* Real Results Section */
.real-results-section {
    background: #ffffff;
    padding: 5rem 0;
}

.real-results-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.real-results-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1d2e;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.real-results-subtitle {
    font-size: 1.063rem;
    color: #6b7280;
    text-align: center;
    margin: 0 0 3.5rem 0;
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid-plan {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.testimonial-card-plan {
    background: #3e4d5f;
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Testimonial Header */
.testimonial-header-plan {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.testimonial-avatar-plan {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-info-plan {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.testimonial-name-plan {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.testimonial-stars-plan {
    display: flex;
    gap: 0.25rem;
}

.testimonial-role-plan {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Testimonial Quote */
.testimonial-quote-plan {
    font-size: 1.063rem;
    color: #ffffff;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* Testimonial Stat */
.testimonial-stat-plan {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 136, 0, 0.2);
    border: 1px solid rgba(255, 136, 0, 0.4);
    border-radius: 25px;
    padding: 0.625rem 1.25rem;
    font-size: 0.938rem;
    font-weight: 600;
    color: #ff8800;
    width: fit-content;
}

    .testimonial-stat-plan svg {
        stroke: #ff8800;
    }

/* Results Stats Row */
.results-stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.result-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
}

    .result-stat-item svg {
        stroke: #6b7280;
        flex-shrink: 0;
    }

/* Responsive */
@media screen and (max-width: 991px) {
    .real-results-container {
        padding: 0 2rem;
    }

    .testimonials-grid-plan {
        gap: 2rem;
    }

    .results-stats-row {
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .real-results-section {
        padding: 3rem 0;
    }

    .real-results-container {
        padding: 0 1.5rem;
    }

    .real-results-title {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }

    .real-results-subtitle {
        font-size: 0.938rem;
        margin-bottom: 2.5rem;
    }

    /* MOBILE: VERTICAL STACK */
    .testimonials-grid-plan {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .testimonial-card-plan {
        padding: 2rem 1.75rem;
        gap: 1.25rem;
    }

    .testimonial-avatar-plan {
        width: 50px;
        height: 50px;
    }

    .testimonial-name-plan {
        font-size: 1rem;
    }

    .testimonial-stars-plan svg {
        width: 14px;
        height: 14px;
    }

    .testimonial-role-plan {
        font-size: 0.813rem;
    }

    .testimonial-quote-plan {
        font-size: 0.938rem;
    }

    .testimonial-stat-plan {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

        .testimonial-stat-plan svg {
            width: 16px;
            height: 16px;
        }

    /* Stats Row - KEEP IN ONE LINE ON MOBILE */
    .results-stats-row {
        flex-direction: row;
        gap: 1.5rem;
        padding-top: 2.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .result-stat-item {
        font-size: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.375rem;
    }

        .result-stat-item svg {
            width: 18px;
            height: 18px;
        }
}

@media screen and (max-width: 576px) {
    .real-results-section {
        padding: 2.5rem 0;
    }

    .real-results-container {
        padding: 0 1.25rem;
    }

    .real-results-title {
        font-size: 1.75rem;
    }

    .real-results-subtitle {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }

    .testimonial-card-plan {
        padding: 1.75rem 1.5rem;
    }

    .testimonial-quote-plan {
        font-size: 0.875rem;
    }

    .testimonial-stat-plan {
        font-size: 0.813rem;
    }

    .results-stats-row {
        gap: 1.25rem;
    }

    .result-stat-item {
        font-size: 0.688rem;
    }

        .result-stat-item svg {
            width: 16px;
            height: 16px;
        }
}

@media screen and (max-width: 480px) {
    .real-results-container {
        padding: 0 1rem;
    }

    .real-results-title {
        font-size: 1.5rem;
    }

    .testimonial-card-plan {
        padding: 1.5rem 1.25rem;
    }

    .results-stats-row {
        gap: 1rem;
    }

    .result-stat-item {
        font-size: 0.625rem;
    }

        .result-stat-item svg {
            width: 14px;
            height: 14px;
        }
}

/* Final CTA Section */
.final-cta-section {
    background: #1a2536;
    padding: 6rem 0;
    text-align: center;
}

.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.final-cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.final-cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0 0 2.5rem 0;
}

.final-cta-button {
    background: #ff8800;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.8rem 6rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 136, 0, 0.3);
}

    .final-cta-button:hover {
        background: #e67700;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 136, 0, 0.4);
    }

.desktop-break {
    display: inline;
}

/* Responsive */
@media screen and (max-width: 991px) {
    .final-cta-section {
        padding: 5rem 0;
    }

    .final-cta-container {
        padding: 0 2rem;
    }

    .final-cta-title {
        font-size: 3rem;
    }

    .final-cta-description {
        font-size: 1.063rem;
    }

    .final-cta-button {
        font-size: 1.063rem;
        padding: 0.938rem 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .final-cta-section {
        padding: 4rem 0;
    }

    .final-cta-container {
        padding: 0 1.5rem;
    }

    .final-cta-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }

    .final-cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .final-cta-button {
        font-size: 1rem;
        padding: 0.875rem 2.25rem;
    }

    .desktop-break {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .final-cta-section {
        padding: 3.5rem 0;
    }

    .final-cta-container {
        padding: 0 1.25rem;
    }

    .final-cta-title {
        font-size: 2rem;
        line-height: 1.25;
    }

    .final-cta-description {
        font-size: 0.938rem;
        line-height: 1.6;
    }

    .final-cta-button {
        font-size: 0.938rem;
        padding: 0.813rem 2rem;
    }
}

@media screen and (max-width: 480px) {
    .final-cta-container {
        padding: 0 1rem;
    }

    .final-cta-title {
        font-size: 1.75rem;
    }

    .final-cta-description {
        font-size: 0.875rem;
    }

    .final-cta-button {
        font-size: 0.875rem;
        padding: 0.75rem 1.75rem;
    }
}

