/* Pricing Page Specific Styles */

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #181f2a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #147ccc 0%, #4a7ba7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a7ba7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-primary {
    color: #147ccc;
}

.urgency-badge {
    background: linear-gradient(135deg, #147ccc 0%, #4a7ba7 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 2rem;
}

.urgency-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.urgency-subtitle {
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.9;
}

/* Billing Toggle */
.billing-toggle-section {
    padding: 2rem 0;
}

.billing-toggle-container {
    margin-bottom: 3rem;
}

.billing-toggle {
    display: inline-flex;
    background: #f8fafc;
    border: 1px solid #e5eaf1;
    border-radius: 50px;
    padding: 0.25rem;
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: #4a7ba7;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-btn:hover {
    color: #147ccc;
}

.toggle-btn.active {
    background: #147ccc;
    color: white;
    box-shadow: 0 4px 12px rgba(20, 124, 204, 0.3);
}

.savings-badge {
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-weight: 600;
}

/* Pricing Cards */
.pricing-section {
    padding: 2rem 0 4rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid #e5eaf1;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid #147ccc;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.plan-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #4a7ba7;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.plan-badge.popular {
    background: #147ccc;
}

.plan-badge.premium {
    background: linear-gradient(135deg, #147ccc 0%, #4a7ba7 100%);
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #181f2a;
    text-align: center;
    margin: 1rem 0 1.5rem;
}

.plan-pricing {
    text-align: center;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #147ccc;
    line-height: 1;
}

.original-price {
    font-size: 1.125rem;
    color: #e74c3c;
    text-decoration: line-through;
    margin-top: 0.5rem;
}

.savings-text {
    font-size: 0.875rem;
    color: #147ccc;
    font-weight: 600;
    margin-top: 0.5rem;
}

.billing-period {
    text-align: center;
    color: #4a7ba7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.monthly-equivalent {
    text-align: center;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #4a7ba7;
    font-size: 0.875rem;
}

.check {
    color: #147ccc;
    margin-right: 0.5rem;
    font-weight: 600;
}

.btn-full {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Feature Comparison */
.comparison-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #181f2a;
    margin-bottom: 3rem;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5eaf1;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #f8fafc;
    border-bottom: 1px solid #e5eaf1;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5eaf1;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #4a7ba7;
}

.comparison-header .comparison-cell {
    font-weight: 600;
    color: #181f2a;
}

.comparison-cell.popular {
    color: #147ccc;
    font-weight: 600;
}

.comparison-row .comparison-cell:first-child {
    justify-content: flex-start;
    font-weight: 500;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 0;
}

.urgency-card {
    background: white;
    color: #181f2a;
    padding: 2rem;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid #147ccc;
    box-shadow: 0 8px 24px rgba(20, 124, 204, 0.15);
}

.urgency-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #147ccc;
}

.urgency-card-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #4a7ba7;
}

.price-increase-grid {
    background: rgba(20, 124, 204, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-increase-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #181f2a;
}

.price-increase-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.price-increase-item p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
    color: #4a7ba7;
}

.future-price {
    color: #e74c3c;
    font-weight: 700;
}

.savings-amount {
    font-weight: 600;
    color: #147ccc;
}

.annual-note {
    font-size: 0.875rem;
    color: #4a7ba7;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e5eaf1;
    border-radius: 12px;
    padding: 1.5rem;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #181f2a;
    margin-bottom: 0.75rem;
}

.faq-answer {
    color: #4a7ba7;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #147ccc 0%, #4a7ba7 100%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #e0e6ed;
    margin-bottom: 2rem;
}

.cta-urgency {
    background: rgba(20, 124, 204, 0.95); /* More opaque, strong blue */
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(20, 124, 204, 0.15);
}

.cta-urgency-title {
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0 0 0.25rem 0;
    color: #fff;
    letter-spacing: 0.5px;
}

.cta-urgency-subtitle {
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.95;
    color: #e0e6ed;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: #0d5a8a;
    border-color: #0d5a8a;
    color: white;
}

.btn-large:hover {
    background: #0a4a73;
    border-color: #0a4a73;
    color: white;
}

.cta-urgency, .cta-urgency *, .cta-urgency-title, .cta-urgency-subtitle {
    color: #fff !important;
    opacity: 1 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison-cell:first-child {
        justify-content: center;
        font-weight: 600;
        background: #f8fafc;
    }
    
    .price-increase-items {
        grid-template-columns: 1fr;
    }
    
    .billing-toggle {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .toggle-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .urgency-badge {
        padding: 0.75rem 1.5rem;
    }
    
    .urgency-title {
        font-size: 1rem;
    }
} 