.pricing-main {
    padding-top: 80px;
}

.pricing-hero {
    padding: 4rem 0;
    background-color: rgb(255, 250, 235);
    text-align: center;
}

.pricing-hero-content h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgb(31, 31, 31);
}

.pricing-hero-content p {
    font-size: 1.25rem;
    color: rgb(31, 31, 31);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-plans {
    padding: 6rem 0;
    background-color: rgb(255, 250, 235);
}

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

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid rgb(255, 87, 34);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(255, 87, 34);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(31, 31, 31);
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(31, 31, 31);
}

.price-unit {
    font-size: 1rem;
    color: rgb(31, 31, 31);
    opacity: 0.7;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: rgb(31, 31, 31);
    font-size: 1rem;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgb(31, 31, 31);
    background: transparent;
    color: rgb(31, 31, 31);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn.primary {
    background: rgb(255, 87, 34);
    border-color: rgb(255, 87, 34);
    color: white;
}

.pricing-btn:hover {
    background: rgb(31, 31, 31);
    color: white;
}

.pricing-btn.primary:hover {
    background: rgb(230, 74, 25);
}

.pricing-features-section {
    padding: 6rem 0;
    background-color: rgb(248, 248, 248);
}

.pricing-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.pricing-features-container h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: rgb(31, 31, 31);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.feature-item {
    text-align: left;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(31, 31, 31);
}

.feature-item p {
    color: rgb(31, 31, 31);
    opacity: 0.8;
    line-height: 1.6;
}

.nav-link.active {
    color: rgb(255, 87, 34);
    font-weight: 600;
}

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-hero-content h1 {
        font-size: 2rem;
    }
}
