/* Pricing Page Redesign - Modern, Conversion-Focused Design */

/* Hero Section */
.PricingNew-hero {
    background: linear-gradient(135deg, #32a8ee 0%, #1a8cd8 100%);
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.PricingNew-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.PricingNew-alert {
    background: rgba(255, 255, 255, 0.95);
    color: #dc3545;
    padding: 16px 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.PricingNew-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.PricingNew-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.PricingNew-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
}

/* Pricing Section */
.PricingNew-pricing-section {
    padding: 60px 20px;
    background: #f8f9fc;
    margin-top: -40px;
    position: relative;
}

.PricingNew-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

/* Pricing Card */
.PricingNew-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.PricingNew-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.PricingNew-card-featured {
    border: 3px solid #32a8ee;
    transform: scale(1.05);
}

.PricingNew-card-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.PricingNew-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #32a8ee 0%, #1a8cd8 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.PricingNew-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.PricingNew-card-name {
    font-size: 24px;
    font-weight: 700;
    color: #123048;
}

.PricingNew-card-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.PricingNew-badge-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #8b6914;
}

.PricingNew-badge-green {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.PricingNew-card-price {
    margin-bottom: 30px;
}

.PricingNew-price-amount {
    font-size: 56px;
    font-weight: 700;
    color: #123048;
    line-height: 1;
}

.PricingNew-price-period {
    font-size: 18px;
    color: #5a5a5a;
    font-weight: 500;
}

.PricingNew-card-features {
    flex: 1;
    margin-bottom: 30px;
}

.PricingNew-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.PricingNew-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #123048;
}

.PricingNew-features-list svg {
    flex-shrink: 0;
    color: #28a745;
    margin-top: 2px;
}

.PricingNew-card-btn {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #32a8ee 0%, #1a8cd8 100%);
    color: white;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.PricingNew-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
    text-decoration: none;
    color: white;
}

/* Corporate CTA */
.PricingNew-corporate-cta {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(79, 172, 254, 0.3);
    flex-wrap: wrap;
}

.PricingNew-corporate-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.PricingNew-corporate-content {
    flex: 1;
    min-width: 200px;
}

.PricingNew-corporate-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
}

.PricingNew-corporate-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.PricingNew-corporate-btn {
    padding: 14px 32px;
    background: white;
    color: #4facfe;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.PricingNew-corporate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #4facfe;
}

/* Benefits Section */
.PricingNew-benefits-section {
    padding: 80px 20px;
    background: white;
}

.PricingNew-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.PricingNew-section-title {
    font-size: 38px;
    text-align: center;
    font-weight: 700;
    color: #123048;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.PricingNew-section-subtitle {
    font-size: 18px;
    color: #5a5a5a;
    margin: 0;
}

.PricingNew-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.PricingNew-benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.PricingNew-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.PricingNew-benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.PricingNew-benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.PricingNew-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 12px 0;
}

.PricingNew-benefit-text {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
    margin: 0;
}

/* AI Highlight */
.PricingNew-ai-highlight {
    background: linear-gradient(135deg, #32a8ee 0%, #1a8cd8 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(66, 153, 225, 0.3);
}

.PricingNew-ai-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
}

.PricingNew-ai-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.PricingNew-ai-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
}

.PricingNew-ai-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
}

/* Social Proof Section */
.PricingNew-social-proof {
    padding: 80px 20px;
    background: #f8f9fc;
    text-align: center;
}

.PricingNew-trustpilot {
    max-width: 150px;
    margin: 30px auto 40px;
    display: block;
}

.PricingNew-ratings-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.PricingNew-rating-card {
    background: white;
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.PricingNew-rating-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.PricingNew-rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #32a8ee;
}

.PricingNew-rating-divider {
    font-size: 16px;
    color: #5a5a5a;
}

.PricingNew-rating-source {
    font-size: 14px;
    color: #5a5a5a;
    margin: 0;
}

.PricingNew-rating-image-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.PricingNew-rating-image-card img {
    max-width: 100%;
    height: auto;
}

/* Featured Section */
.PricingNew-featured-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.PricingNew-book-testimonials .book-testimonials {
    margin-top: 0px !important;
}

.PricingNew-section-title-spacing {
    margin-top: 60px;
}

.PricingNew-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
}

.PricingNew-logos-grid img {
    max-width: 150px;
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.PricingNew-logos-grid img:hover {
    opacity: 1;
}

/* FAQ Section */
.PricingNew-faq-section {
    padding: 80px 20px;
    background: #f8f9fc;
}

.PricingNew-faq-list {
    max-width: 800px;
    margin: 0 auto 30px;
}

.PricingNew-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.PricingNew-faq-item input[type='checkbox'] {
    display: none;
}

.PricingNew-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #123048;
    transition: background 0.3s ease;
    margin: 0;
}

.PricingNew-faq-question:hover {
    background: #f8f9fc;
}

.PricingNew-faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #32a8ee;
}

.PricingNew-faq-item input[type='checkbox']:checked + .PricingNew-faq-question svg {
    transform: rotate(180deg);
}

.PricingNew-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.PricingNew-faq-item input[type='checkbox']:checked ~ .PricingNew-faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.PricingNew-faq-answer p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
    margin: 0;
}

.PricingNew-faq-answer a {
    color: #32a8ee;
    text-decoration: none;
}

.PricingNew-faq-answer a:hover {
    text-decoration: underline;
}

.PricingNew-faq-footer {
    text-align: center;
    font-size: 16px;
    color: #5a5a5a;
}

.PricingNew-faq-footer a {
    color: #32a8ee;
    text-decoration: none;
    font-weight: 600;
}

.PricingNew-faq-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .PricingNew-hero-title {
        font-size: 38px;
    }

    .PricingNew-hero-subtitle {
        font-size: 18px;
    }

    .PricingNew-cards-grid {
        grid-template-columns: 1fr;
    }

    .PricingNew-card-featured {
        transform: scale(1);
    }

    .PricingNew-card-featured:hover {
        transform: translateY(-8px);
    }

    .PricingNew-ratings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .PricingNew-hero {
        padding: 60px 20px 80px;
    }

    .PricingNew-hero-title {
        font-size: 32px;
    }

    .PricingNew-hero-subtitle {
        font-size: 16px;
    }

    .PricingNew-pricing-section {
        padding: 40px 20px;
    }

    .PricingNew-card {
        padding: 30px 20px;
    }

    .PricingNew-price-amount {
        font-size: 44px;
    }

    .PricingNew-corporate-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .PricingNew-corporate-title {
        font-size: 24px;
    }

    .PricingNew-benefits-section,
    .PricingNew-social-proof,
    .PricingNew-featured-section,
    .PricingNew-faq-section {
        padding: 60px 20px;
    }

    .PricingNew-section-title {
        font-size: 28px;
    }

    .PricingNew-section-subtitle {
        font-size: 16px;
    }

    .PricingNew-benefits-grid {
        grid-template-columns: 1fr;
    }

    .PricingNew-ai-highlight {
        padding: 40px 20px;
    }

    .PricingNew-ai-title {
        font-size: 28px;
    }

    .PricingNew-ai-text {
        font-size: 16px;
    }

    .PricingNew-logos-grid {
        gap: 30px;
    }

    .PricingNew-logos-grid img {
        max-width: 120px;
        height: 50px;
    }

    .PricingNew-faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .PricingNew-faq-item input[type='checkbox']:checked ~ .PricingNew-faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .PricingNew-hero-title {
        font-size: 26px;
    }

    .PricingNew-cards-grid {
        gap: 20px;
    }

    .PricingNew-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .PricingNew-corporate-icon {
        width: 60px;
        height: 60px;
    }
}
