/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #5b2eff;
    --indigo: #3b1cff;
    --neon-blue: #00cfff;
    --dark-bg: #0e0f1a;
    --dark-secondary: #16172d;
    --dark-tertiary: #1f2141;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--dark-bg);
    color: #e0e0e0;
    overflow-x: hidden;
}



/* Buttons */
.cta-btn {
    background: linear-gradient(135deg, var(--purple), var(--indigo));
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    box-shadow: 0 0 20px rgba(91, 46, 255, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 207, 255, 0.5);
}

.secondary-btn {
    background: transparent;
    color: var(--neon-blue);
    padding: 12px 30px;
    border: 2px solid var(--neon-blue);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background: var(--neon-blue);
    color: var(--dark-bg);
}

/* Neural Canvas */
#neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* Swiper Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-swiper {
    width: 100%;
    height: 100vh;
    z-index: 10;
}

.hero-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 50px;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 900px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(
        135deg,
        #ffffff,
        var(--neon-blue),
        var(--purple)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 100px 50px;
    background: linear-gradient(180deg, transparent, rgba(91, 46, 255, 0.05));
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffffff, var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--dark-secondary);
    border: 1px solid rgba(91, 46, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 30px rgba(0, 207, 255, 0.2);
    background: var(--dark-tertiary);
}

.feature-icon {
    font-size: 40px;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

/* Models Section */
.models-section {
    padding: 100px 50px;
    background: var(--dark-secondary);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.model-card {
    background: var(--dark-bg);
    border: 1px solid rgba(0, 207, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
    transform-style: preserve-3d;
}

.model-card:hover {
    border-color: var(--purple);
    box-shadow: 0 0 25px rgba(91, 46, 255, 0.3);
}

.model-icon {
    font-size: 45px;
    color: var(--purple);
    margin-bottom: 15px;
}

/* Battleground Section */
.battleground {
    padding: 100px 50px;
    background: linear-gradient(
        135deg,
        rgba(14, 15, 26, 1),
        rgba(91, 46, 255, 0.05)
    );
    position: relative;
    overflow: hidden;
}

.battleground-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.model-side {
    background: var(--dark-secondary);
    border: 1px solid rgba(91, 46, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-side {
    background: rgba(22, 23, 45, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 207, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.model-side::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(0, 207, 255, 0.05),
        transparent
    );
    opacity: 0;
    transition: opacity 0.5s;
}

.model-side:hover::after {
    opacity: 1;
}

.model-side.winner {
    border-color: var(--neon-blue);
    box-shadow: 0 0 50px rgba(0, 207, 255, 0.3);
    transform: scale(1.02);
}

.battle-btn {
    background: linear-gradient(135deg, var(--purple), var(--neon-blue));
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    margin-top: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(91, 46, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.battle-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 40px rgba(0, 207, 255, 0.6);
}

.battle-btn:active {
    transform: translateY(-1px);
}

.vs-divider {
    font-size: 48px;
    font-weight: 900;
    font-style: italic;
    background: linear-gradient(135deg, var(--purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
}

.metric-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 20px 0 10px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--neon-blue));
    width: 0%;
    transition: width 1.5s ease-out;
}

.battle-stats {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #a0a0a0;
}

/* Stats section */
.stats-section {
    padding: 90px 50px;
    background: linear-gradient(
        180deg,
        rgba(14, 15, 26, 0.6),
        rgba(14, 15, 26, 0.8)
    );
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    align-items: stretch;
}

.stat-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.01)
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(8px) saturate(120%);
    box-shadow:
        0 8px 30px rgba(2, 6, 23, 0.6),
        0 0 40px rgba(0, 207, 255, 0.03);
    transition:
        transform 0.35s cubic-bezier(0.2, 0.9, 0.2, 1),
        box-shadow 0.35s;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(0, 207, 255, 0.06),
            transparent 10%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(91, 46, 255, 0.04),
            transparent 8%
        );
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(0, 207, 255, 0.08);
}

.stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(0, 207, 255, 0.06),
        rgba(91, 46, 255, 0.06)
    );
    color: var(--neon-blue);
    font-size: 22px;
    border: 1px solid rgba(0, 207, 255, 0.08);
    box-shadow: 0 6px 18px rgba(0, 207, 255, 0.04) inset;
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: #dffaff;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 13px;
    color: #a8b0b8;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-top: 4px;
}

.stat-suffix {
    color: rgba(168, 176, 184, 0.85);
    font-weight: 700;
    margin-left: 6px;
}

/* Pricing Section */
.pricing {
    padding: 100px 50px;
    background: var(--dark-bg);
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    background: var(--dark-secondary);
    padding: 10px 25px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(0, 207, 255, 0.1);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-tertiary);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 207, 255, 0.5);
}

input:checked + .slider {
    background-color: var(--purple);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.toggle-label {
    font-weight: 600;
    font-size: 14px;
    color: #a0a0a0;
    transition: color 0.3s;
}

.toggle-label.active {
    color: var(--neon-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.01)
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px) saturate(120%);
    box-shadow:
        0 10px 40px rgba(2, 6, 23, 0.8),
        0 0 40px rgba(91, 46, 255, 0.03);
    transition:
        transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1),
        box-shadow 0.4s,
        border-color 0.4s;
    position: relative;
    transform-style: preserve-3d;
}

.pricing-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.pricing-card:hover {
    border-color: rgba(91, 46, 255, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(91, 46, 255, 0.1);
    transform: translateY(-10px) !important;
}

.pricing-card.featured {
    transform: scale(1.05);
    border-color: rgba(0, 207, 255, 0.3);
    box-shadow:
        0 15px 50px rgba(2, 6, 23, 0.9),
        0 0 50px rgba(0, 207, 255, 0.15);
    background: linear-gradient(
        180deg,
        rgba(0, 207, 255, 0.05),
        rgba(91, 46, 255, 0.02)
    );
}

.pricing-card.featured:hover {
    border-color: rgba(0, 207, 255, 0.6);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.9),
        0 0 70px rgba(0, 207, 255, 0.25);
    transform: scale(1.05) translateY(-10px) !important;
}

@keyframes spin360-normal {
    0% {
        transform: perspective(1000px) rotateY(0deg);
    }
    50% {
        transform: perspective(1000px) rotateY(90deg) scale(0.95);
        opacity: 0.8;
    }
    50.001% {
        transform: perspective(1000px) rotateY(-90deg) scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: perspective(1000px) rotateY(0deg);
    }
}

@keyframes spin360-featured {
    0% {
        transform: perspective(1000px) rotateY(0deg) scale(1.05);
    }
    50% {
        transform: perspective(1000px) rotateY(90deg) scale(1);
        opacity: 0.8;
    }
    50.001% {
        transform: perspective(1000px) rotateY(-90deg) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: perspective(1000px) rotateY(0deg) scale(1.05);
    }
}

.pricing-card.spin-360 {
    animation: spin360-normal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

.pricing-card.featured.spin-360 {
    animation: spin360-featured 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), var(--neon-blue));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-price {
    font-size: 48px;
    color: var(--neon-blue);
    font-weight: 700;
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    color: #b0b0b0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* CTA Section */
.cta-section {
    padding: 100px 50px;
    text-align: center;
    background: linear-gradient(135deg, var(--indigo), var(--purple));
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Swiper Customization */
.swiper-pagination-bullet {
    background: var(--neon-blue) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--neon-blue) !important;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
        /* Enhanced Battleground styling */
        .battleground {
            padding: 90px 20px;
            background: linear-gradient(
                180deg,
                rgba(14, 15, 26, 1),
                rgba(22, 23, 45, 0.85)
            );
        }
        .battleground .container {
            max-width: 1100px;
            margin: 0 auto;
        }
        .battleground-container.grid-centered {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 32px;
            justify-items: center;
        }
        .model-side.card {
            width: 100%;
            background: linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.02),
                rgba(255, 255, 255, 0.01)
            );
            border-radius: 16px;
            padding: 22px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            box-shadow: 0 12px 30px rgba(2, 6, 23, 0.6);
        }
        .model-head {
            display: flex;
            gap: 14px;
            align-items: center;
            margin-bottom: 12px;
        }
        .model-avatar {
            width: 54px;
            height: 54px;
            border-radius: 12px;
            background: rgba(91, 46, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-blue);
            font-size: 20px;
            border: 1px solid rgba(0, 207, 255, 0.06);
        }
        .model-side.card h3 {
            margin: 0;
            font-size: 18px;
            color: #dffaff;
        }
        .muted {
            color: #9aa0b1;
            font-size: 13px;
            margin: 4px 0 0;
        }
        .model-features {
            list-style: none;
            padding-left: 0;
            margin: 12px 0 18px;
            color: #bfc7d0;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .model-features li {
            font-size: 14px;
        }
        .metric-row {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 10px;
        }
        .metric-label {
            width: 90px;
            color: #9aa0b1;
            font-size: 13px;
        }
        .metric-bar {
            flex: 1;
            height: 10px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 999px;
            overflow: hidden;
        }
        .metric-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--purple), var(--neon-blue));
            width: 40%;
            transition: width 1s ease;
        }
        .metric-value {
            width: 64px;
            text-align: right;
            color: #dffaff;
            font-weight: 700;
        }
        .vs-badge {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.02),
                rgba(255, 255, 255, 0.01)
            );
            border: 1px solid rgba(0, 207, 255, 0.08);
            font-weight: 900;
            color: var(--neon-blue);
            box-shadow: 0 8px 30px rgba(0, 207, 255, 0.04);
        }
        .battleground-cta {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 22px;
            gap: 8px;
        }

        @media (max-width: 880px) {
            .battleground-container.grid-centered {
                grid-template-columns: 1fr;
                gap: 18px;
            }
            .vs-badge {
                display: none;
            }
            .battleground {
                padding: 60px 16px;
            }
        }
    .hero h1 {
        font-size: clamp(28px, 8vw, 52px);
    }

    .hero p {
        font-size: 15px;
    }

    .hero-slide {
        padding: 100px 20px 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .battleground {
        padding: 60px 20px;
    }

    .battleground-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vs-divider {
        display: none;
    }

    .stats {
        padding: 60px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-item h2 {
        font-size: 36px;
    }

    .pricing {
        padding: 60px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .features {
        padding: 60px 20px;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 42px);
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .model-side {
        padding: 24px;
    }

    .battle-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Testimonials - professional styling added */
.testimonials {
    padding: 80px 20px;
    background: var(--dark-bg);
}
.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials .section-title {
    font-size: 40px;
    text-align: center;
    color: var(--primary-light, #9fe7ff);
    margin: 0 0 30px;
    font-weight: 800;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 18px;
}
.testimonial-card {
    position: relative;
    background: var(--dark-secondary);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(3, 8, 20, 0.6);
    overflow: hidden;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
    opacity: 0;
    transform: translateY(14px);
    animation: fadeInUp 0.6s ease-out forwards;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    bottom: 18px;
    width: 6px;
    border-radius: 6px;
    background: var(--accent, var(--neon-blue));
    opacity: 0.95;
}
.testimonial-rating {
    color: #ffd166;
    font-size: 14px;
    margin-bottom: 12px;
}
.testimonial-quote {
    color: #e6eef6;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 18px;
    padding-left: 6px;
}
.testimonial-author {
    display: flex;
    align-items: center;
}
.testimonial-author .author-meta h4 {
    color: #00cfff;
    margin: 0;
    font-size: 15px;
}
.testimonial-author .author-meta p {
    color: #9aa0b1;
    margin: 4px 0 0 0;
    font-size: 13px;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(2, 8, 30, 0.7);
}

/* Staggered animation delays */
.testimonial-grid .testimonial-card:nth-child(1) {
    animation-delay: 0.08s;
}
.testimonial-grid .testimonial-card:nth-child(2) {
    animation-delay: 0.16s;
}
.testimonial-grid .testimonial-card:nth-child(3) {
    animation-delay: 0.24s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 16px;
    }
    .testimonials .section-title {
        font-size: 28px;
    }
}
