:root {
    --primary: #000000;
    --secondary: #FFFFFF;
    --accent: #7a6efa;
    --accent-light: #a29bfe;
    --gray-light: #f8f8f8;
    --gray-medium: #e0e0e0;
    --gray-dark: #333333;
    --success: #1dd1a1;
    --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary);
    color: var(--primary);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0rem;
}


/* Hero */
.pricing-hero {
    text-align: center;
    padding: 6rem 0 4rem;
    margin-top: calc(5rem + 5vh);
}

.pricing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.pricing-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}

/* Pricing Tiers */
.pricing-tiers {
    padding: 4rem 0;
    position: relative;
}

.pricing-tiers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(122, 110, 250, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(29, 209, 161, 0.05) 0%, transparent 40%);
    z-index: -1;
}

.tiers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-tier {
    background: var(--secondary);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid var(--gray-medium);
    position: relative;
    overflow: hidden;
}

.pricing-tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tier-popular {
    border: 2px solid var(--accent);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-header {
    margin-bottom: 2rem;
}

.tier-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.tier-description {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.tier-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.feature-item i {
    color: var(--success);
}

/* FAQ */
.faq-section {
    padding: 6rem 0;
    background: var(--gray-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-medium);
    padding-bottom: 1.5rem;
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    opacity: 0.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 1rem;
}

/* CTA */
.pricing-cta {
    text-align: center;
    padding: 6rem 0;
}

.pricing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pricing-cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.8;
}


/* Responsive */
@media (max-width: 992px) {
    .pricing-hero h1 {
        font-size: 2.8rem;
    }
    
    .tiers-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 3rem auto 0;
    }
}

@media (max-width: 768px) {
   
    
    .pricing-hero {
        padding: 4rem 0 2rem;
    }
    
    .pricing-hero h1 {
        font-size: 2.3rem;
    }
    
    .pricing-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        /* padding: 0 1.5rem; */
    }
    
    .pricing-tier {
        padding: 2rem;
    }
    
    .tier-price {
        font-size: 3rem;
    }
}
 