:root {
    --bg-main: #020117;
    --bg-secondary: #0b0d1a;
    --accent-purple: #4E3CFA;
    --accent-violet: #6B4EFF;
    --accent-cyan: #8B7FF8;
    --text-primary: #ffffff;
    --text-secondary: #9C9AA9;
    --text-muted: #6B697A;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── Navbar ─────────────────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 2rem;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(11, 16, 32, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-logo::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(78, 60, 250, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
    list-style: none;
}

.navbar-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
    transition: width 0.3s ease;
}

.navbar-link:hover {
    color: var(--text-primary);
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-link.active {
    color: var(--text-primary);
}

.navbar-link.active::after {
    width: 100%;
}

.navbar-link.active-pill {
    color: transparent;
    background: linear-gradient(135deg, #c3bbff 0%, #adbfff 25%, #b5adff 50%, #b79fff 75%, #aaa1ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 8px rgba(78, 60, 250, 0.8)) drop-shadow(0 0 20px rgba(78, 60, 250, 0.4));
}

.navbar-link.active-pill::after {
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgb(78 60 250 / 25%) 0%, #2b217605 46%, transparent 70%);
    box-shadow: none;
    border-radius: 50%;
    opacity: 1;
    z-index: -1;
    top: -27%;
    left: -23%;
}

.navbar-cta {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-violet));
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(78, 60, 250, 0.3);
}

.navbar-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.navbar-cta:hover::before {
    left: 0;
    width: 100%;
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(78, 60, 250, 0.5);
}

.navbar-cta:active {
    transform: translateY(0);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 968px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(11, 16, 32, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(78, 60, 250, 0.1);
    }

    .navbar-menu li:last-child {
        border-bottom: none;
        padding-top: 2rem;
    }

    .navbar-link {
        font-size: 1.1rem;
    }

    .navbar-cta {
        display: inline-block;
        width: auto;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .navbar-logo {
        font-size: 1.25rem;
    }

    .navbar-cta {
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ─── Hero ────────────────────────────────────────────────────────────── */

.hero-container {
    position: relative;
    height: 180vh;
}

.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--bg-main);
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.fog-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    opacity: 1;
    transition: filter 0.3s ease;
}

.fog-container.brightened {
    filter: brightness(1.4);
}

.fog-layer {
    position: absolute;
    width: 300%;
    height: 100%;
    bottom: -20%;
    left: 0;
}

.fog-layer-1 {
    background: radial-gradient(ellipse 80% 50% at 50% 100%,
            rgba(78, 60, 250, 0.45) 0%,
            rgba(78, 60, 250, 0.1) 30%,
            transparent 70%);
    animation: fogFlowRTL1 20s linear infinite;
}

.fog-layer-2 {
    background: radial-gradient(ellipse 60% 40% at 30% 100%,
            rgba(107, 78, 255, 0.4) 0%,
            rgba(107, 78, 255, 0.15) 40%,
            transparent 70%);
    animation: fogFlowRTL2 25s linear infinite;
}

.fog-layer-3 {
    background: radial-gradient(ellipse 70% 45% at 70% 100%,
            rgba(78, 60, 250, 0.35) 0%,
            rgba(59, 130, 246, 0.15) 35%,
            transparent 65%);
    animation: fogFlowRTL3 30s linear infinite;
}

.fog-layer-4 {
    background: radial-gradient(ellipse 100% 60% at 50% 120%,
            rgba(78, 60, 250, 0.3) 0%,
            rgba(107, 78, 255, 0.1) 50%,
            transparent 80%);
    animation: fogFlowRTL4 35s linear infinite;
}

.fog-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.fog-glow-1 {
    width: 500px;
    height: 350px;
    background: rgba(78, 60, 250, 0.5);
    bottom: -50px;
    left: 15%;
    animation: glowMove1 40s linear infinite;
}

.fog-glow-2 {
    width: 600px;
    height: 400px;
    background: rgba(107, 78, 255, 0.4);
    bottom: -80px;
    right: 10%;
    animation: glowMove2 45s linear infinite;
}

.fog-glow-3 {
    width: 400px;
    height: 300px;
    background: rgba(59, 130, 246, 0.35);
    bottom: 0;
    left: 45%;
    animation: glowMove3 50s linear infinite;
}

.content-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content-wrapper {
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(78, 60, 250, 0.05);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-purple);
    background: rgba(78, 60, 250, 0.05);
    backdrop-filter: blur(8px);
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(78, 60, 250, 0.05);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-purple);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg,
            #ffffff 0%,
            #e0e7ff 25%,
            #c7d2fe 50%,
            #a78bfa 75%,
            #4E3CFA 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
}

.subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Buttons ──────────────────────────────────────────────────────────── */

.cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.75rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-violet));
    color: white;
    box-shadow: 0 4px 20px rgba(78, 60, 250, 0.4),
        0 0 40px rgba(78, 60, 250, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(78, 60, 250, 0.5),
        0 0 60px rgba(78, 60, 250, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(78, 60, 250, 0.05);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(78, 60, 250, 0.1);
    border-color: rgba(78, 60, 250, 0.5);
    transform: translateY(-2px);
}

/* ─── Global Layout ──────────────────────────────────────────────────── */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.bg-gradient {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.glow-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-purple);
    top: 20%;
    left: -10%;
    animation: float 20s ease-in-out infinite;
}

.glow-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-violet);
    top: 60%;
    right: -5%;
    animation: float 25s ease-in-out infinite reverse;
}

.glow-orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    bottom: 10%;
    left: 40%;
    animation: float 30s ease-in-out infinite;
}

/* ─── Trusted Section ────────────────────────────────────────────────── */

.trusted-section {
    padding: 10rem 0 0;
    position: relative;
}

.trusted-header {
    text-align: center;
    margin-bottom: 6rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem 3rem;
    max-width: 1200px;
    margin: 0 auto 6rem;
}

.stat-card {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-cyan) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    opacity: 0.4;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.features-banner {
    margin: 6rem 0;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(78, 60, 250, 0.2);
    transform: translateY(-2px);
}

.feature-pill-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(78, 60, 250, 0.15), rgba(107, 78, 255, 0.15));
}

.feature-pill-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-cyan);
}

.feature-pill-content {
    flex: 1;
}

.feature-pill-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature-pill-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ─── Logo Carousel ──────────────────────────────────────────────────── */

.logos-section {
    margin-top: 8rem;
    text-align: center;
}

.logos-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: infiniteScroll 15s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
}

.logo-placeholder {
    font-size: 1.25rem;
    font-weight: 700;
    color: #bab8ca;
    padding: 1rem 2.5rem;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.logo-placeholder:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .stats-grid {
        gap: 3rem 2rem;
    }

    .features-row {
        grid-template-columns: 1fr;
    }

    .feature-pill {
        padding: 1.25rem 1.5rem;
    }
}

/* ─── Solutions Section ─────────────────────────────────────────────── */

.solutions-section {
    padding: 10rem 0 0;
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-card {
    position: relative;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg,
            rgba(78, 60, 250, 0.08) 0%,
            rgba(107, 78, 255, 0.04) 50%,
            rgba(139, 127, 248, 0.02) 100%);
    border: 1px solid rgba(78, 60, 250, 0.2);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    backdrop-filter: blur(10px);
}

.solution-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg,
            rgba(78, 60, 250, 0.15) 0%,
            rgba(107, 78, 255, 0.08) 50%,
            rgba(139, 127, 248, 0.05) 100%);
    box-shadow: 0 20px 60px rgba(78, 60, 250, 0.3),
        0 0 100px rgba(78, 60, 250, 0.2);
}

.card-illustration {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-core {
    position: relative;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(78, 60, 250, 0.4), rgba(107, 78, 255, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(78, 60, 250, 0.6),
        0 0 100px rgba(107, 78, 255, 0.4),
        inset 0 0 40px rgba(78, 60, 250, 0.3);
    animation: corePulse 3s ease-in-out infinite;
}

.core-icon svg {
    width: 56px;
    height: 56px;
    stroke: var(--text-primary);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.network-node {
    position: absolute;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(78, 60, 250, 0.3), rgba(107, 78, 255, 0.2));
    border: 2px solid rgba(78, 60, 250, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(78, 60, 250, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-node svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-cyan);
}

.network-node svg path {
    fill: var(--accent-cyan);
}

.node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: nodeFloat1 4s ease-in-out infinite;
}

.node-2 {
    top: 25%;
    right: 10px;
    animation: nodeFloat2 4.5s ease-in-out infinite;
}

.node-3 {
    bottom: 25%;
    right: 10px;
    animation: nodeFloat3 5s ease-in-out infinite;
}

.node-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: nodeFloat4 4.2s ease-in-out infinite;
}

.node-5 {
    bottom: 25%;
    left: 10px;
    animation: nodeFloat5 4.8s ease-in-out infinite;
}

.node-6 {
    top: 25%;
    left: 10px;
    animation: nodeFloat6 5.2s ease-in-out infinite;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg,
            transparent,
            rgba(78, 60, 250, 0.3),
            transparent);
    height: 1px;
    pointer-events: none;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 600;
}

.card-features li:last-child {
    border-bottom: none;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--accent-purple);
}

.card-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-card {
        padding: 2.5rem 2rem;
    }

    .card-illustration {
        width: 180px;
        height: 180px;
    }

    .illustration-core {
        width: 100px;
        height: 100px;
    }

    .core-icon svg {
        width: 48px;
        height: 48px;
    }
}

/* ─── Testimonials Section ──────────────────────────────────────────── */

.testimonials-section {
    padding: 10rem 0 0;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 8rem;
}

.testimonials-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
}

.testimonial-arc {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 250px;
    pointer-events: none;
    z-index: 5;
}

.testimonial-arc svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 30px rgba(78, 60, 250, 0.8));
    opacity: 0;
}

.testimonial-arc::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 200px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(78, 60, 250, 0.3) 20%,
            rgba(107, 78, 255, 0.5) 50%,
            rgba(78, 60, 250, 0.3) 80%,
            transparent 100%);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.9;
}

.testimonial-avatar-wrapper {
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.testimonial-avatar-large {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 6px solid var(--bg-main);
    box-shadow: 0 0 0 3px rgba(78, 60, 250, 0.4),
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(78, 60, 250, 0.5);
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2.5rem;
    color: white;
}

.testimonial-avatar-large img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonials-track {
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 6.5rem 4rem 4rem;
    text-align: center;
    position: relative;
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.star-icon {
    color: #FFD700;
    font-size: 1.5rem;
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author-pills {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.author-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.author-pill.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-purple);
    opacity: 1;
    color: var(--text-primary);
}

.author-name-display {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.author-title-display {
    color: var(--text-secondary);
    font-size: 1rem;
}

.author-company {
    color: var(--accent-cyan);
    font-weight: 600;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(78, 60, 250, 0.25);
    border-color: var(--accent-purple);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(78, 60, 250, 0.4);
}

.carousel-nav svg {
    width: 28px;
    height: 28px;
    stroke: var(--text-primary);
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

@media (max-width: 968px) {
    .testimonials-carousel {
        padding: 0 70px;
    }

    .testimonial-card {
        padding: 5rem 2rem 3rem;
    }

    .testimonial-quote {
        font-size: 1.35rem;
    }

    .testimonial-arc {
        width: 500px;
        height: 180px;
    }

    .carousel-nav {
        width: 48px;
        height: 48px;
    }

    .carousel-nav svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 640px) {
    .testimonials-carousel {
        padding: 0 50px;
    }

    .testimonial-card {
        padding: 5rem 1.5rem 2.5rem;
    }

    .testimonial-quote {
        font-size: 1.125rem;
    }

    .testimonial-avatar-large {
        width: 88px;
        height: 88px;
        font-size: 2rem;
    }

    .author-pill {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }
}

/* ─── Coming Soon Section ────────────────────────────────────────────── */

.coming-soon-section {
    padding: 10rem 0 0;
    position: relative;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.coming-soon-card {
    position: relative;
    padding: 2rem 1.75rem;
    background: linear-gradient(135deg,
            rgba(78, 60, 250, 0.06) 0%,
            rgba(107, 78, 255, 0.03) 100%);
    border: 1.5px dashed rgba(78, 60, 250, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.coming-soon-card:hover {
    background: linear-gradient(135deg,
            rgba(78, 60, 250, 0.12) 0%,
            rgba(107, 78, 255, 0.06) 100%);
    border-color: rgba(78, 60, 250, 0.4);
    border-style: solid;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(78, 60, 250, 0.15);
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    background: rgba(78, 60, 250, 0.15);
    border: 1px solid rgba(78, 60, 250, 0.3);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.coming-soon-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.coming-soon-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-secondary);
}

.coming-soon-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.coming-soon-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── CTA Section ────────────────────────────────────────────────────── */

.cta-section {
    padding: 10rem 0;
    position: relative;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-main-card {
    position: relative;
    background: linear-gradient(135deg,
            rgba(78, 60, 250, 0.1) 0%,
            rgba(107, 78, 255, 0.05) 100%);
    border: 1px solid rgba(78, 60, 250, 0.2);
    border-radius: 24px;
    padding: 4rem 3rem;
    overflow: hidden;
}

.cta-main-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%,
            rgba(78, 60, 250, 0.15),
            transparent 60%);
    pointer-events: none;
}

.cta-content-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text-content {
    max-width: 500px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.contact-item:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(78, 60, 250, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-cyan);
}

.contact-item-text {
    font-size: 1rem;
    font-weight: 500;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-violet));
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(78, 60, 250, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 15px 50px rgba(78, 60, 250, 0.6);
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

.trust-badges-compact {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.trust-badge-compact {
    text-align: center;
}

.badge-value-compact {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.badge-value-compact.cyan {
    color: var(--accent-cyan);
}

.badge-value-compact.magenta {
    color: var(--accent-violet);
}

.badge-value-compact.lime {
    color: #8B7FF8;
}

.badge-label-compact {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 968px) {
    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-text-content {
        max-width: 100%;
    }

    .cta-main-card {
        padding: 3rem 2rem;
    }

    .trust-badges-compact {
        gap: 1.5rem;
    }
}

/* ─── Footer ─────────────────────────────────────────────────────────── */

.footer {
    background: rgba(11, 13, 26, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
    backdrop-filter: blur(10px);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(78, 60, 250, 0.2);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-secondary);
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-cyan);
    transform: translateX(3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--text-secondary);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ─── Keyframes ──────────────────────────────────────────────────────── */

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes corePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(78, 60, 250, 0.6), 0 0 100px rgba(107, 78, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(78, 60, 250, 0.8), 0 0 120px rgba(107, 78, 255, 0.6);
    }
}

@keyframes fogFlowRTL1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

@keyframes fogFlowRTL2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

@keyframes fogFlowRTL3 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

@keyframes fogFlowRTL4 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

@keyframes glowMove1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100vw); }
}

@keyframes glowMove2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100vw); }
}

@keyframes glowMove3 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100vw); }
}

@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes nodeFloat1 {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -8px); }
}

@keyframes nodeFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, -5px); }
}

@keyframes nodeFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5px, 5px); }
}

@keyframes nodeFloat4 {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

@keyframes nodeFloat5 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5px, 5px); }
}

@keyframes nodeFloat6 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-5px, -5px); }
}


/* ─── Contact Modal ───────────────────────────────────────────────────── */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 20, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    position: relative;
    background: linear-gradient(135deg,
        rgba(78, 60, 250, 0.12) 0%,
        rgba(11, 13, 26, 0.98) 60%);
    border: 1px solid rgba(78, 60, 250, 0.25);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    scrollbar-width: none;
}

.modal-card::-webkit-scrollbar { display: none; }

.modal-overlay.open .modal-card {
    transform: scale(1) translateY(0);
}

.modal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%,
        rgba(78, 60, 250, 0.18),
        transparent 60%);
    border-radius: 24px;
    pointer-events: none;
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-secondary);
    z-index: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.modal-close svg { width: 16px; height: 16px; }

.modal-header {
    margin-bottom: 2rem;
    position: relative;
}

.modal-header .badge {
    margin-bottom: 1rem;
}

.modal-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── Form ────────────────────────────────────────────────────────────── */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.form-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.6rem .75rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    width: 100%;
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
    border-color: rgba(110, 78, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(110, 78, 255, 0.12), 0 0 16px rgba(110, 78, 255, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ─── Success State ───────────────────────────────────────────────────── */

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    gap: 1rem;
    position: relative;
}

.form-success.visible { display: flex; }

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(78, 60, 250, 0.2), rgba(110, 78, 255, 0.15));
    border: 1px solid rgba(110, 78, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 24px rgba(110, 78, 255, 0.3);
}

.success-icon svg {
    width: 28px;
    height: 28px;
    stroke: #8B7FF8;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.success-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 360px;
}

.form-input.input-error {
    border-color: rgba(255, 80, 80, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 80, 80, 0.1);
}

.form-error {
    font-size: 0.8rem;
    color: #ff6b6b;
    margin-top: 0.1rem;
}

/* ─── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 600px) {
    .modal-card { padding: 1.25rem 1.25rem;
    border-radius: 16px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ─── Scrollbar ───────────────────────────────────────────────────────── */

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(110, 78, 255, 0.4) transparent;
}

/* Chrome / Safari / Edge */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(110, 78, 255, 0.3);
    border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(110, 78, 255, 0.5);
}

* {
    scrollbar-width: none;
}

::-webkit-scrollbar {
    display: none;
}