/* Pricing Page Specific Styles */
:root {
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --success-color: #22c55e;
    --background-gradient: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    --hero-gradient: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    --card-shadow: 0 4px 6px -1px rgba(99, 102, 241, 0.1);
    --card-hover-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.2);
}

.hero-section {
    min-height: 40vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: var(--gradient);
    color: white;
    padding: 5rem 0 3rem;
    position: relative;
    margin-bottom: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hero-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 0;
}

.pricing-container h1 {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.subtitle {
    text-align: center;
    color: #64748B;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.plan-toggle {
    display: none;
}

.plan-toggle button {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: #4b5563;
    transition: all 0.3s ease;
}

.plan-toggle button.active {
    background: var(--primary);
    color: white;
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #4b5563;
    transition: all 0.3s ease;
    position: relative;
    flex: 1;
    white-space: nowrap;
    min-width: max-content;
}

.toggle-btn.active {
    background: #8B5CF6;
    color: white;
}

.toggle-btn:hover:not(.active) {
    background: rgba(139, 92, 246, 0.1);
}

.discount {
    background: #10B981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.plan-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.plan-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.plan-header h2 {
    font-size: 1.75rem;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.plan-description {
    text-align: center;
    color: #6B7280;
    margin-bottom: 1rem;
}

.price {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #1F2937;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    color: #6B7280;
    font-weight: 400;
    white-space: nowrap;
    margin-left: 0.25rem;
}

.one-time-fee {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 0;
    margin-top: -1rem;
    margin-left: 2.4rem;
}

.savings-annual {
    text-align: center;
    color: var(--success-color);
    font-size: 0.9rem;
    margin-bottom: 0;
    margin-top: -1rem;
}

.savings {
    color: #10B981;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.team-capacity, .monthly-usage, .addon-packages {
    background: #F9FAFB;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}
.pay-per-use-addon {
    margin-top: 6.5rem;
}
.monthly-usage {
    margin-top: 2rem;
}

.team-capacity h3, .monthly-usage h3, .addon-packages h3 {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.addon-packages h3 {
    margin-bottom: 0.25rem;
}

.addon-packages .savings {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.capacity-details, .usage-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.detail span:first-child {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
}

.detail span:last-child {
    font-size: 0.9rem;
    color: #6B7280;
}

.addon-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.addon {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #E5E7EB;
}

.addon span:first-child {
    font-weight: 500;
    color: #374151;
}

.addon span:last-child {
    font-size: 0.9rem;
    color: #6B7280;
}

.buy-plan {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: #8B5CF6;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-plan:hover {
    background-color: #7C3AED;
}

.social-access {
    margin-bottom: 5rem; /* Add space above the button */
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
}

.nav-links a.active {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .plan-cards {
        flex-wrap: wrap;
    }
    
    .plan-card {
        width: calc(50% - 1rem);
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .plan-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .plan-card {
        width: 100%;
        max-width: 350px;
    }
    
    .plan-card.featured {
        transform: translateY(0);
    }
}

@media screen and (max-width: 400px) {
    .price {
        font-size: 2.5rem;
    }
    
    .plan-card {
        padding: 1.5rem;
    }
    
    .team-capacity, .monthly-usage, .addon-packages {
        padding: 1rem;
    }
}

/* Ensure navbar is consistent */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
}

.nav-cta,
.nav-cta .btn,
.nav-cta .btn-outline,
.nav-cta .btn-outline:hover,
.nav-cta .btn-primary,
.nav-cta .btn-primary:hover {
    /* Remove these styles as they're defined in styles.css */
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

/* Remove or comment out the gradient-text class */
/* .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
} */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    background: var(--gradient);
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.hidden {
    display: none;
}

.text-white {
    color: white !important;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    opacity: 1;
}
