﻿:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --accent: #f59e0b;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --success: #10b981;
    --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter'), local('Inter-Regular');
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Critical Above-Fold Styles */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        color: var(--light);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 5% 4rem;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

    .hero-content h1 span {
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
    }

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

    .btn-secondary:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-2px);
    }

.hero-visual {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(99, 102, 241, 0.3));
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .cta-group {
        justify-content: center;
    }
}


/* General Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-dark {
    background: rgba(255,255,255,0.02);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .section-header p {
        color: var(--gray);
        font-size: 1.125rem;
    }

/* Stats Section (NEW) */
.stats-section {
    background: var(--gradient);
    padding: 4rem 0;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    display: inline;
    margin-left: 0.25rem;
}

.stat-label {
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Feature Showcase */
.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

    .feature-showcase.reverse {
        direction: rtl;
    }

        .feature-showcase.reverse > * {
            direction: ltr;
        }

.showcase-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.showcase-content p {
    color: var(--gray);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--light);
    }

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.integration-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.integration-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    font-size: 0.875rem;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Comparison Table (NEW) */
.comparison-table-wrapper {
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    overflow-x: auto;
}

.comparison-table {
    display: grid;
    gap: 0.5rem;
    min-width: 900px;
}

.table-header, .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
}

.table-header {
    font-weight: 700;
    color: var(--gray);
    border-bottom: 2px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table-row {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s;
}

    .table-row:hover {
        background: rgba(255,255,255,0.02);
    }

.feature-col {
    font-weight: 600;
    color: var(--light);
}

.competitor-col {
    color: var(--gray);
    font-size: 0.9rem;
}

.softize-col {
    color: var(--light);
    font-weight: 600;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.check-mark {
    color: var(--success);
    font-weight: 700;
    margin-right: 0.25rem;
}

    .check-mark.highlight {
        color: #34d399;
    }

.x-mark {
    color: #ef4444;
    margin-right: 0.25rem;
}

.comparison-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

    .comparison-cta p {
        color: var(--gray);
        margin-bottom: 1rem;
    }

@media (max-width: 968px) {
    .table-header, .table-row {
/*        grid-template-columns: 1fr;
*/        gap: 0.5rem;
    }
    .table-row {
        padding: 1.5rem;
    }

    .feature-col {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .competitor-col, .softize-col {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem;
    }

        .competitor-col::before, .softize-col::before {
            content: attr(data-label);
            font-weight: 600;
            color: var(--gray);
        }
}
/* Contact Form Section (NEW) */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

    .contact-benefits li {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

        .contact-benefits li > div {
            display: flex;
            flex-direction: column;
        }

    .contact-benefits strong {
        color: var(--light);
        font-weight: 600;
    }

    .contact-benefits span {
        color: var(--gray);
        font-size: 0.9rem;
    }

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

    .contact-method:hover {
        color: var(--primary);
    }

.contact-form {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: var(--light);
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.875rem 1rem;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: var(--radius);
        color: var(--light);
        font-size: 1rem;
        transition: all 0.3s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--gray);
        }

    .form-group select {
        cursor: pointer;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1.5rem;
        padding-right: 3rem;
    }

        .form-group select option {
            background: var(--dark);
            color: var(--light);
        }

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray);
}

    .checkbox-label input {
        display: none;
    }

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.checkbox-label input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

    .checkbox-label input:checked + .checkmark::after {
        content: '✓';
        color: white;
        font-size: 12px;
        font-weight: 700;
    }

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 1rem;
}

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
/*NEW CSS*/
/* Updated/Additional CSS */

.pricing-calculator {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.calculator-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

    .calculator-card h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

.input-group {
    margin-bottom: 2rem;
}

    .input-group label {
        display: block;
        margin-bottom: 0.75rem;
        font-weight: 500;
        color: var(--gray);
    }

    .input-group input[type="range"] {
        width: 100%;
        height: 6px;
        background: rgba(255,255,255,0.1);
        border-radius: 3px;
        outline: none;
        -webkit-appearance: none;
    }

        .input-group input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            background: var(--gradient);
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
        }

.input-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray);
}

    .input-values .highlight {
        color: var(--primary);
        font-weight: 600;
        font-size: 1.25rem;
    }

.pricing-toggles {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--light);
}

    .toggle input {
        display: none;
    }

.toggle-slider {
    width: 44px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    position: relative;
    transition: background 0.3s;
    flex-shrink: 0;
}

    .toggle-slider::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 20px;
        height: 20px;
        background: white;
        border-radius: 50%;
        transition: transform 0.3s;
    }

.toggle input:checked + .toggle-slider {
    background: var(--secondary);
}

    .toggle input:checked + .toggle-slider::after {
        transform: translateX(20px);
    }

/* Pricing  */
.result-display {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.result-item {
    text-align: center;
}

.result-label {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.conversation-value {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.result-rate {
    font-size: 0.8rem;
    color: var(--gray);
}

.result-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 1.5rem 0;
}

.international-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--accent);
}

    .international-notice svg {
        flex-shrink: 0;
    }

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 968px) {
    .pricing-calculator {
        grid-template-columns: 1fr;
    }
}
/* Pricing */

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.pricing-features {
    padding: 2rem;
}

    .pricing-features h4 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .pricing-features ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--gray);
    }

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    overflow: hidden;
}

    .faq-item summary {
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        list-style: none;
        transition: background 0.3s;
    }

        .faq-item summary:hover {
            background: rgba(255,255,255,0.02);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

.chevron {
    transition: transform 0.3s;
    color: var(--gray);
}

.faq-item[open] .chevron {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
}

.cta-card {
    background: var(--gradient);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 20px 20px;
        opacity: 0.3;
    }

    .cta-card > * {
        position: relative;
        z-index: 1;
    }

    .cta-card h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-card p {
        font-size: 1.25rem;
        opacity: 0.9;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-card .btn-secondary {
        background: rgba(255,255,255,0.2);
        border-color: rgba(255,255,255,0.3);
    }

        .cta-card .btn-secondary:hover {
            background: rgba(255,255,255,0.3);
        }

/* Footer */
.footer {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--gray);
    margin: 1rem 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s;
}

    .social-link:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
    }

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

    .footer-links a:hover {
        color: var(--primary);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 0.875rem;
}

/* Exit Intent Popup (NEW) */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
}

.exit-popup-content {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    animation: popupSlide 0.3s ease;
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--gray);
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

    .exit-popup-close:hover {
        background: rgba(255,255,255,0.1);
        color: var(--light);
    }

.exit-popup-body {
    text-align: center;
}

.exit-popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.exit-popup h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.exit-popup-subtitle {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.exit-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

    .exit-input:focus {
        outline: none;
        border-color: var(--primary);
    }

.exit-popup-note {
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 1rem;
}

.exit-decline {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 1.5rem;
    text-decoration: underline;
    transition: color 0.3s;
}

    .exit-decline:hover {
        color: var(--light);
    }

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Mobile Responsive */
@media (max-width: 968px) {
    .feature-showcase, .pricing-calculator, .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

        .feature-showcase.reverse {
            direction: ltr;
        }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-card h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .pricing-toggles {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}





