﻿
/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    text-decoration: none;
    display: inline-block;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    }

    .cta-button.large {
        padding: 20px 40px;
        font-size: 1.2rem;
    }

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

    .problem-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .problem-section p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        opacity: 0.9;
    }

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: #f8fafc;
}

    .industries-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 16px;
        color: #1a1a1a;
    }

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 60px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.industry-tile {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

    .industry-tile:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        border-color: #667eea;
    }

    .industry-tile img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .industry-tile h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: #1a1a1a;
    }

    .industry-tile p {
        color: #64748b;
        line-height: 1.6;
    }

.show-more-industries {
    text-align: center;
}

.show-more-btn {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .show-more-btn:hover {
        background: #667eea;
        color: white;
    }

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

    .how-it-works h2 {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 60px;
    }

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.step-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: block;
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

    .features-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 60px;
        color: #1a1a1a;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .feature:hover {
        background: #f8fafc;
        transform: translateY(-4px);
    }

.feature-icon {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature p {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

    .testimonials-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 60px;
    }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .testimonial p {
        font-size: 1.2rem;
        font-style: italic;
        margin-bottom: 20px;
        line-height: 1.6;
    }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .testimonial-author img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testimonial-author span {
        font-weight: 600;
    }

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

    .pricing-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pricinggrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(102,126,234,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23pricinggrid)"/></svg>');
        opacity: 0.5;
    }

    .pricing-section h2 {
        font-size: 2.8rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 16px;
        color: #1a1a1a;
        position: relative;
        z-index: 1;
    }

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.toggle-label {
    font-weight: 600;
    color: #4a5568;
    font-size: 1rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cbd5e0;
    transition: 0.3s;
    border-radius: 30px;
}

    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 4px;
        bottom: 4px;
        background: white;
        transition: 0.3s;
        border-radius: 50%;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

    input:checked + .toggle-slider:before {
        transform: translateX(30px);
    }

.save-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .pricing-card.popular {
        border-color: #667eea;
        transform: scale(1.05);
    }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-8px);
        }

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

    .pricing-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 16px;
    }

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 4px;
}

.period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.pricing-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.annual-savings {
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
}

.pricing-features {
    margin-bottom: 30px;
}

    .pricing-features ul {
        list-style: none;
        padding: 0;
    }

    .pricing-features li {
        display: flex;
        align-items: center;
        padding: 8px 0;
        color: #4a5568;
        font-size: 0.95rem;
    }

.feature-icon-pricing {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.pricing-cta {
    width: 100%;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.free-cta {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

    .free-cta:hover {
        background: #667eea;
        color: white;
    }

.popular-cta {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

    .popular-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    }

.enterprise-cta {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(26, 32, 44, 0.3);
}

    .enterprise-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(26, 32, 44, 0.4);
    }

.pricing-footer {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

    .pricing-footer p {
        color: #64748b;
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

.pricing-features-note p {
    color: #4a5568;
    font-size: 0.95rem;
}

.pricing-features-note a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

    .pricing-features-note a:hover {
        text-decoration: underline;
    }

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

    .faq-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 60px;
        color: #1a1a1a;
    }

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 16px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.faq-header {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

    .faq-header:hover {
        background: #f8fafc;
        cursor: pointer;
    }

    .faq-header h3 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0;
        flex: 1;
        padding-right: 20px;
    }

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #667eea;
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-content {
    display: none;
    padding: 0 30px 24px 30px;
    background: #f8fafc;
}

    .faq-content p {
        color: #64748b;
        line-height: 1.6;
        margin: 0;
    }

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    text-align: center;
}

    .final-cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .final-cta .cta-button {
        background: white;
        color: #1a1a1a;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

        .final-cta .cta-button:hover {
            background: #f8fafc;
            color: #1a1a1a;
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

    .main-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footergrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footergrid)"/></svg>');
        opacity: 0.3;
    }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 0;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-image {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #667eea;
        }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

    .social-link:hover {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        transform: translateY(-2px);
    }

    .social-link svg {
        width: 20px;
        height: 20px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .footer-bottom-links a:hover {
            color: #667eea;
        }


@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}



.form-label {
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #cbd5e0;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: border-color 0.15s ease-in-out;
}

    .form-control:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
    }

.alert {
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-info {
    background-color: #ebf8ff;
    border-color: #bee3f8;
    color: #2c5282;
}

#planSummary {
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-primary {
    background-color: #667eea;
    border-color: #667eea;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.15s ease-in-out;
}

    .btn-primary:hover {
        background-color: #5a67d8;
        border-color: #5a67d8;
    }

.btn-secondary {
    background-color: #718096;
    border-color: #718096;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

.fa-check-circle {
    color: #48bb78;
}

/* Form Validation Styles */
.form-control:invalid {
    border-color: #e53e3e;
}

    .form-control:invalid:focus {
        border-color: #e53e3e;
        box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
    }

/* Enhanced Integration Styles */
.pricing-card.featured {
    border: 2px solid #0d6efd;
    position: relative;
    transform: scale(1.05);
}

    .pricing-card.featured::before {
        content: "Most Popular";
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: #0d6efd;
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
    }

/* Loading states */
.pricing-cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pricing-cta.loading::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Integration indicators */
.dynamic-content {
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .dynamic-content.loaded {
        opacity: 1;
    }

.error-fallback {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 20px;
        max-width: 900px;
    }

    .features-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.popular {
        transform: none;
    }

        .pricing-card.popular:hover {
            transform: translateY(-8px);
        }

    .pricing-card {
        padding: 30px 20px;
    }

    .amount {
        font-size: 2.5rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .header-nav {
        gap: 20px;
    }

    .nav-link {
        display: none;
    }

    .header-cta-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 1rem;
    }

        .cta-button.large {
            padding: 16px 32px;
            font-size: 1.1rem;
        }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .header-container {
        padding: 0 15px;
    }

    .footer-container {
        padding: 40px 15px 0;
    }

    .contact-item {
        font-size: 0.9rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.in-view {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility classes for subscription integration */
.subscription-integration {
    position: relative;
}

.subscription-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.9rem;
    border-radius: 8px;
    margin-bottom: 20px;
}

.pricing-update-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-left: 8px;
    animation: pulse 2s infinite;
}




@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.industry-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.industry-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    margin: 3% auto;
    padding: 0;
    animation: modalSlideIn 0.4s ease;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.industry-modal-close {
    position: absolute;
    top: 24px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: #64748b;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .industry-modal-close:hover {
        background: white;
        color: #1a1a1a;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

.industry-modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 40px 30px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
    border-radius: 10px 10px 0 0;
    flex-shrink: 0;
}

    .industry-modal-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

#industry-modal-body {
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding:0;
}

.industry-modal-content-wrapper {
    padding: 40px;
    flex: 1;
    overflow-y: auto;
}

.industry-modal-cta {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 30px 40px;
    text-align: center;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    border-radius: 0 0 24px 24px;
}

    .industry-modal-cta .cta-button {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
        color: white;
        border: none;
        padding: 16px 40px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
        text-decoration: none;
        display: inline-block;
    }

        .industry-modal-cta .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
        }

/* Modal Responsive */
@media (max-width: 768px) {
    .industry-modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 90vh;
    }


    .industry-modal-content-wrapper {
        padding: 30px 20px;
    }

    .industry-detail h2 {
        font-size: 1.8rem;
    }

    .industry-detail .subtitle {
        font-size: 1rem;
    }

    .industry-modal-close {
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .industry-modal-cta {
        padding: 25px 20px;
        flex-shrink: 0;
    }
}
/*.industry-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}
*/


.industry-modal-footer {
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
    border-radius: 0 0 10px 10px;
}

.industry-modal-title {
    font-weight: 600;
    color: #2d3748;
}

/* Success Modal */
.industry-modal-header.bg-success {
    background-color: #48bb78 !important;
}

.fa-check-circle {
    color: #48bb78;
}

.industry-modal-body.text-center {
    padding: 2rem;
}

.industry-modal-body .alert-info {
    text-align: left;
    background-color: #ebf8ff;
    border-color: #bee3f8;
    color: #2c5282;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

    .benefits-list li {
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        padding: 20px 24px 20px 50px;
        margin-bottom: 16px;
        border-radius: 16px;
        border: 1px solid rgba(102, 126, 234, 0.1);
        font-size: 1.05rem;
        line-height: 1.6;
        color: #4a5568;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

        .benefits-list li:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .benefits-list li:before {
            content: "✓";
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            font-weight: bold;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }
.industry-detail {
    text-align: left;
    position: relative;
}

    .industry-detail h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: white;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
        line-height: 1.2;
    }

    .industry-detail .subtitle {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
        margin-bottom: 0;
        position: relative;
        z-index: 1;
        line-height: 1.4;
    }

    .industry-detail .description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #4a5568;
        margin-bottom: 32px;
    }

    .industry-detail h3 {
        font-size: 1.6rem;
        font-weight: 600;
        color: #1a1a1a;
        margin: 32px 0 20px 0;
        position: relative;
    }

        .industry-detail h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }
