.pricing-header {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.pricing-header h1 {
    font-size: 2.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.pricing-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.pricing-plans {
    padding: 2rem 1rem 6rem;
}

.plan-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.plan {
    width: 100%;
    max-width: 350px;
    flex: 1 1 300px;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(94, 152, 241, 0.1);
    border: 1px solid rgba(94, 152, 241, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.plan.popular {
    transform: none;
    border: 2px solid var(--primary);
}

.plan.popular:hover {
    transform: translateY(-5px);
}

.popular-badge {
    position: absolute;
    z-index: 10;    
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h2 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    color: #6b7280;
}

.contact {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.75rem 0;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.plan-cta {
    display: block;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.plan-cta:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 152, 241, 0.2);
    border-color: var(--primary);
}

.plan-cta.enterprise {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.plan-cta.enterprise:hover {
    background: var(--primary);
    color: white;
}

.enterprise-section {
    background: #f8fafc;
    padding: 4rem 2rem;
    margin-top: -4rem;  /* Overlap with pricing section */
}

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

.enterprise-content h2 {
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.enterprise-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.enterprise-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.enterprise-features li {
    color: #4b5563;
    padding: 0.5rem 0;
}

.enterprise-cta {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(94, 152, 241, 0.1);
}

.enterprise-cta h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.enterprise-cta p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.enterprise-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.enterprise-button:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 152, 241, 0.2);
}

@media (max-width: 768px) {
    .pricing-header {
        padding: 3rem 1rem;
    }

    .pricing-header h1 {
        font-size: 2rem;
    }

    .pricing-plans {
        padding: 1rem 1rem 4rem;
    }

    .plan-container {
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .plan {
        margin: 0 auto;
    }

    .enterprise-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .enterprise-features {
        grid-template-columns: 1fr;
    }

    .enterprise-section {
        padding: 2rem 1rem;
        margin-top: -2rem;
    }

    .enterprise-content h2 {
        font-size: 1.75rem;
    }

    .enterprise-cta {
        padding: 1.5rem;
        text-align: center;
    }

    .amount {
        font-size: 2rem;
    }

    .features li {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .plan {
        padding: 1.5rem;
    }

    .amount {
        font-size: 1.75rem;
    }

    .features li {
        font-size: 0.9rem;
    }

    .plan-cta {
        padding: 0.75rem;
    }
}

.discount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.original {
    font-size: 1.5rem;
    font-weight: 500;
    color: #e53e3e;
    text-decoration: line-through;
}

.christmas-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.christmas-badge {
    position: absolute;
    z-index: 5;
    top: 30px;
    right: -80px;
    background: #e53e3e;
    color: white;
    padding: 0.4rem 3rem;
    font-size: 0.9rem;
    font-weight: 500;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.christmas-icon {
    color: #fff;
} 