/* Pricing Page Specific Styles */

/* Pricing Hero Section */
.pricing-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 10%;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.pricing-hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--accent-color);
}

.pricing-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.pricing-hero-description {
    font-size: 1.4rem;
    max-width: 750px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
}

.hero-stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.hero-stat p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Free Trial Banner */
.free-trial-banner {
    background: var(--bg-light);
    padding: 3rem 0;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.banner-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.banner-icon {
    font-size: 4rem;
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.banner-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.banner-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 1.05rem;
}

.banner-right {
    position: relative;
    z-index: 1;
}

.banner-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-lg);
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 100px 0;
    background: #f9fafb;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    background: var(--bg-white);
}

.featured-glow {
    display: none;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.plan-badge {
    display: inline-block;
    background: #eff6ff;
    color: #3b82f6;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.featured-badge {
    background: #eff6ff;
    color: #3b82f6;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.save-badge-top {
    background: #fef3c7;
    color: #f59e0b;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-icon {
    display: none;
}

.plan-header {
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #111827;
    font-weight: 700;
}

.plan-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0.3rem;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

.plan-original-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.plan-original-price span:first-child {
    color: #9ca3af;
    font-size: 0.9rem;
}

.plan-original-price del {
    color: #9ca3af;
}

.save-badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.plan-features {
    margin-bottom: auto;
    padding-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    padding: 0.6rem 0;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.plan-features i {
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: var(--gradient-1);
    border: none;
    margin-bottom: 0.75rem;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.featured .plan-btn {
    background: var(--gradient-1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.plan-note {
    text-align: center;
    color: #9ca3af;
    font-size: 0.85rem;
    margin: 0;
}

.featured-btn {
    background: var(--gradient-1);
}

.plan-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}

/* Special Programs Section */
.special-programs {
    padding: 80px 0;
    background: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.program-card:nth-child(2) .program-icon {
    background: var(--gradient-2);
}

.program-card:nth-child(3) .program-icon {
    background: var(--gradient-3);
}

.program-card:nth-child(4) .program-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.program-icon i {
    font-size: 2.5rem;
    color: white;
}

.program-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Features Comparison Table */
.features-comparison {
    padding: 80px 0;
    background: var(--bg-white);
}

.comparison-table {
    overflow-x: auto;
    box-shadow: var(--shadow-md);
    border-radius: 15px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}

.comparison-table thead {
    background: var(--gradient-1);
    color: white;
}

.comparison-table th {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table td {
    padding: 1.2rem 1.5rem;
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
}

.comparison-table .fa-check-circle {
    color: #10b981;
    font-size: 1.5rem;
}

.comparison-table .fa-times-circle {
    color: #ef4444;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* Pricing FAQ */
.pricing-faq {
    padding: 80px 0;
    background: var(--bg-light);
}

/* Pricing CTA */
.pricing-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: patternMove 30s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-image-container {
    position: relative;
}

.cta-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-floating-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.card-content h4 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.cta-content {
    color: white;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-badge i {
    color: var(--accent-color);
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-features {
    margin-bottom: 2.5rem;
}

.cta-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.large-btn {
    padding: 1.3rem 3rem;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.cta-main-btn {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-main-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

.cta-trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.trust-badge i {
    font-size: 1.2rem;
}

/* Responsive Design for Pricing Page */
@media (max-width: 1024px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stat {
        padding: 1rem 1.5rem;
        min-width: 130px;
    }
    
    .hero-stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 130px 0 60px;
    }

    .pricing-hero-title {
        font-size: 2.5rem;
    }

    .pricing-hero-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-stat {
        padding: 0.8rem 1rem;
        min-width: 100px;
    }

    .hero-stat h3 {
        font-size: 1.5rem;
    }

    .hero-stat p {
        font-size: 0.85rem;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .banner-left {
        flex-direction: column;
    }

    .banner-text h3 {
        font-size: 1.5rem;
    }

    .banner-btn {
        width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .amount {
        font-size: 2.5rem;
    }

    .plan-header h3 {
        font-size: 1.4rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.8rem;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-image {
        height: 400px;
    }

    .cta-floating-card {
        bottom: 20px;
        right: 20px;
        padding: 1rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .card-content h4 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-feature-item {
        gap: 1rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .feature-text h4 {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .large-btn {
        width: 100%;
        max-width: 400px;
    }

    .cta-trust-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 120px 0 40px;
    }

    .pricing-hero-title {
        font-size: 2rem;
    }

    .pricing-hero-description {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-stat {
        width: 100%;
    }

    .banner-icon {
        width: 70px;
        height: 70px;
        font-size: 3rem;
    }

    .banner-text h3 {
        font-size: 1.3rem;
    }

    .banner-text p {
        font-size: 0.95rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .plan-header h3 {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2.2rem;
    }

    .currency {
        font-size: 1.2rem;
    }

    .plan-features li {
        font-size: 0.9rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .pricing-cta {
        padding: 60px 0;
    }

    .cta-image-container {
        display: none;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
    }

    .cta-content {
        text-align: center;
    }

    .cta-badge {
        font-size: 0.85rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .cta-feature-item {
        text-align: left;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.85rem;
    }

    .large-btn {
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }

    .cta-trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .program-icon {
        width: 70px;
        height: 70px;
    }

    .program-icon i {
        font-size: 2rem;
    }
}

