/* Pricing Page Styles */
@import url('base/reset.css');
@import url('base/variables.css');
@import url('base/typography.css');
@import url('base/layout.css');
@import url('components/nav.css');
@import url('components/footer.css');

/* Hero Section */
.pricing-hero {
    background: #303030;
    padding: 120px 24px;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, 
        rgba(255,255,255,0.05) 25%, 
        transparent 25%
    );
    background-size: 4px 4px;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #f6c445;
    line-height: 1.5;
    margin-bottom: 32px;
}

.cta-button {
    background: #e45f2b;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(228, 95, 43, 0.3);
}

.hero-graph {
    position: relative;
    height: 400px;
}

.graph-animation {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, #6dc1e8 30%, transparent 70%);
    opacity: 0.8;
    border-radius: 16px;
    animation: pulse 3s infinite;
}

/* Pricing Toggle Section */
.pricing-toggle-section {
    padding: 48px 24px;
    background: #ffffff;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.toggle-label {
    font-size: 18px;
    color: #303030;
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #303030;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #f16ceb;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.save-badge {
    background: #f6c445;
    color: #303030;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 64px 24px 96px;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(241, 108, 235, 0.2);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #f16ceb;
}

.pricing-card.featured {
    border: 2px solid #f16ceb;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(241, 108, 235, 0.2);
}

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

.card-header {
    text-align: center;
    margin-bottom: 32px;
}

.card-header h3 {
    color: #303030;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #303030;
}

.period {
    font-size: 18px;
    color: #6dc1e8;
}

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

.features-list li {
    padding: 12px 0;
    color: #303030;
    font-size: 16px;
    border-bottom: 1px solid rgba(109, 193, 232, 0.1);
}

.features-list li:last-child {
    border-bottom: none;
}

.plan-button {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    background: #f16ceb;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: #e45f2b;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 0.8; }
    100% { opacity: 0.6; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 80px 16px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-graph {
        height: 300px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        grid-column: span 1;
    }
    
    .price {
        font-size: 36px;
    }
}

/* Toggle Animation for Pricing */
.amount.monthly,
.amount.annual {
    display: none;
}

.amount.monthly.active,
.amount.annual.active {
    display: inline;
}

/* FAQ Section */
.pricing-faq {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(241, 108, 235, 0.05), rgba(109, 193, 232, 0.05));
}

.pricing-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--dark);
    opacity: 0.8;
    line-height: 1.6;
}

/* Active Navigation Link */
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
} 