﻿:root {
    --bg-color: #050507;
    --text-color: #ffffff;
    --primary-color: #6366f1;
    /* Indigo 500 */
    --secondary-color: #a855f7;
    /* Purple 500 */
    --accent-color: #ec4899;
    /* Pink 500 */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Language Switcher */
.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    font-family: inherit;
    outline: none;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.lang-btn:active {
    transform: translateY(0);
}

.lang-icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    /* Center items vertically */
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    /* Offset for fixed header */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-cta .btn.glass {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta .btn.glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* 3D Visual Element Placeholder */
.glow-sphere {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(168, 85, 247, 0.6) 20%,
            rgba(99, 102, 241, 0.8) 40%,
            rgba(5, 5, 7, 0.8) 80%);
    border-radius: 50%;
    box-shadow:
        0 0 60px rgba(168, 85, 247, 0.4),
        0 0 120px rgba(99, 102, 241, 0.3),
        inset -20px -20px 60px rgba(0, 0, 0, 0.5);
    animation: float 10s ease-in-out infinite;
    position: relative;
    z-index: 0;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Softer border than .glass default */
    transition: transform var(--transition-speed), background var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    font-size: 0.875rem;
}

/* Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        /* Show hamburger on mobile */
    }

    .nav-links {
        display: none;
        /* Hidden by default */
    }

    /* Grid Improvements */
    .features-grid {
        grid-template-columns: 1fr;
        /* Stack features */
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 logos per row on mobile */
        gap: 2rem;
    }

    /* Hero Optimizations */
    .hero-content {
        padding: 0 1.5rem;
        /* Add horizontal padding */
        width: 100%;
        margin-top: -2rem;
        /* Pull up slightly */
    }

    .hero-title {
        font-size: 2.5rem;
        /* reduce from 4rem */
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        /* reduce from 1.25rem */
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding: 0 2rem;
    }

    .hero-cta .btn {
        width: 100%;
        /* Full width buttons */
        text-align: center;
        padding: 0.8rem;
    }

    /* Responsiveness Updates */
    .features {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Features Page Specifics */
.features-page {
    padding-top: 80px;
}

.page-header {
    text-align: center;
    padding: 100px 0 60px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
}

.feature-detail {
    padding: 80px 0;
}

.feature-detail-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.feature-detail.reverse .feature-detail-content {
    flex-direction: row;
}

.feature-text {
    flex: 1;
}

.feature-icon-lg {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-text .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list li {
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.feature-visual {
    flex: 1;
    height: 400px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visual Placeholders & Animations */
.visual-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Speed Visual */
.speed-bar {
    width: 60%;
    height: 20px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
    margin: 10px 0;
    border-radius: 10px;
    opacity: 0;
    transform: translateX(-100%);
    animation: speed-dash 2s infinite;
}

.speed-bar:nth-child(2) {
    animation-delay: 0.2s;
    width: 80%;
}

.speed-bar:nth-child(3) {
    animation-delay: 0.4s;
    width: 50%;
}

@keyframes speed-dash {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Brain Visual */
.brain-node {
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--secondary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-box {
    padding: 4rem;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {

    .feature-detail-content,
    .feature-detail.reverse .feature-detail-content {
        flex-direction: column;
        gap: 2rem;
    }

    .feature-visual {
        width: 100%;
        height: 300px;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

/* Investor Section */
.investor-section {
    padding: 80px 0;
}

.investor-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.investor-text {
    flex: 1;
}

.investor-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.investor-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.stats-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trusted By Section */
.trusted-by-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trusted-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-item {
    height: 40px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item svg {
    height: 100%;
    width: auto;
    max-width: 100%;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.logo-item:hover {
    color: white;
    transform: translateY(-2px);
}

.logo-item:hover svg {
    filter: grayscale(0%);
    fill: white;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.investor-shape {
    flex: 1;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.growth-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 200px;
    position: relative;
}

.growth-chart .bar {
    width: 30px;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 5px 5px 0 0;
    opacity: 0.8;
}

.growth-chart .bar:nth-child(1) {
    height: 40%;
    animation: grow 1s ease-out forwards;
}

.growth-chart .bar:nth-child(2) {
    height: 60%;
    animation: grow 1s ease-out 0.2s forwards;
}

.growth-chart .bar:nth-child(3) {
    height: 75%;
    animation: grow 1s ease-out 0.4s forwards;
}

.growth-chart .bar:nth-child(4) {
    height: 100%;
    animation: grow 1s ease-out 0.6s forwards;
}

@keyframes grow {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .investor-content {
        flex-direction: column;
        padding: 2rem;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }
}


/* About Page Specifics */
.about-section {
    padding: 60px 0 100px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-visual {
    flex: 1;
    height: 350px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-visual-placeholder {
    position: relative;
    width: 200px;
    height: 200px;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    animation: floating 4s ease-in-out infinite;
}

.avatar-circle:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.avatar-circle:nth-child(2) {
    bottom: 0;
    left: 0;
    animation-delay: 1s;
    background: var(--secondary-color);
}

.avatar-circle:nth-child(3) {
    bottom: 0;
    right: 0;
    animation-delay: 2s;
    background: var(--accent-color);
}

.connect-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Hiring Section */
.hiring-section {
    padding: 80px 0;
    position: relative;
}

.hiring-intro {
    max-width: 600px;
    margin: 1rem auto 4rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: left;
}

.job-card {
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.job-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-box {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 20px;
}

.email-link {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s;
}

.email-link:hover {
    opacity: 0.8;
}

.small-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0 140px;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

.testimonial-card {
    padding: 3rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.testimonial-card.glass {
    backdrop-filter: blur(10px);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    line-height: 1;
    font-family: serif;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

.stars {
    color: #ffd700;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.review-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-details .name {
    font-weight: 700;
    color: white;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.reviewer-details .role {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-visual {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Page Specifics */
.pricing-page {
    /* reuse generic page structure */
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    font-size: 1.1rem;
}

.billing-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.discount-badge {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3);
}

/* Switch Toggle Component */
.switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 36px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

input:checked+.slider {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(28px);
}

.slider.round {
    border-radius: 36px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Trial Banner */
.trial-banner {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    margin-top: 2rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    animation: fadeIn 1s ease-out;
}

.trial-banner .icon {
    font-size: 1.2rem;
}

/* Pricing Cards */
.pricing-section {
    padding: 40px 0 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: center;
}

.pricing-card {
    padding: 3.5rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.pricing-card.glass {
    backdrop-filter: blur(20px);
}

/* Popular Card Styling */
.pricing-card.popular {
    border: 1px solid rgba(99, 102, 241, 0.3);
    background: linear-gradient(145deg, rgba(99, 102, 241, 0.08), rgba(168, 85, 247, 0.05));
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.15);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
}

.price-container {
    margin: 1.5rem 0;
    height: 70px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-container .currency {
    font-size: 2rem;
    font-weight: 500;
    margin-right: 4px;
    color: rgba(255, 255, 255, 0.6);
}

.price-container .amount {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s, transform 0.3s;
}

.price-container .amount.custom {
    font-size: 3rem;
}

.price-container .period {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    margin-left: 8px;
}

.plan-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    min-height: 3rem;
    /* Align lines */
}

.plan-features {
    text-align: left;
    margin-bottom: 3rem;
    flex: 1;
    padding: 0 1rem;
}

/* Product Showcase Carousel */
.showcase-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    perspective: 1000px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 40px;
    /* More padding for side-by-side */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.slide-content {
    background: rgba(20, 20, 30, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 500px;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    /* Side-by-side on desktop */
    position: relative;
    transition: all 0.3s ease;
}

.slide-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.slide-info {
    flex: 0 0 40%;
    /* 40% width for text */
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.slide-visual {
    flex: 1;
    /* Remaining space for visual */
    position: relative;
    background: radial-gradient(circle at bottom center, rgba(30, 30, 45, 1), #050507);
    overflow: hidden;
}

.slide-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.slide-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Mobile Responsiveness for Carousel */
@media (max-width: 900px) {
    .carousel-slide {
        padding: 0 10px;
    }

    .slide-content {
        flex-direction: column-reverse;
        /* Visual on top, text on bottom */
        height: auto;
        min-height: 500px;
    }

    .slide-info {
        flex: 0 0 auto;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1.5rem;
    }

    .slide-visual {
        min-height: 250px;
    }

    .slide-info h3 {
        font-size: 1.5rem;
    }
}

/* CSS Visuals for Placeholders */
/* Analytics */
.analytics-visual .graph-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2));
    clip-path: polygon(0 100%, 0 80%, 20% 60%, 40% 70%, 60% 40%, 80% 50%, 100% 20%, 100% 100%);
}

.analytics-visual .data-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.p1 {
    left: 40%;
    top: 56%;
}

.p2 {
    left: 60%;
    top: 46%;
}

.p3 {
    left: 80%;
    top: 40%;
}

/* Code */
.code-visual {
    padding: 40px;
    font-family: monospace;
}

.code-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
    border-radius: 4px;
}

.l1 {
    width: 60%;
}

.l2 {
    width: 80%;
}

.l3 {
    width: 40%;
}

.code-suggestion {
    position: absolute;
    top: 90px;
    left: 40px;
    width: 200px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

/* Creative */
.creative-visual .art-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
}

.s1 {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    top: 20%;
    left: 20%;
    animation: float 6s infinite ease-in-out;
}

.s2 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 40%;
    right: 20%;
    animation: float 8s infinite ease-in-out reverse;
}

.s3 {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    bottom: 20%;
    left: 40%;
    animation: float 7s infinite ease-in-out 1s;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    user-select: none;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    color: black;
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 1100px) {

    .prev-btn,
    .next-btn {
        display: none;
        /* Hide arrows on smaller screens */
    }
}


.plan-features li {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.check {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Price change animation */
.price-change {
    opacity: 0;
    transform: scale(0.95);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        gap: 4rem;
        /* More space on mobile */
    }

    .pricing-card.popular {
        transform: scale(1);
        order: -1;
        margin-top: 1rem;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* Product Showcase Carousel */
.showcase-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    perspective: 1000px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    min-width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.slide-content {
    background: rgba(20, 20, 30, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 500px;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    /* Side-by-side on desktop */
    position: relative;
    transition: all 0.3s ease;
}

.slide-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.slide-info {
    flex: 0 0 40%;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.slide-visual {
    flex: 1;
    position: relative;
    background: radial-gradient(circle at bottom center, rgba(30, 30, 45, 1), #050507);
    overflow: hidden;
}

.slide-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.slide-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Mobile Responsiveness for Carousel */
@media (max-width: 900px) {
    .carousel-slide {
        padding: 0 10px;
    }

    .slide-content {
        flex-direction: column-reverse;
        /* Visual top / Text bottom on mobile */
        height: auto;
        min-height: 500px;
    }

    .slide-info {
        flex: 0 0 auto;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1.5rem;
    }

    .slide-visual {
        min-height: 250px;
    }

    .slide-info h3 {
        font-size: 1.5rem;
    }
}

/* Visuals */
.analytics-visual .graph-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2));
    clip-path: polygon(0 100%, 0 80%, 20% 60%, 40% 70%, 60% 40%, 80% 50%, 100% 20%, 100% 100%);
}

.analytics-visual .data-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.p1 {
    left: 40%;
    top: 56%;
}

.p2 {
    left: 60%;
    top: 46%;
}

.p3 {
    left: 80%;
    top: 40%;
}

.code-visual {
    padding: 40px;
    font-family: monospace;
}

.code-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
    border-radius: 4px;
}

.l1 {
    width: 60%;
}

.l2 {
    width: 80%;
}

.l3 {
    width: 40%;
}

.code-suggestion {
    position: absolute;
    top: 90px;
    left: 40px;
    width: 200px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.creative-visual .art-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
}

.s1 {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    top: 20%;
    left: 20%;
    animation: float 6s infinite ease-in-out;
}

.s2 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 40%;
    right: 20%;
    animation: float 8s infinite ease-in-out reverse;
}

.s3 {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    bottom: 20%;
    left: 40%;
    animation: float 7s infinite ease-in-out 1s;
}

/* Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    user-select: none;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    color: black;
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}


@media (max-width: 1100px) {

    .prev-btn,
    .next-btn {
        display: none;
    }
}

/* Performance Optimizations */
.features,
.trusted-by-section,
.testimonials-section,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
    contain: content;
}

/* Mobile Menu Button - Fixed */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

/* Mobile Nav State */
.nav-links.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 7, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Hamburger Animation */
.mobile-menu-btn.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(0px, -2px);
    transform-origin: center;
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.mobile-menu-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(0px, 2px);
    transform-origin: center;
}


@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
    }

    .hero-visual {
        display: none;
    }
}