/* ============================================================
   TECHIONIC - VIP Website CSS
   Dark Purple Theme | Glassmorphism | Animations | Responsive
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
/*:root {*/
/*    --primary:        #7c3aed;*/
/*    --primary-light:  #a78bfa;*/
/*    --primary-dark:   #5b21b6;*/
/*    --primary-glow:   rgba(124, 58, 237, 0.35);*/
/*    --secondary:      #06b6d4;*/
/*    --secondary-glow: rgba(6, 182, 212, 0.3);*/
/*    --accent:         #f59e0b;*/

/* Dark palette */
/*    --bg-base:     #080b14;*/
/*    --bg-surface:  #0d1120;*/
/*    --bg-card:     #121929;*/
/*    --bg-card2:    #0f1622;*/
/*    --border:      rgba(124, 58, 237, 0.15);*/
/*    --border-soft: rgba(255, 255, 255, 0.06);*/

:root {
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #5b21b6;
    --primary-glow: rgba(124, 58, 237, 0.35);
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.3);
    --accent: #f59e0b;

    /* Blackish-purple dark palette */
    --bg-base: #020005;
    /* Solid obsidian pitch black base background */
    --bg-surface: #05030b;
    /* Deepest plum-black surface background for sections */
    --bg-card: #0c0818;
    /* Card backgrounds — dark plum-black */
    --bg-card2: #09060f;
    --border: rgba(109, 40, 217, 0.18);
    --border-soft: rgba(255, 255, 255, 0.05);

    /* Text */
    --text-primary: #ede9fe;
    --text-secondary: #8b7aaa;
    --text-muted: #5b4f75;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #6d28d9 0%, #4f46e5 60%, #06b6d4 100%);
    --grad-purple: linear-gradient(135deg, #4c1d95 0%, #6d28d9 50%, #9d71f5 100%);
    --grad-hero: radial-gradient(ellipse at top left, rgba(109, 40, 217, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(79, 70, 229, 0.12) 0%, transparent 60%);
    --grad-card: linear-gradient(145deg, rgba(109, 40, 217, 0.1), rgba(79, 70, 229, 0.05));
    --grad-text: linear-gradient(135deg, #9d71f5, #818cf8, #06b6d4);

    /* Shadows */
    --shadow-purple: 0 0 50px rgba(109, 40, 217, 0.3);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 70px rgba(109, 40, 217, 0.25);

    /* Spacing */
    --section-py: clamp(5rem, 10vw, 8rem);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Typography */
    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
    background: var(--bg-base);
    overflow-x: hidden;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-title {
    font-size: clamp(1.9rem, 3.8vw, 3rem) !important;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

/* ── SELECTION ── */
::selection {
    background: var(--primary);
    color: #fff;
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--grad-primary);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ── CURSOR ── */
.cursor-outer {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(124, 58, 237, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-inner {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease, height 0.15s ease;
}

.cursor-hover .cursor-outer {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--primary);
}

.cursor-hover .cursor-inner {
    width: 4px;
    height: 4px;
}

/* ── Hide custom cursor on touch/coarse-pointer devices (mobile, tablet, touchscreen) ── */
@media (pointer: coarse) {

    .cursor-outer,
    .cursor-inner {
        display: none !important;
    }

    /* Restore the default system cursor everywhere */
    *,
    a,
    button,
    [role="button"] {
        cursor: auto !important;
    }

    a,
    button,
    [role="button"],
    .tab-btn,
    .testi-btn,
    .quick-reply,
    .faq-question,
    .mobile-menu-btn {
        cursor: pointer !important;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* DISABLE THE CHATBOT ON MOBILE COMPLETELY */
    .chatbot-widget {
        display: none !important;
    }

    .back-to-top {
        bottom: 1.5rem !important;
        right: 1.5rem !important;
    }
}

/* ── PRELOADER ── */
/*#preloader {*/
/*    position: fixed;*/
/*    inset: 0;*/
/*    z-index: 99998;*/
/*    background: var(--bg-base);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    transition: opacity 0.6s ease, visibility 0.6s ease;*/
/*}*/

/*#preloader.loaded {*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    pointer-events: none;*/
/*}*/

/*.preloader-inner {*/
/*    text-align: center;*/
/*}*/

/*.preloader-wordmark {*/
/*    font-family: var(--font-display);*/
/*    font-size: 3rem;*/
/*    font-weight: 800;*/
/*    letter-spacing: -0.04em;*/
/*    background: var(--grad-primary);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    background-clip: text;*/
/*    margin-bottom: 2rem;*/
/*    animation: fadeSlideUp 0.8s ease-out both;*/
/*}*/

/*.preloader-bar {*/
/*    width: 220px;*/
/*    height: 3px;*/
/*    background: rgba(255, 255, 255, 0.07);*/
/*    border-radius: var(--radius-full);*/
/*    overflow: hidden;*/
/*    margin: 0 auto;*/
/*}*/

/*.preloader-fill {*/
/*    height: 100%;*/
/*    background: var(--grad-primary);*/
/*    border-radius: var(--radius-full);*/
/*    animation: barFill 1.8s ease-out forwards;*/
/*}*/

/*@keyframes barFill {*/
/*    from {*/
/*        width: 0;*/
/*    }*/

/*    to {*/
/*        width: 100%;*/
/*    }*/
/*}*/

/* ── PRELOADER (GRAVITY WAVE DROP) ── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Transitions both the drop speed and the fluid shape */
    transition: transform 1.2s cubic-bezier(0.7, 0, 0.2, 1), border-radius 1.2s cubic-bezier(0.7, 0, 0.2, 1);
    border-radius: 0 0 0 0;
    /* Flat edge while loading */
}

/* The glowing energy surface at the very top of the screen */
#preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primary);
    box-shadow: 0 0 40px var(--primary-glow), 0 0 20px rgba(6, 182, 212, 0.6);
}

#preloader.loaded {
    /* The whole screen drops down like heavy gravity */
    transform: translateY(100vh);
    /* Creates a fluid, water-drop curve at the top edge as it falls */
    border-radius: 50% 50% 0 0 / 150px 150px 0 0;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* The logo fades and floats UP as the heavy liquid drops DOWN */
#preloader.loaded .preloader-inner {
    opacity: 0;
    transform: translateY(-50px);
}

.preloader-wordmark {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.preloader-bar {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.preloader-fill {
    height: 100%;
    background: var(--grad-primary);
    border-radius: var(--radius-full);
    animation: barFill 1.8s ease-out forwards;
}

@keyframes barFill {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════
   THE WOW FACTOR: INFINITE CYBERNETIC GRID
═══════════════════════════════════════════════ */
.wow-motion-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    /* Stays strictly in the background */
    overflow: hidden;
    perspective: 1200px;
    /* Creates the deep 3D space */
}

/* 1. The Endless 3D Floor */
.infinite-grid {
    position: absolute;
    width: 200vw;
    height: 200vh;
    top: -10vh;
    left: -50vw;
    /* Draws the high-tech glowing lines */
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.08) 1px, transparent 1px);
    background-size: 90px 90px;

    /* Tilts the grid backward to create a floor receding into the distance */
    transform-origin: top center;
    transform: rotateX(70deg) translateY(0);

    /* Endlessly moves the grid forward */
    animation: gridTravel 4s linear infinite;

    /* Fades the grid out beautifully in a circle so it vanishes into the darkness */
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 65%);
}

/* This math moves the grid exactly one square perfectly, creating an infinite loop */
@keyframes gridTravel {
    0% {
        transform: rotateX(70deg) translateY(0);
    }

    100% {
        transform: rotateX(70deg) translateY(90px);
    }
}



/* 2. The High-Tech Radar Sweep */
.radar-sweep {
    position: absolute;
    width: 200vw;
    height: 15vh;
    /* Deep cyan glowing beam */
    background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.08), rgba(6, 182, 212, 0.15), transparent);
    top: -20vh;
    left: -50vw;
    transform: rotate(-20deg);
    animation: radarScan 14s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    filter: blur(25px);
}

/* Sweeps across the screen and vanishes */
@keyframes radarScan {
    0% {
        transform: rotate(-20deg) translateY(-30vh);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        transform: rotate(-20deg) translateY(180vh);
        opacity: 0;
    }
}

/* ── CONTAINER ── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
}

/* ── SECTION BASE ── */
.section {
    padding: var(--section-py) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--primary-light);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-display);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ── GRADIENT TEXT ── */
.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--primary-glow);
}

.btn-glow {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px var(--primary-glow);
    }

    50% {
        box-shadow: 0 4px 40px rgba(124, 58, 237, 0.55), 0 0 80px rgba(124, 58, 237, 0.2);
    }
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(124, 58, 237, 0.5);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: var(--primary-dark);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

/* ── NAVBAR ── */
.navbar {
    position: absolute;
    /* Changed from fixed to absolute so it scrolls out of view */
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1200px;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(10, 6, 22, 0.4) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(168, 85, 247, 0.16) !important;
    border-radius: 100px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
}

.navbar.scrolled {
    /* Scrolled state kept identical to main navbar since it's no longer sticky */
    top: 1.5rem;
    width: calc(100% - 3rem);
    background: rgba(10, 6, 22, 0.4) !important;
    border-color: rgba(168, 85, 247, 0.16) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4) !important;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem clamp(1.5rem, 4vw, 2.5rem);
    max-width: 100%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* ── WORDMARK LOGO ── */
/*.wordmark-logo {*/
/*    font-family: var(--font-display);*/
/*    font-size: 1.6rem;*/
/*    font-weight: 800;*/
/*    letter-spacing: -0.04em;*/
/*    background: var(--grad-primary);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    background-clip: text;*/
/*    transition: opacity 0.3s ease;*/
/*}*/

.wordmark-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    /* High-contrast silver/platinum metallic gradient */
    background: linear-gradient(90deg, #8a9ab0 0%, #ffffff 25%, #4a5568 50%, #ffffff 75%, #8a9ab0 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
    animation: chromeSweep 4s linear infinite;
}

.wordmark-logo:hover {
    opacity: 0.85;
}

/* Keyframes to cycle the gradient position creating the sweep effect */
@keyframes chromeSweep {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}


.wordmark-logo:hover {
    opacity: 0.85;
}

/*.wordmark-footer {*/
/*    font-size: 2rem;*/
/*    display: inline-block;*/
/*    margin-bottom: 0.75rem;*/
/*}*/

 .wordmark-footer {
     font-size: 2rem;
     display: inline-block;
     /*margin-bottom: 0.75rem;*/
     margin-bottom: 0 !important;
 }


.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--grad-primary);
    border-radius: var(--radius-full);
    transition: width 0.35s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 2, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu ul {
    text-align: center;
    list-style: none;
}

.mobile-menu li {
    margin: 0.75rem 0;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--primary-light);
}

/* ── HERO SECTION ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-base);
    padding-top: 160px;
    /* Increased top padding to guarantee a clean gap below the absolute navbar */
    padding-bottom: 4rem;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

/* Grid overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(109, 40, 217, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109, 40, 217, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

/* Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbDrift ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: clamp(400px, 50vw, 700px);
    height: clamp(400px, 50vw, 700px);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.28) 0%, rgba(124, 58, 237, 0.12) 40%, rgba(6, 182, 212, 0.05) 75%, transparent 100%);
    top: -20%;
    left: -15%;
    animation-duration: 18s;
}

.orb-2 {
    width: clamp(300px, 40vw, 500px);
    height: clamp(300px, 40vw, 500px);
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(79, 70, 229, 0.08) 50%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-duration: 22s;
    animation-delay: -7s;
}

.orb-3 {
    width: clamp(200px, 30vw, 350px);
    height: clamp(200px, 30vw, 350px);
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, rgba(168, 85, 247, 0.05) 50%, transparent 70%);
    top: 50%;
    left: 40%;
    animation-duration: 25s;
    animation-delay: -12s;
}

@keyframes orbDrift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.97);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

/* Hero Content */
.hero-content {
    animation: fadeSlideUp 0.9s ease-out both;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    animation: fadeSlideUp 0.9s ease-out 0.1s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.9s ease-out 0.2s both;
    color: var(--text-primary);
    line-height: 1.1;
}

/* Typewriter */
.typewrite .wrap {
    border-right: 0.08em solid var(--primary-light);
    padding-right: 4px;
    animation: blinkCaret 0.75s step-end infinite;
    color: transparent;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    min-height: 1.15em;
    display: inline-block;
}

@keyframes blinkCaret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--primary-light);
    }
}

.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    max-width: 520px;
    animation: fadeSlideUp 0.9s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 0.9s ease-out 0.4s both;
}

/* Trust line */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeSlideUp 0.9s ease-out 0.5s both;
}

.trust-avatars {
    display: flex;
    margin-right: 0.25rem;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid var(--bg-base);
    color: #fff;
    margin-left: -8px;
    font-family: var(--font-display);
}

.avatar:first-child {
    margin-left: 0;
}

.av-1 {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.av-2 {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.av-3 {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.av-4 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-text strong {
    color: var(--text-primary);
    display: block;
}

.stars {
    color: #f59e0b;
    font-size: 0.85rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeSlideLeft 1s ease-out 0.3s both;
}

.hero-dashboard {
    position: relative;
}

.dashboard-main {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: floatMain 6s ease-in-out infinite;
}

@keyframes floatMain {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-soft);
}

.dash-dots {
    display: flex;
    gap: 5px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dash-dots span:nth-child(1) {
    background: #ff5f57;
}

.dash-dots span:nth-child(2) {
    background: #febc2e;
}

.dash-dots span:nth-child(3) {
    background: #28c840;
}

.dash-title {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    flex: 1;
}

.dash-status {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
}

.dash-status.live {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    animation: pulseDot 2s ease-in-out infinite;
}

/* Graph */
.dash-graph {
    position: relative;
    height: 120px;
    margin-bottom: 1.25rem;
}

.graph-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100%;
    padding-bottom: 30px;
}

.bar {
    flex: 1;
    height: var(--h);
    border-radius: 4px 4px 0 0;
    background: rgba(124, 58, 237, 0.15);
    position: relative;
    overflow: hidden;
    transition: height 0.3s ease;
}

.bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.5), rgba(124, 58, 237, 0.2));
    border-radius: 4px 4px 0 0;
    animation: barGrow 1.5s ease-out forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes barGrow {
    from {
        height: 0;
    }

    to {
        height: 100%;
    }
}

.graph-line {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    height: 80px;
}

.graph-line svg {
    width: 100%;
    height: 100%;
}

.line-path {
    stroke-dasharray: 700;
    stroke-dashoffset: 700;
    animation: drawLine 2s ease-out 0.5s forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.dash-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.dash-stat {
    text-align: center;
    padding: 0.75rem;
    background: rgba(124, 58, 237, 0.07);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.dash-stat-val {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dash-stat-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.15rem;
}

/* Floating cards */
.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(13, 17, 32, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
    min-width: 180px;
    white-space: nowrap;
}

.float-card-1 {
    top: -12%;
    right: -12%;
    animation: floatCard 5s ease-in-out infinite;
}

.float-card-2 {
    bottom: 20%;
    left: -14%;
    animation: floatCard 7s ease-in-out infinite reverse;
}

.float-card-3 {
    bottom: -8%;
    right: 5%;
    animation: floatCard 6s ease-in-out infinite 2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

.fc-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.fc-icon.fc-green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.fc-icon.fc-cyan {
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
}

.fc-content {
    display: flex;
    flex-direction: column;
}

.fc-title {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
}

.fc-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeSlideUp 1s ease-out 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(124, 58, 237, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-display);
}

/* ── LOGOS MARQUEE ── */
.logos-section {
    padding: 2.5rem 0;
    background: rgba(8, 5, 16, 0.6);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
}

.logos-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.marquee-track {
    overflow: hidden;
    position: relative;
}

.marquee-track::before,
.marquee-track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-track::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-base), transparent);
}

.marquee-track::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-base), transparent);
}

.marquee-content {
    display: flex;
    gap: 2.5rem;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.4rem;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: var(--transition);
}

.logo-item:hover {
    background: rgba(124, 58, 237, 0.12);
    color: var(--primary-light);
    border-color: rgba(124, 58, 237, 0.4);
}

.logo-item i {
    font-size: 1.1rem;
    color: var(--primary-light);
}

/* ── STATS SECTION ── */
.stats-section {
    padding: var(--section-py) 0;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.stats-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.stats-orb-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(79, 70, 229, 0.06) 45%, transparent 70%);
    top: -200px;
    left: -100px;
    border-radius: 50%;
    animation: orbDrift 20s ease-in-out infinite;
}

.stats-orb-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(124, 58, 237, 0.05) 50%, transparent 70%);
    bottom: -150px;
    right: -50px;
    border-radius: 50%;
    animation: orbDrift 25s ease-in-out infinite reverse;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-card);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: var(--shadow-purple);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: rgba(124, 58, 237, 0.25);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px var(--primary-glow);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.stat-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ── SERVICES SECTION ── */
.services-section {
    background: var(--bg-base);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.12), transparent 60%);
    pointer-events: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: var(--shadow-purple), var(--shadow-card);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: var(--grad-primary);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px var(--primary-glow);
    border-color: transparent;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    flex: 1;
    position: relative;
    z-index: 1;
}

.service-features {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.service-features i {
    color: #22c55e;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-light);
    transition: var(--transition);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ── SHOWCASE SECTION ── */
.showcase-section {
    background: var(--bg-surface);
}

.showcase-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.showcase-orb-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(236, 72, 153, 0.06) 50%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: orbDrift 20s ease-in-out infinite;
}

.showcase-orb-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(79, 70, 229, 0.05) 50%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation: orbDrift 25s ease-in-out infinite reverse;
}

.tab-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: rgba(124, 58, 237, 0.4);
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.08);
}

.tab-btn.active {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.tab-panel {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tab-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tab-text p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.tab-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.tab-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tf-icon {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.tab-features li div strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.tab-features li div {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Mock screens */
.tab-visual {
    position: relative;
}

.mock-screen {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
}

.mock-header {
    display: flex;
    gap: 6px;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-soft);
}

.mock-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mock-header span:nth-child(1) {
    background: #ff5f57;
}

.mock-header span:nth-child(2) {
    background: #febc2e;
}

.mock-header span:nth-child(3) {
    background: #28c840;
}

/* Chat UI */
.mock-chat {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 220px;
}

.chat-msg {
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
}

.chat-msg.user {
    flex-direction: row-reverse;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.bot-av {
    background: rgba(124, 58, 237, 0.2);
    color: var(--primary-light);
}

.user-av {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
}

.chat-bubble {
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    color: var(--text-secondary);
    max-width: 70%;
    animation: bubbleIn 0.4s ease;
}

@keyframes bubbleIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chat-msg:nth-child(2) .chat-bubble {
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.chat-msg:nth-child(3) .chat-bubble {
    animation-delay: 1s;
    animation-fill-mode: both;
}

.user-bubble {
    background: rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.2);
    color: var(--text-primary);
}

.typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.85rem 1rem;
    min-width: 60px;
}

.typing span {
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingDot 1.2s ease-in-out infinite;
}

.typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

/* Analytics mock */
.analytics-grid {
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 0.75rem;
}

.a-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.a-card-big {
    grid-row: span 2;
}

.a-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.a-val {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.a-card-big .a-val {
    font-size: 2rem;
}

.a-trend {
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.a-trend.up {
    color: #22c55e;
}

.a-trend.down {
    color: #22c55e;
}

/* Security mock */
.security-display {
    padding: 2rem;
    text-align: center;
}

.sec-shield {
    font-size: 3.5rem;
    color: #22c55e;
    margin-bottom: 0.75rem;
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.4));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.7));
    }
}

.sec-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.sec-checks {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sec-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-soft);
}

.sec-item i {
    color: #22c55e;
}

/* Integration mock */
.integration-grid {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.int-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.5rem;
    color: var(--primary-light);
}

.int-item span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-display);
}

.int-item:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.35);
    transform: translateY(-3px);
    color: var(--primary-light);
}

/* ── BENEFITS SECTION ── */
.benefits-section {
    background: var(--bg-base);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: var(--shadow-purple);
    background: linear-gradient(145deg, var(--bg-card), rgba(124, 58, 237, 0.06));
}

.benefit-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon-wrap {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.benefit-card h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.benefit-tag {
    display: inline-flex;
    padding: 0.3rem 0.85rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-light);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── PROCESS SECTION ── */
.process-section {
    background: var(--bg-surface);
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.process-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, rgba(6, 182, 212, 0.05) 60%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbDrift 30s ease-in-out infinite;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-line {
    position: absolute;
    top: 2.5rem;
    left: calc(12.5% + 2rem);
    right: calc(12.5% + 2rem);
    height: 2px;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.5) 50%, rgba(124, 58, 237, 0.1) 100%);
    z-index: 0;
}

.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background: var(--grad-primary);
    animation: lineGrow 2s ease-out 1s forwards;
}

@keyframes lineGrow {
    to {
        width: 100%;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.process-num {
    width: 52px;
    height: 52px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 25px var(--primary-glow);
    flex-shrink: 0;
    animation: numPulse 3s ease-in-out infinite;
}

.process-step:nth-child(3) .process-num {
    animation-delay: 0.5s;
}

.process-step:nth-child(4) .process-num {
    animation-delay: 1s;
}

.process-step:nth-child(5) .process-num {
    animation-delay: 1.5s;
}

@keyframes numPulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 40px rgba(124, 58, 237, 0.5);
    }
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
    width: 100%;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: var(--shadow-purple);
}

.process-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 58, 237, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-light);
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    background: var(--grad-primary);
    color: #fff;
    transform: scale(1.1);
}

.process-card h3 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.process-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.process-badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-light);
    font-family: var(--font-display);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--bg-base);
}

.testimonials-carousel {
    position: relative;
}

.testi-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 6rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: rgba(124, 58, 237, 0.08);
    line-height: 1;
    pointer-events: none;
}

.testi-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: var(--shadow-purple);
}

.testi-stars {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    background: var(--grad-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.testi-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.testi-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.testi-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.testi-btn:hover {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.testi-dots {
    display: flex;
    gap: 6px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    background: var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.testi-dot.active {
    background: var(--primary);
    width: 24px;
}

/* ── FAQ SECTION ── */
.faq-section {
    background: var(--bg-surface);
    overflow: hidden;
}

.faq-bg-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, rgba(6, 182, 212, 0.04) 50%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 100px;
}

.faq-left .section-title {
    margin-bottom: 1rem;
    text-align: left;
}

.faq-left p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.faq-contact-link {
    color: var(--primary-light);
    font-weight: 600;
}

.faq-contact-link:hover {
    color: var(--primary);
}

.faq-cta-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.faq-cta-box>i {
    font-size: 1.75rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.faq-cta-box>div {
    flex: 1;
}

.faq-cta-box strong {
    display: block;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 0.9rem;
}

.faq-cta-box span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.faq-cta-box .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.82rem;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.faq-item.active {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    gap: 1rem;
    user-select: none;
}

.faq-question span {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 0.85rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--grad-primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--bg-base);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.cta-orb-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.22) 0%, rgba(236, 72, 153, 0.08) 50%, transparent 70%);
    top: -200px;
    left: -200px;
    filter: blur(40px);
    animation: orbDrift 20s ease-in-out infinite;
}

.cta-orb-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(79, 70, 229, 0.06) 50%, transparent 70%);
    bottom: -200px;
    right: -200px;
    filter: blur(40px);
    animation: orbDrift 25s ease-in-out infinite reverse;
}

.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-xl);
    max-width: 780px;
    margin: 0 auto;
    box-shadow: 0 0 80px rgba(124, 58, 237, 0.12), var(--shadow-card);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1.1rem;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.cta-inner p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 2.25rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: var(--font-display);
}

.cta-trust-item i {
    color: #22c55e;
}

/* ── FOOTER ── */
.footer {
    background: var(--bg-surface);
    padding: clamp(4rem, 8vw, 6rem) 0 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.footer-bg-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, rgba(6, 182, 212, 0.03) 60%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {}

/*.footer-logo {*/
/*    margin-bottom: 1.25rem;*/
/*}*/

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo-icon {
    font-size: 1.85rem;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px var(--primary-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}


.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 38px;
    height: 38px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
    color: var(--primary-light);
    font-size: 0.75rem;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-light);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-soft);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ── BACK TO TOP ── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--grad-primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px var(--primary-glow);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

/* ── AOS-LIKE ANIMATIONS ── */
[data-aos] {
    opacity: 0;
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-right"] {
    transform: translateX(-70px);
    filter: blur(2px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.85s ease;
}

[data-aos="fade-left"] {
    transform: translateX(70px);
    filter: blur(2px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.85s ease;
}

[data-aos="zoom-in"] {
    transform: scale(0.88);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

/* ── PARTICLES ANIMATION ── */
@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-20vh) translateX(80px) scale(1.2);
        opacity: 0;
    }
}

/* ========================================================
   RESPONSIVE DESIGN
   ======================================================== */

/* ── 1200px ── */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 3;
    }

    .tab-content-grid {
        gap: 2.5rem;
    }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 550px;
        margin: 0 auto;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-badge {
        display: inline-flex;
    }

    .hero-title {
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-line {
        display: none;
    }

    .tab-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-left {
        position: static;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .float-card-1 {
        right: -5%;
        top: -8%;
    }

    .float-card-2 {
        left: -5%;
    }

    /* Reduce side-entry offset on tablets */
    [data-aos="fade-right"] {
        transform: translateX(-40px);
    }

    [data-aos="fade-left"] {
        transform: translateX(40px);
    }
}

/* ── 768px ── */
@media (max-width: 768px) {
    :root {
        --section-py: clamp(3.5rem, 8vw, 5rem);
    }

    /* Completely disable side-blur on mobile to prevent overflow */
    [data-aos="fade-right"],
    [data-aos="fade-left"] {
        transform: translateY(30px);
        filter: none;
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .testi-track {
        grid-template-columns: 1fr;
    }

    .testimonials-carousel {
        overflow: hidden;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .float-card {
        display: none;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        opacity: 0.5;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .tab-btns {
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.82rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-visual {
        max-width: 420px;
    }

    .faq-cta-box {
        flex-wrap: wrap;
    }

    .tab-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mock-screen {
        max-width: 100%;
    }

    .back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
    }
}

/* ── 480px ── */
@media (max-width: 480px) {
    h1 {
        font-size: clamp(1.75rem, 7vw, 2rem);
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 1.75rem);
    }

    h3 {
        font-size: clamp(1.1rem, 5vw, 1.35rem);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-trust {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .hero-visual {
        max-width: 100%;
    }

    .dashboard-main {
        padding: 1rem;
    }

    .dash-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
    }

    .dash-stat {
        padding: 0.5rem 0.25rem;
    }

    .dash-stat-val {
        font-size: 0.9rem;
    }

    .dash-stat-label {
        font-size: 0.6rem;
    }

    .section-badge {
        font-size: 0.72rem;
        padding: 0.4rem 0.85rem;
    }

    .btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.1rem;
    }

    .faq-answer {
        padding: 0 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.1rem 1rem;
    }

    .process-card {
        padding: 1.25rem;
    }

    .testi-card {
        padding: 1.5rem;
    }

    .cta-inner {
        padding: 2rem 1.25rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* ── 360px (ultra-small phones) ── */
@media (max-width: 360px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .nav-container {
        padding: 0.9rem 1rem;
    }

    .wordmark-logo {
        font-size: 1.3rem;
    }

    .tab-btn {
        font-size: 0.78rem;
        padding: 0.5rem 0.9rem;
    }

    .section-badge {
        font-size: 0.68rem;
    }

    .faq-cta-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-socials {
        flex-wrap: wrap;
    }
}

/* ═══════════════════════════════════════════════
   GLOBAL BACKGROUND CANVAS (Lightning + Radar)
═══════════════════════════════════════════════ */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* ── LIGHTNING CONTAINER ── */
.lightning-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

@keyframes lightningFlash {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
    }
}

/* ── PRELOADER SUB TEXT ── */
.preloader-sub {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1rem;
    animation: fadeSlideUp 1s ease-out 1s both;
}

/* ── SERVICE NUMBER BADGE ── */
.service-num {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(124, 58, 237, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* ── MOBILE CLOSE BUTTON ── */
.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    z-index: 1002;
}

.mobile-close:hover {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
}

/* ═══════════════════════════════════════════════
   CHATBOT WIDGET
═══════════════════════════════════════════════ */
.chatbot-widget {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.chatbot-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--grad-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 8px 30px var(--primary-glow);
    transition: var(--transition);
    position: relative;
    animation: chatTriggerPulse 3s ease-in-out infinite;
}

@keyframes chatTriggerPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px var(--primary-glow), 0 0 0 0 rgba(124, 58, 237, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px var(--primary-glow), 0 0 0 14px rgba(124, 58, 237, 0);
    }
}

.chatbot-trigger:hover {
    transform: scale(1.1) rotate(-5deg);
}

.chatbot-trigger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-notif-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    border: 2px solid var(--bg-base);
    animation: badgePop 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) both;
}

@keyframes badgePop {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.chatbot-window {
    width: 380px;
    max-height: 570px;
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 58, 237, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom right;
    animation: chatWindowOpen 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    backdrop-filter: blur(20px);
}

@keyframes chatWindowOpen {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.chatbot-window.hidden {
    display: none;
}

.chatbot-header {
    background: linear-gradient(135deg, #5b21b6, #7c3aed, #0891b2);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-avatar-wrap {
    position: relative;
}

.chatbot-avatar {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chatbot-online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #5b21b6;
    animation: pulseDot 2s ease-in-out infinite;
}

.chatbot-header-text strong {
    display: block;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
}

.chatbot-header-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.72rem;
}

.online-indicator {
    color: #22c55e;
    font-size: 0.6rem;
}

.chatbot-header-actions {
    display: flex;
    gap: 0.5rem;
}

.chatbot-minimize {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    color: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chatbot-minimize:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-behavior: smooth;
}

.chatbot-messages::-webkit-scrollbar {
    width: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.3);
    border-radius: 10px;
}

.chatbot-date-divider {
    text-align: center;
    margin: 0.2rem 0;
}

.chatbot-date-divider span {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--bg-card);
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-soft);
}

.chat-message {
    display: flex;
    gap: 0.6rem;
    align-items: flex-end;
}

.chat-message.user-message {
    flex-direction: row-reverse;
}

.bot-avatar {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--primary-light);
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.message-bubble {
    max-width: 78%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-soft);
    border-radius: 16px 16px 16px 4px;
    padding: 0.65rem 0.9rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    animation: msgSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes msgSlideIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.message-bubble p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.message-bubble p+p {
    margin-top: 6px;
}

.user-message .message-bubble {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(6, 182, 212, 0.12));
    border-color: rgba(124, 58, 237, 0.3);
    border-radius: 16px 16px 4px 16px;
    color: var(--text-primary);
}

.user-message .message-bubble p {
    color: var(--text-primary);
}

.message-time {
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    text-align: right;
    font-family: var(--font-display);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 0.65rem 0.9rem;
}

.typing-indicator span {
    width: 7px;
    height: 7px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingDot 1.2s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

.chatbot-quick-replies {
    padding: 0.75rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-top: 1px solid var(--border-soft);
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.1);
}

.quick-reply {
    padding: 0.4rem 0.85rem;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.77rem;
    font-weight: 600;
    font-family: var(--font-display);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.quick-reply:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-2px);
}

.chatbot-input-area {
    padding: 0.75rem 1.25rem 1rem;
    border-top: 1px solid var(--border-soft);
    flex-shrink: 0;
}

.chatbot-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-full);
    padding: 0.4rem 0.4rem 0.4rem 1rem;
    transition: border-color 0.3s;
}

.chatbot-input-wrap:focus-within {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.07);
}

.chatbot-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.chatbot-input::placeholder {
    color: var(--text-muted);
}

.chatbot-send {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--grad-primary);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.chatbot-send:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.chatbot-send:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.chatbot-footer-note {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.67rem;
    color: var(--text-muted);
    font-family: var(--font-display);
}

.chatbot-footer-note a {
    color: var(--primary-light);
}

/* ── Chatbot Mobile ── */
@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .chatbot-window {
        width: calc(100vw - 2rem);
        max-height: 72vh;
    }

    .back-to-top {
        bottom: 5.5rem;
    }
}

/* ═══════════════════════════════════════
   HERO RADAR CANVAS
═══════════════════════════════════════ */
.hero-radar-canvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-radar-canvas {
        width: 100%;
        opacity: 0.4;
    }
}

/* ═══════════════════════════════════════
   FLOATING BACKGROUND SHAPES
   Subtle geometric objects drifting in bg
═══════════════════════════════════════ */
.bg-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 4px;
    opacity: 0;
    animation: shapeDrift linear infinite;
}

/* Triangles */
.bg-shape-tri {
    width: 0;
    height: 0;
    background: transparent !important;
    border-style: solid;
}

@keyframes shapeDrift {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: var(--shape-opacity, 0.04);
    }

    90% {
        opacity: var(--shape-opacity, 0.04);
    }

    100% {
        transform: translateY(-120vh) rotate(720deg);
        opacity: 0;
    }
}

@keyframes shapeOrbit {
    0% {
        transform: rotate(0deg) translateX(var(--orbit-r, 60px)) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(var(--orbit-r, 60px)) rotate(-360deg);
    }
}

/* ── Individual floating shape variants ── */
.fs-ring {
    border-radius: 50%;
    border: 1px solid rgba(124, 58, 237, 0.08);
    background: transparent;
    animation: shapeOrbit var(--orbit-speed, 20s) linear infinite;
}

.fs-diamond {
    transform: rotate(45deg);
    border: 1px solid rgba(6, 182, 212, 0.06);
    background: rgba(6, 182, 212, 0.02);
}

.fs-hex {
    border: 1px solid rgba(167, 139, 250, 0.07);
    background: rgba(124, 58, 237, 0.015);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.fs-dot {
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.06);
    animation: shapeDrift linear infinite;
}

.fs-cross::before,
.fs-cross::after {
    content: '';
    position: absolute;
    background: rgba(167, 139, 250, 0.06);
    border-radius: 1px;
}

.fs-cross::before {
    top: 35%;
    left: 0;
    right: 0;
    height: 30%;
}

.fs-cross::after {
    top: 0;
    bottom: 0;
    left: 35%;
    width: 30%;
}

.fs-cross {
    position: fixed;
    animation: shapeDrift linear infinite;
}

/* ── MOBILE NAVBAR LOCKDOWN ── */
@media (max-width: 768px) {

    /* Prevents the page from moving behind the menu */
    body.menu-open {
        overflow: hidden !important;
        height: 100vh !important;
        position: fixed !important;
        width: 100% !important;
    }

    /* Locks the menu to the full viewport */
    .mobile-menu.open {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 2000 !important;
    }
}

/* ============================================================
   TECHIONIC — Surface & Glass Upgrade v2
   REPLACE the previous surface upgrade block at the bottom
   of your style.css with this entire block
   ============================================================ */

/* ── STEP 1: Much more aggressive background contrast ── */
:root {
    --bg-base: #02010a;
    --bg-surface: #060318;
    --bg-card: #100830;
    --bg-card2: #0c0624;
    --border: rgba(124, 58, 237, 0.28);
    --border-soft: rgba(255, 255, 255, 0.08);
}

/* ── STEP 2: Real glass — needs a visible background to blur ── */
/* First give body a subtle purple noise so backdrop-filter works */
body {
    background: #02010a;
    background-image:
        radial-gradient(ellipse at 20% 20%, rgba(109, 40, 217, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(79, 70, 229, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
}

/* ── STEP 3: Cards — much more visible glass ── */
.service-card,
.benefit-card,
.stat-card,
.process-card,
.testi-card,
.faq-item,
.dashboard-main,
.float-card,
.mock-screen,
.faq-cta-box {
    background: rgba(16, 8, 48, 0.75) !important;
    backdrop-filter: blur(24px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.4) !important;
    border: 1px solid rgba(124, 58, 237, 0.25) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(124, 58, 237, 0.06) !important;
}

/* ── STEP 4: Hover — the glass brightens noticeably ── */
.service-card:hover,
.benefit-card:hover,
.stat-card:hover,
.process-card:hover,
.testi-card:hover {
    background: rgba(22, 10, 65, 0.85) !important;
    border-color: rgba(124, 58, 237, 0.5) !important;
    box-shadow:
        0 0 0 1px rgba(124, 58, 237, 0.2),
        0 0 40px rgba(109, 40, 217, 0.25),
        0 20px 50px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 0 20px rgba(124, 58, 237, 0.05) !important;
}

/* ── STEP 5: Section backgrounds — clearly different now ── */
.hero {
    background: #02010a !important;
}

.logos-section {
    background: rgba(8, 4, 24, 0.9) !important;
    border-top: 1px solid rgba(124, 58, 237, 0.12) !important;
    border-bottom: 1px solid rgba(124, 58, 237, 0.12) !important;
}

.stats-section {
    background: linear-gradient(180deg, #06031a 0%, #080420 100%) !important;
}

.services-section {
    background: #03020e !important;
}

.showcase-section {
    background: linear-gradient(180deg, #07041c 0%, #09052a 100%) !important;
}

.benefits-section {
    background: #03020e !important;
}

.process-section {
    background: linear-gradient(180deg, #06031a 0%, #08042a 100%) !important;
}

.testimonials-section {
    background: #03020e !important;
}

.faq-section {
    background: linear-gradient(180deg, #06031a 0%, #07041e 100%) !important;
}

.cta-banner {
    background: #02010a !important;
}

.footer {
    background: linear-gradient(180deg, #06031a 0%, #04020e 100%) !important;
}

/* ── STEP 6: CTA inner box — visible and premium ── */
.cta-inner {
    background: linear-gradient(145deg,
            rgba(109, 40, 217, 0.12),
            rgba(79, 70, 229, 0.06),
            rgba(6, 182, 212, 0.04)) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(124, 58, 237, 0.3) !important;
    box-shadow:
        0 0 80px rgba(109, 40, 217, 0.15),
        0 0 0 1px rgba(124, 58, 237, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* ── STEP 7: Dashboard main — premium glass ── */
.dashboard-main {
    background: rgba(14, 7, 38, 0.8) !important;
    backdrop-filter: blur(30px) saturate(1.5) !important;
    -webkit-backdrop-filter: blur(30px) saturate(1.5) !important;
    border: 1px solid rgba(124, 58, 237, 0.3) !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(124, 58, 237, 0.1),
        0 0 0 1px rgba(124, 58, 237, 0.08) !important;
}

/* ── STEP 8: Float cards — frosted glass on hero ── */
.float-card {
    background: rgba(12, 6, 32, 0.88) !important;
    backdrop-filter: blur(28px) saturate(1.6) !important;
    -webkit-backdrop-filter: blur(28px) saturate(1.6) !important;
    border: 1px solid rgba(124, 58, 237, 0.3) !important;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 0 0 1px rgba(124, 58, 237, 0.06) !important;
}

/* ── STEP 9: Navbar (moved to main definition to avoid duplication) ── */

/* ── STEP 10: Chatbot window ── */
.chatbot-window {
    background: rgba(14, 7, 38, 0.94) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(124, 58, 237, 0.3) !important;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* ── STEP 11: Orbs more visible ── */
.orb-1 {
    background: radial-gradient(circle,
            rgba(109, 40, 217, 0.45) 0%,
            rgba(109, 40, 217, 0.15) 40%,
            transparent 70%) !important;
}

.orb-2 {
    background: radial-gradient(circle,
            rgba(79, 70, 229, 0.3) 0%,
            rgba(79, 70, 229, 0.1) 40%,
            transparent 70%) !important;
}

/* ── STEP 12: Section badges ── */
.section-badge {
    background: rgba(124, 58, 237, 0.16) !important;
    border: 1px solid rgba(124, 58, 237, 0.4) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 12px rgba(124, 58, 237, 0.1) !important;
}

/* ── STEP 13: Hero badge ── */
.hero-badge {
    background: rgba(124, 58, 237, 0.14) !important;
    border: 1px solid rgba(124, 58, 237, 0.38) !important;
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.12) !important;
}

/* ── STEP 14: Tab buttons ── */
.tab-btn {
    background: rgba(14, 8, 36, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(124, 58, 237, 0.2) !important;
}

/* ── STEP 15: Logo items in marquee ── */
.logo-item {
    background: rgba(124, 58, 237, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(124, 58, 237, 0.18) !important;
}

/* ── STEP 16: Mobile menu ── */
.mobile-menu {
    background: rgba(2, 1, 10, 0.97) !important;
    backdrop-filter: blur(40px) !important;
    -webkit-backdrop-filter: blur(40px) !important;
}