
.pricing-hero {
    background: linear-gradient(to bottom, #ebfffc 0%, #a9fce3 100%);
    padding: 100px 0 50px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.pricing-hero .container {
    position: relative;
    z-index: 1;
}

.pricing-title-1 {
    color: #102a43;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pricing-description {
    color: #486581;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Email Input Styles */
.email-input-group {
    max-width: 500px;
    margin: 2rem auto;
    position: relative;
}

.email-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(16, 42, 67, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.start-trial-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: #000;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start-trial-btn:hover {
    background: #001d1b;
    opacity: 0.9;
    transform: translateY(-1px);
}

.trial-note {
    color: #627d98;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 2.5rem;
    }

    .pricing-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .email-input-group {
        margin: 2rem 1rem;
    }

    .start-trial-btn {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .email-input {
        padding: 1rem;
        text-align: center;
    }
}



/* Price List */

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.toggle-container {
    background: #1f2937;
    border-radius: 50px;
    padding: 4px;
    display: flex;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toggle-option {
    padding: 12px 24px;
    border-radius: 46px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    transform: scale(1);
}

.toggle-option:hover {
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-option.monthly {
    background: white;
    color: #1f2937;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-option.monthly:hover {
    background: #f9fafb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toggle-option.yearly {
    color: white;
    margin-left: 8px;
    background: transparent;
}

.toggle-option.yearly:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--bs-blue);
}

.toggle-option.yearly.active {
    background: var(--bs-blue);
    color: white;
    box-shadow: 0 2px 8px rgba(81, 183, 243, 0.3);
}

.toggle-option.monthly.active {
    background: var(--bs-blue);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Updated grid to handle 3 cards with better responsive behavior */
.pricing-grid {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: nowrap;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 320px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--bs-blue);
}

.pricing-card.popular {
    border-color: #e5e7eb;
}

.plan-header {
    background: var(--bs-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.popular-badge {
    background: var(--bs-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -8px;
    right: 24px;
}

.plan-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.plan-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 24px;
}

.price-container {
    margin-bottom: 32px;
}

/* Fixed initial display state for price elements */
.original-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 4px;
    transition: opacity 0.4s ease;
}

.current-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    transition: opacity 0.4s ease;
}

.currency {
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    transition: opacity 0.4s ease;
}

.period {
    font-size: 16px;
    color: #6b7280;
    transition: opacity 0.4s ease;
}

/* Initially hide yearly elements */
.yearly-price,
.yearly-period {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.monthly-price,
.monthly-period {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.yearly-price,
.yearly-period {
    transition: opacity 0.4s ease;
}

.features-section {
    margin-bottom: 32px;
    flex-grow: 1;
}

.features-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
    font-size: 16px;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4b5563;
}

.feature-item::before {
    content: "✓";
    color: var(--bs-blue);
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-button {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    margin-top: auto;
}

.cta-button.primary {
    background: #1f2937;
    color: white;
}

.cta-button.primary:hover {
    background: #111827;
}

.cta-button.secondary {
    background: var(--bs-blue);
    color: white;
}

.cta-button.secondary:hover {
    background: #0056b3;
}

/* Updated responsive design for 3 cards */
@media (max-width: 1024px) {
    .pricing-grid {
        max-width: 900px;
        gap: 20px;
    }

    .pricing-card {
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 600px;
    }

    .pricing-card {
        flex: 1 1 280px;
        max-width: 400px;
        min-width: 280px;
    }

    .toggle-option {
        padding: 10px 16px;
        font-size: 13px;
    }

    .price {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    body {
       
    }

    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .pricing-card {
        flex: none;
        width: 100%;
        max-width: none;
        min-width: auto;
    }

    .toggle-option {
        padding: 8px 12px;
        font-size: 12px;
    }

    .price {
        font-size: 32px;
    }

    .plan-title {
        font-size: 20px;
    }
}


