/* Pricing specific styles */
.pricing-hero {
    background: linear-gradient(135deg, #f4c430 0%, #e6b800 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.pricing-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #1a1a1a;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
}

.toggle-container {
    background: rgba(26, 26, 26, 0.1);
    border-radius: 2rem;
    padding: 0.25rem;
    display: flex;
}

.toggle-option {
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    background: transparent;
    color: #1a1a1a;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-option.active {
    background: #1a1a1a;
    color: white;
}

.pricing-content {
    padding: 4rem 0;
    background: #f8fafc;
}

.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-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border: 3px solid #f4c430;
    transform: scale(1.05);
}

.featured-badge {
    background: #f4c430;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #6b7280;
    margin-bottom: 2rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.plan-price .period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

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

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.feature-icon {
    color: #10b981;
    font-weight: bold;
}

.feature-icon.unavailable {
    color: #ef4444;
}

.plan-cta {
    width: 100%;
    padding: 1rem;
    background: #f4c430;
    color: #1a1a1a;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-cta:hover {
    background: #e6b800;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(244, 196, 48, 0.3);
}

.plan-cta.secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #e5e7eb;
}

.plan-cta.secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.enterprise-section {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.enterprise-content {
    max-width: 800px;
    margin: 0 auto;
}

.enterprise-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.enterprise-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.enterprise-feature {
    text-align: center;
}

.enterprise-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.enterprise-cta {
    background: #f4c430;
    color: #1a1a1a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enterprise-cta:hover {
    background: #e6b800;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(244, 196, 48, 0.3);
}

.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 0.75rem;
    border-left: 4px solid #f4c430;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-answer {
    color: #6b7280;
    line-height: 1.6;
}