/* 
   Nyxzie - Modern Digital Solutions
   Theme: Deep Space / Future Tech
*/

:root {
    /* Colors */
    --bg-dark: #0a0a12;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --primary: #7c3aed;
    /* Electric Violet */
    --primary-glow: rgba(124, 58, 237, 0.5);
    --secondary: #06b6d4;
    /* Cyan */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-light: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: auto;
    height: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100%;
    position: relative;
}

/* Galaxy Background Canvas */
#galaxy-canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

#galaxy-canvas-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #6d28d9);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

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

.btn-outline {
    background: transparent;
    border-color: var(--border-light);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--primary-glow);
    }

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

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Nyxzie Bot Logo Styles --- */
.nyxzie-logo-container {
    width: 50px;
    height: 60px;
    position: relative;
    cursor: pointer;
}

#nyxzie-robot-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    animation: nyxzie-cute-animations 20s ease-in-out infinite;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
    transform-style: preserve-3d;
}

.nyxzie-eye {
    transform-origin: center;
    animation: nyxzie-blink 4s infinite;
}

.nyxzie-eye-glow {
    filter: url(#nyxzie-glow-filter);
}

.nyxzie-hand-left-group {
    transform-origin: 40px 160px;
    animation: nyxzie-handFloat-left 3s ease-in-out infinite alternate;
}

.nyxzie-hand-right-group {
    transform-origin: 160px 160px;
    animation: nyxzie-handFloat-right 3s ease-in-out infinite alternate-reverse;
}

.nyxzie-body-shape {
    filter: drop-shadow(0 0 3px rgba(37, 211, 102, 0.6));
    animation: nyxzie-borderGlow-green 3s ease-in-out infinite;
}

.nyxzie-head-group rect:first-child {
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.7));
    animation: nyxzie-borderGlow-cyan 2.5s ease-in-out infinite;
}

/* Keyframes for Bot */
@keyframes nyxzie-cute-animations {

    /* Floating phase (0-25%) */
    0%,
    25% {
        transform: translateY(0px) rotateZ(0deg) translateX(0px);
    }

    12.5% {
        transform: translateY(-15px) rotateZ(0deg) translateX(0px);
    }

    /* First shake phase (25-35%) */
    25.5% {
        transform: translateY(-5px) rotateZ(-3deg) translateX(-4px);
    }

    27% {
        transform: translateY(-8px) rotateZ(3deg) translateX(4px);
    }

    28.5% {
        transform: translateY(-5px) rotateZ(-2deg) translateX(-3px);
    }

    30% {
        transform: translateY(-8px) rotateZ(2deg) translateX(3px);
    }

    31.5% {
        transform: translateY(-5px) rotateZ(-1deg) translateX(-2px);
    }

    33% {
        transform: translateY(-8px) rotateZ(1deg) translateX(2px);
    }

    34.5% {
        transform: translateY(-5px) rotateZ(0deg) translateX(0px);
    }

    /* Floating again (35-55%) */
    35%,
    55% {
        transform: translateY(0px) rotateZ(0deg) translateX(0px);
    }

    45% {
        transform: translateY(-15px) rotateZ(0deg) translateX(0px);
    }

    /* Second shake phase (55-65%) */
    55.5% {
        transform: translateY(-5px) rotateZ(-2.5deg) translateX(-3px);
    }

    57% {
        transform: translateY(-8px) rotateZ(2.5deg) translateX(3px);
    }

    58.5% {
        transform: translateY(-5px) rotateZ(-1.5deg) translateX(-2px);
    }

    60% {
        transform: translateY(-8px) rotateZ(1.5deg) translateX(2px);
    }

    61.5% {
        transform: translateY(-5px) rotateZ(-0.5deg) translateX(-1px);
    }

    63% {
        transform: translateY(-8px) rotateZ(0.5deg) translateX(1px);
    }

    64.5% {
        transform: translateY(-5px) rotateZ(0deg) translateX(0px);
    }

    /* Floating phase (65-85%) */
    65%,
    85% {
        transform: translateY(0px) rotateZ(0deg) translateX(0px);
    }

    75% {
        transform: translateY(-15px) rotateZ(0deg) translateX(0px);
    }

    /* Third shake phase (85-95%) */
    85.5% {
        transform: translateY(-5px) rotateZ(-2deg) translateX(-3px);
    }

    87% {
        transform: translateY(-8px) rotateZ(2deg) translateX(3px);
    }

    88.5% {
        transform: translateY(-5px) rotateZ(-1deg) translateX(-2px);
    }

    90% {
        transform: translateY(-8px) rotateZ(1deg) translateX(2px);
    }

    91.5% {
        transform: translateY(-5px) rotateZ(0deg) translateX(0px);
    }

    /* Final floating (95-100%) */
    95%,
    100% {
        transform: translateY(0px) rotateZ(0deg) translateX(0px);
    }
}

@keyframes nyxzie-blink {

    0%,
    45%,
    55%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.1);
    }
}

@keyframes nyxzie-handFloat-left {
    0% {
        transform: rotate(-20deg) translateY(0);
    }

    100% {
        transform: rotate(-20deg) translateY(-5px);
    }
}

@keyframes nyxzie-handFloat-right {
    0% {
        transform: rotate(20deg) translateY(0);
    }

    100% {
        transform: rotate(20deg) translateY(-5px);
    }
}

@keyframes nyxzie-borderGlow-green {

    0%,
    100% {
        filter: drop-shadow(0 0 3px rgba(37, 211, 102, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.9));
    }
}

@keyframes nyxzie-borderGlow-cyan {

    0%,
    100% {
        filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.7));
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(0, 255, 255, 1));
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    opacity: 0.8;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.mobile-toggle {
    display: none;
    /* Hidden by default, shown on mobile via media query */
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
    padding: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.mobile-toggle:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.mobile-toggle:active {
    transform: scale(0.95);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(10, 10, 18, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo span {
    color: var(--primary);
}

/* Section Padding */
.section-padding {
    padding: 4rem 0;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Nyxzie Difference Container - Blurred Background */
.nyxzie-difference-container {
    background: rgba(15, 15, 25, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Single Column Layout for Nyxzie Difference Features */
.nyxzie-difference-container .features-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.nyxzie-difference-container .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.nyxzie-difference-container .feature-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateX(5px);
}

.nyxzie-difference-container .feature-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
    margin: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
}

.nyxzie-difference-container .feature-box h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.nyxzie-difference-container .feature-box p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nyxzie-difference-container {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }

    .nyxzie-difference-container .features-grid {
        gap: 1.25rem;
    }

    .nyxzie-difference-container .feature-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
    }

    .nyxzie-difference-container .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }
}

.glass-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
   SOLUTIONS PAGE CSS START
   ============================================ */

/* ============================================
   SOLUTIONS PAGE: BASIC SOLUTION CARDS
   ============================================ */

/* Solution Cards Grid */
.solutions-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.solution-card {
    display: flex;
    flex-direction: column;
    padding: 3rem;
    height: 100%;
}

.solution-visual-inner {
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.solution-card .solution-visual {
    margin-bottom: 2rem;
    order: -1;
}

.solution-card .solution-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-card .solution-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Remove reverse logic as cards are now vertical */
.solution-card.reverse .solution-visual {
    order: -1;
}

.solution-card.reverse .solution-content {
    order: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* --- Solution Card Hover Effects --- */
.solution-card {
    position: relative;
    overflow: hidden;
    /* Keeps the overlay inside the borders */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Ensure the card has a set height so elements don't jump */
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
    /* Subtle cyan glow */
}

/* The Overlay Container */
.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 29, 35, 0.96);
    /* Dark background matching your theme */
    backdrop-filter: blur(10px);
    /* Heavy blur for glass effect */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

/* Trigger Hover */
.solution-card:hover .solution-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Overlay Typography */
.solution-overlay h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.solution-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-overlay li {
    font-size: 0.9rem;
    color: #a0aec0;
    /* Muted text */
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.solution-overlay li i {
    color: #4facfe;
    /* Cyan/Blue accent */
    margin-right: 10px;
    margin-top: 4px;
    font-size: 0.8rem;
}

/* Mobile Responsiveness: On phones, we might want to show details via a tap or always */
@media (max-width: 768px) {
    .solution-overlay {
        position: relative;
        background: transparent;
        opacity: 1;
        transform: none;
        padding: 0;
        margin-top: 1rem;
        height: auto;
        backdrop-filter: none;
        display: none;
        /* Optional: Keep hidden on mobile to save space, or remove to show */
    }

    /* If you want to show details on mobile, remove 'display: none' above */
}

/* Text Center */
.text-center {
    text-align: center;
}

/* Footer */
footer {
    background: #050509;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-light);
    margin-top: 4rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Hero Full Screen Styles */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: heroGradientShift 10s ease-in-out infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(124, 58, 237, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(124, 58, 237, 0.2), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(6, 182, 212, 0.2), transparent);
    background-size: 200% 200%;
    animation: heroParticlesMove 20s linear infinite;
    opacity: 0.6;
}

@keyframes heroGradientShift {

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

    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

@keyframes heroParticlesMove {
    0% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%, 100% 0%;
    }

    100% {
        background-position: 100% 100%, 0% 0%, 50% 50%, 100% 0%, 0% 100%;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container-width);
    padding: 0 2rem;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - 100px);
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.hero-buttons .btn i {
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover i {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-bot-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 200/240;
}

.hero-bot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroBotGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes heroBotGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-bot-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.3)) drop-shadow(0px 0px 40px rgba(124, 58, 237, 0.2));
    animation: heroBotFloat 6s ease-in-out infinite;
}

@keyframes heroBotFloat {

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

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    animation: heroScrollPulse 2s ease-in-out infinite;
}

@keyframes heroScrollPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translateX(-50%) translateY(0);
    }

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

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheelMove 2s ease-in-out infinite;
}

@keyframes scrollWheelMove {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* Hero Bot Animations */
.hero-bot-svg {
    animation: heroBotFloat 6s ease-in-out infinite;
}

.hero-eye {
    transform-origin: center;
    animation: heroEyeBlink 4s infinite;
}

@keyframes heroEyeBlink {

    0%,
    45%,
    55%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0.1);
    }
}

.hero-hand-left-group {
    transform-origin: 40px 160px;
    animation: heroHandFloatLeft 3s ease-in-out infinite alternate;
}

.hero-hand-right-group {
    transform-origin: 160px 160px;
    animation: heroHandFloatRight 3s ease-in-out infinite alternate-reverse;
}

@keyframes heroHandFloatLeft {
    0% {
        transform: rotate(-20deg) translateY(0);
    }

    100% {
        transform: rotate(-20deg) translateY(-5px);
    }
}

@keyframes heroHandFloatRight {
    0% {
        transform: rotate(20deg) translateY(0);
    }

    100% {
        transform: rotate(20deg) translateY(-5px);
    }
}

.hero-body-shape {
    filter: drop-shadow(0 0 3px rgba(37, 211, 102, 0.6));
    animation: heroBorderGlowGreen 3s ease-in-out infinite;
}

.hero-head-group rect:first-child {
    filter: drop-shadow(0 0 4px rgba(0, 255, 255, 0.7));
    animation: heroBorderGlowCyan 2.5s ease-in-out infinite;
}

@keyframes heroBorderGlowGreen {

    0%,
    100% {
        filter: drop-shadow(0 0 3px rgba(37, 211, 102, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.9));
    }
}


@keyframes pageReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(10px);
    }

    50% {
        opacity: 0.7;
        transform: translateY(15px) scale(0.98);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Split Screen Opening Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a12 0%, #1a1a2e 100%);
    z-index: 99998;
    animation: splitScreenOpenLeft 1.2s ease-out forwards;
    pointer-events: none;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a12 0%, #1a1a2e 100%);
    z-index: 99997;
    animation: splitScreenOpenRight 1.2s ease-out 0.1s forwards;
    pointer-events: none;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

@keyframes splitScreenOpenLeft {
    0% {
        clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
        opacity: 1;
    }

    100% {
        clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
        opacity: 0;
    }
}

@keyframes splitScreenOpenRight {
    0% {
        clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
        opacity: 1;
    }

    100% {
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
        opacity: 0;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .section-padding {
        padding: 3rem 0;
    }

    /* Navigation */
    .mobile-toggle {
        display: flex !important;
        z-index: 1001;
        position: relative;
    }

    /* Mobile header adjustments */
    header {
        padding: 0;
    }

    header .container {
        padding: 0 1rem;
    }

    nav {
        position: relative;
    }

    .logo {
        font-size: 1.3rem;
        z-index: 1002;
    }

    .nyxzie-logo-container {
        width: 40px;
        height: 50px;
    }

    /* Mobile menu overlay/backdrop - separate element */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 999;
        backdrop-filter: blur(2px);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        /* Dynamic viewport height for mobile */
        background: rgba(10, 10, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 80px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        border-left: 1px solid var(--border-light);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links li:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a {
        font-size: 1.1rem;
        display: block;
        padding: 1.2rem 1.5rem;
        color: var(--text-main);
        transition: all 0.3s ease;
        min-height: 50px;
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: transparent;
    }

    /* --- OLEE-STYLE ANIMATIONS & POLISH --- */

    /* 1. ContextIQ Brain Pulse */
    .brain-node {
        position: absolute;
        width: 60px;
        height: 60px;
        background: rgba(30, 30, 40, 0.95);
        border: 1px solid rgba(0, 229, 255, 0.4);
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #00e5ff;
        font-size: 1.2rem;
        box-shadow: 0 0 25px rgba(0, 229, 255, 0.15);
        z-index: 2;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .brain-node:hover {
        transform: scale(1.1);
        box-shadow: 0 0 35px rgba(0, 229, 255, 0.3);
        border-color: #00e5ff;
    }

    .brain-node span {
        font-size: 0.7rem;
        margin-top: 5px;
        color: #a0aec0;
        font-weight: 500;
    }

    .brain-center {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        border-color: #00e5ff;
        background: radial-gradient(circle at center, #1a202c, #0f1014);
    }

    /* Animations */
    .brain-left {
        top: 20%;
        left: 15%;
        animation: float 6s ease-in-out infinite;
    }

    .brain-right {
        top: 20%;
        right: 15%;
        animation: float 6s ease-in-out infinite 1s;
    }

    .brain-bottom {
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        animation: float 6s ease-in-out infinite 2s;
    }

    .connection-line {
        stroke: #00e5ff;
        stroke-width: 2;
        stroke-dasharray: 8 4;
        opacity: 0.4;
        animation: dash 60s linear infinite;
        filter: drop-shadow(0 0 2px rgba(0, 229, 255, 0.5));
    }

    /* 2. Visual Commerce Scanning */
    .visual-commerce-demo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
        position: relative;
        padding: 1rem;
    }

    .demo-step {
        text-align: center;
        position: relative;
        opacity: 0;
        animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        background: rgba(255, 255, 255, 0.03);
        padding: 1rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        width: 100px;
    }

    .step-1 {
        animation-delay: 0.2s;
    }

    .step-2 {
        animation-delay: 1.4s;
    }

    .step-3 {
        animation-delay: 3.8s;
    }

    .demo-icon {
        font-size: 1.5rem;
        color: var(--secondary);
        margin-bottom: 0.5rem;
    }

    .demo-text {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    /* Visual Commerce Icon Styles - Ensure visibility */
    .nx-vc-icon {
        width: 60px;
        height: 60px;
        background: rgba(236, 72, 153, 0.1);
        border: 1px solid rgba(236, 72, 153, 0.3);
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: #ec4899 !important;
        font-size: 1.5rem !important;
        margin: 0 auto 10px auto;
        position: relative;
        z-index: 2;
        box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nx-vc-icon i {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: #ec4899 !important;
        font-size: inherit !important;
    }

    .scanning-animation {
        width: 100%;
        height: 2px;
        background: #00e5ff;
        position: absolute;
        top: 0;
        left: 0;
        box-shadow: 0 0 15px #00e5ff;
        animation: scan 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        opacity: 0.8;
    }

    /* 3. Whisper Chat Bubbles */
    .whisper-chat-demo {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .chat-message {
        display: flex;
        gap: 10px;
        align-items: flex-end;
        opacity: 0;
        transform: translateY(15px);
        animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    .chat-message.customer {
        align-self: flex-start;
        animation-delay: 0.3s;
    }

    .chat-message.internal {
        align-self: center;
        width: 100%;
        animation-delay: 1.2s;
    }

    .chat-message.agent {
        align-self: flex-end;
        flex-direction: row-reverse;
        animation-delay: 2.2s;
    }

    .msg-content {
        background: rgba(255, 255, 255, 0.08);
        /* Darker chat bubble */
        padding: 12px 16px;
        border-radius: 16px;
        border-bottom-left-radius: 2px;
        font-size: 0.9rem;
        color: #e2e8f0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .chat-message.agent .msg-content {
        background: var(--primary);
        /* Brand color for agent */
        color: white;
        border-radius: 16px;
        border-bottom-right-radius: 2px;
    }

    /* The Yellow 'Internal Note' style */
    .chat-message.internal .msg-content {
        background: rgba(255, 215, 0, 0.1);
        border: 1px dashed rgba(255, 215, 0, 0.4);
        color: #ffd700;
        width: 100%;
        text-align: center;
        font-size: 0.85rem;
        font-style: italic;
        border-radius: 8px;
    }

    /* Keyframes */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    @keyframes scan {
        0% {
            top: 0;
            opacity: 0;
        }

        20% {
            opacity: 1;
        }

        80% {
            opacity: 1;
        }

        100% {
            top: 100%;
            opacity: 0;
        }
    }

    @keyframes dash {
        to {
            stroke-dashoffset: -1000;
        }
    }

    @keyframes float {

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

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

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

    /* --- Mobile Responsiveness for Animations --- */
    @media (max-width: 768px) {
        .brain-node {
            width: 50px;
            height: 50px;
            font-size: 1rem;
        }

        .brain-center {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
        }

        .brain-left {
            left: 5%;
        }

        /* Tighter margins */
        .brain-right {
            right: 5%;
        }

        .visual-commerce-demo {
            max-width: 100%;
            gap: 10px;
        }

        .demo-step {
            padding: 0.75rem;
            min-width: 80px;
        }

        .demo-icon {
            font-size: 1.2rem;
        }

        .nx-vc-icon {
            width: 50px;
            height: 50px;
            font-size: 1.2rem !important;
        }

        .nx-vc-icon i {
            font-size: 1.2rem !important;
        }

        .demo-arrow {
            font-size: 1rem;
            padding: 0 5px;
        }

        .whisper-chat-demo {
            max-width: 100%;
        }

        /* Ensure features stack and visual is on top/bottom as needed without overlap */
        .feature-content {
            padding: 2rem 1.5rem;
            gap: 2rem;
        }
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(124, 58, 237, 0.1);
        color: var(--primary);
        padding-left: 2rem;
    }

    /* Close button in mobile menu */
    .nav-links.active .mobile-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: var(--text-main);
        cursor: pointer;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .nav-links.active .mobile-close:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--primary);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    /* Small mobile devices */
    @media (max-width: 480px) {
        .nav-links {
            width: 90%;
            max-width: 280px;
        }

        .nav-links a {
            font-size: 1rem;
            padding: 1rem 1.2rem;
            min-height: 48px;
        }

        .mobile-toggle {
            font-size: 1.3rem;
            padding: 0.4rem;
        }

        .logo {
            font-size: 1.2rem;
        }

        .nyxzie-logo-container {
            width: 35px;
            height: 45px;
        }
    }

    /* Very small devices */
    @media (max-width: 360px) {
        .nav-links {
            width: 95%;
            max-width: 260px;
        }

        .nav-links a {
            font-size: 0.95rem;
            padding: 0.9rem 1rem;
        }
    }

    /* Typography */
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p {
        font-size: 1rem !important;
    }

    /* Hero Section */
    .hero-main {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
        gap: 3rem;
    }

    .hero-text {
        margin: 0 auto;
        padding: 0 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2rem 1rem 0;
    }

    .stat-item {
        text-align: center;
        min-width: 120px;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-bot-container {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-fullscreen {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: calc(var(--header-height) + 1rem);
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-scroll-indicator {
        display: none;
        /* Hide on mobile */
    }

    /* Value Proposition List Items Mobile */
    ul[style*="margin-top: 2rem"] li {
        font-size: 0.95rem !important;
        margin-bottom: 0.8rem !important;
    }

    ul[style*="margin-top: 2rem"] li i {
        font-size: 1.1rem !important;
    }

    /* Features Section Mobile */
    .glass-card {
        padding: 1.5rem;
    }

    .glass-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .glass-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Value Proposition Section - 2 column to 1 column */
    .container>div[style*="grid-template-columns: 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Value Proposition Text Mobile */
    .container>div[style*="grid-template-columns: 1fr 1fr"] h2 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .container>div[style*="grid-template-columns: 1fr 1fr"] p {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }

    .container>div[style*="grid-template-columns: 1fr 1fr"] .btn {
        width: 100%;
        justify-content: center;
    }

    /* Features Grid Mobile */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Use Cases Section Mobile */
    .use-case-tabs {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .use-case-item {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem 1rem;
    }

    .use-case-item:last-child {
        border-bottom: none;
    }

    .uc-icon {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .use-case-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .use-case-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Ecosystem Visualization Mobile */
    .ecosystem-visualization {
        min-height: 300px;
        padding: 1.5rem;
    }

    .ecosystem-core {
        width: 100px;
        height: 100px;
    }

    .core-icon {
        font-size: 2.2rem;
    }

    .core-label {
        font-size: 0.85rem;
    }

    .ecosystem-node {
        width: 70px;
        height: 70px;
    }

    .node-icon {
        font-size: 1.6rem;
    }

    .node-label {
        font-size: 0.75rem;
    }

    /* Section Padding Mobile */
    .section-padding {
        padding: 3rem 0;
    }

    /* Text Center Mobile */
    .text-center {
        padding: 0 1rem;
    }

    .text-center h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .text-center p {
        font-size: 0.95rem;
    }

    /* GLOBAL GRID RESET FOR MOBILE */
    .solution-card,
    .services-grid,
    .solutions-grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Solutions Page Specifics */
    .solution-card {
        text-align: center;
        padding: 2rem;
    }

    .solution-card .solution-visual {
        order: -1;
        margin-bottom: 1rem;
    }

    .solution-card.reverse .solution-visual {
        order: -1;
    }

    .solution-card.reverse .solution-content {
        order: 0;
    }

    /* Reset text alignment for lists inside centered cards if desired, 
       but usually centered text looks okay on mobile. 
       If list bullets look weird, we can align them left. */
    .solution-card ul {
        text-align: left;
        display: inline-block;
    }

    /* Contact Page Specifics */
    .form-group {
        margin-bottom: 1rem;
    }

    /* Contact Page Layout Mobile */
    div[style*="grid-template-columns: 1fr 1.5fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Contact Header Mobile */
    section[style*="padding-top: 140px"] {
        padding-top: 120px !important;
    }

    section[style*="padding-top: 140px"] h1 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    section[style*="padding-top: 140px"] p {
        font-size: 0.95rem !important;
        padding: 0 1rem;
    }

    /* Contact Info Card Mobile */
    .glass-card[style*="height: 100%"] {
        height: auto !important;
    }

    /* Contact Info Items Mobile */
    div[style*="display: flex; align-items: flex-start; gap: 1rem"] {
        flex-direction: column;
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }

    div[style*="background: rgba(124, 58, 237, 0.1); padding: 1rem"] {
        padding: 0.75rem !important;
    }

    div[style*="background: rgba(124, 58, 237, 0.1); padding: 1rem"] i,
    div[style*="background: rgba(6, 182, 212, 0.1); padding: 1rem"] i {
        font-size: 1rem !important;
    }

    /* Form Elements Mobile */
    .form-control {
        font-size: 0.95rem;
    }

    textarea.form-control {
        min-height: 100px;
    }

    /* Form Grid Mobile */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-grid ul {
        align-items: center !important;
    }

    .footer-grid .logo {
        justify-content: center;
    }

    .footer-grid div:first-child div {
        justify-content: center;
    }

    /* Value Proposition / Growth Chart */
    .growth-visualization {
        min-height: 300px !important;
        height: auto !important;
        margin-top: 2rem;
    }

    .growth-chart {
        transform: scale(0.9);
        transform-origin: center;
    }

    .growth-stats-overlay {
        flex-wrap: wrap;
        justify-content: space-around;
        gap: 0.5rem;
        padding: 0.8rem;
        bottom: 0.5rem;
    }

    .growth-stat-item {
        flex: 1;
        min-width: 45%;
    }

    .growth-stat-number {
        font-size: 1.2rem;
    }

    .growth-stat-label {
        font-size: 0.65rem;
    }

    /* Adjust chart labels for mobile */
    .growth-label {
        font-size: 8px !important;
    }

    .growth-value {
        font-size: 7px !important;
    }

    /* Adjust SVG viewBox for better mobile display */
    .growth-chart {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .growth-visualization {
        min-height: 250px !important;
        height: auto !important;
    }

    .growth-chart {
        transform: scale(0.75);
        padding: 5px;
    }

    .growth-icon-item {
        transform: scale(0.7);
    }

    .growth-icon {
        font-size: 1rem !important;
    }

    .growth-icon-text {
        font-size: 0.5rem !important;
    }

    .growth-stats-overlay {
        flex-direction: column;
        padding: 0.6rem;
        gap: 0.3rem;
        bottom: 0.3rem;
        left: 0.5rem;
        right: 0.5rem;
    }

    .growth-stat-item {
        min-width: 100%;
    }

    .growth-stat-number {
        font-size: 1rem;
    }

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

    /* Adjust chart labels for very small screens */
    .growth-label {
        font-size: 7px !important;
    }

    .growth-value {
        font-size: 6px !important;
    }

    /* Hide some floating icons on very small screens to reduce clutter */
    .growth-icon-item:nth-child(3),
    .growth-icon-item:nth-child(4) {
        display: none;
    }

    /* Adjust data point sizes */
    .growth-point {
        r: 4 !important;
    }

    .growth-point.pulse-point {
        r: 6 !important;
    }
}

@media (max-width: 360px) {
    .growth-visualization {
        min-height: 220px !important;
    }

    .growth-chart {
        transform: scale(0.65);
    }

    .growth-label {
        font-size: 6px !important;
    }

    .growth-value {
        font-size: 5px !important;
    }

    .growth-stats-overlay {
        padding: 0.5rem;
    }

    .growth-stat-number {
        font-size: 0.9rem;
    }
}

/* Growth Visualization Styles */
.growth-visualization {
    position: relative;
    min-height: 400px;
}

@media (max-width: 1024px) {
    .growth-visualization {
        min-height: 350px;
    }

    .growth-chart {
        transform: scale(0.95);
    }

    .growth-icon-item {
        transform: scale(0.9);
    }
}

@media (max-width: 900px) {
    .growth-visualization {
        min-height: 320px;
    }

    .growth-stats-overlay {
        flex-wrap: wrap;
        gap: 0.8rem;
    }
}

.growth-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
    animation: growthPulse 4s ease-in-out infinite;
}

@keyframes growthPulse {

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

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.growth-chart {
    opacity: 0.9;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.growth-area {
    opacity: 0;
    animation: growthAreaFade 2s ease-out 0.5s forwards;
}

@keyframes growthAreaFade {
    to {
        opacity: 1;
    }
}

.growth-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: growthLineDraw 3s ease-out forwards;
}

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

.growth-label {
    opacity: 0;
    animation: growthLabelAppear 0.5s ease-out forwards;
}

.growth-value {
    opacity: 0;
    animation: growthValueAppear 0.5s ease-out forwards;
}

.data-point-group:nth-child(1) .growth-label,
.data-point-group:nth-child(1) .growth-value {
    animation-delay: 0.5s;
}

.data-point-group:nth-child(2) .growth-label,
.data-point-group:nth-child(2) .growth-value {
    animation-delay: 1s;
}

.data-point-group:nth-child(3) .growth-label,
.data-point-group:nth-child(3) .growth-value {
    animation-delay: 1.5s;
}

.data-point-group:nth-child(4) .growth-label,
.data-point-group:nth-child(4) .growth-value {
    animation-delay: 2s;
}

.data-point-group:nth-child(5) .growth-label,
.data-point-group:nth-child(5) .growth-value {
    animation-delay: 2.5s;
}

@keyframes growthLabelAppear {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

@keyframes growthValueAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

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

.growth-point {
    opacity: 0;
    animation: growthPointAppear 0.5s ease-out forwards;
}

.growth-point:nth-child(1) {
    animation-delay: 0.5s;
}

.growth-point:nth-child(2) {
    animation-delay: 1s;
}

.growth-point:nth-child(3) {
    animation-delay: 1.5s;
}

.growth-point:nth-child(4) {
    animation-delay: 2s;
}

.growth-point:nth-child(5) {
    animation-delay: 2.5s;
}

@keyframes growthPointAppear {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.pulse-point {
    animation: growthPointPulse 2s ease-in-out infinite;
    animation-delay: 2.5s;
}

@keyframes growthPointPulse {

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

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.growth-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.growth-icon-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.growth-icon {
    font-size: 1.5rem;
    color: rgba(124, 58, 237, 0.7);
    animation: growthIconFloat 4s ease-in-out infinite;
}

.growth-icon-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    animation: growthIconTextAppear 0.5s ease-out forwards;
}

.growth-icon-item:nth-child(1) .growth-icon-text {
    animation-delay: 0.2s;
}

.growth-icon-item:nth-child(2) .growth-icon-text {
    animation-delay: 0.7s;
}

.growth-icon-item:nth-child(3) .growth-icon-text {
    animation-delay: 1.2s;
}

.growth-icon-item:nth-child(4) .growth-icon-text {
    animation-delay: 1.7s;
}

@keyframes growthIconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
        opacity: 1;
    }
}

@keyframes growthIconTextAppear {
    to {
        opacity: 1;
    }
}

.growth-stats-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-around;
    z-index: 4;
    background: rgba(10, 10, 18, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: growthStatsAppear 1s ease-out 3s forwards;
}

@keyframes growthStatsAppear {
    to {
        opacity: 1;
    }
}

.growth-stat-item {
    text-align: center;
}

.growth-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.growth-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ecosystem Visualization */
.ecosystem-visualization {
    position: relative;
    min-height: 400px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ecosystem-bg-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.ecosystem-core {
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(10, 10, 18, 0.8);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
    backdrop-filter: blur(5px);
    animation: coreFloat 6s ease-in-out infinite;
}

.core-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.core-label {
    font-size: 0.7rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ecosystem-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: default;
}

.ecosystem-node:hover {
    transform: scale(1.1) !important;
    /* Override inline transform if any */
    border-color: var(--secondary);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.3);
}

.node-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.node-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Positioning Nodes */
.node-whatsapp {
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatNode1 5s ease-in-out infinite;
}

.node-web {
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    animation: floatNode2 5s ease-in-out infinite 1s;
}

.node-crm {
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    animation: floatNode3 5s ease-in-out infinite 2s;
}

.node-analytics {
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    animation: floatNode4 5s ease-in-out infinite 3s;
}

/* Connections */
.ecosystem-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2;
    stroke-dasharray: 5;
    animation: dashFlow 30s linear infinite;
}

@keyframes dashFlow {
    to {
        stroke-dashoffset: -1000;
    }
}

@keyframes pulseGlow {

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

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes coreFloat {

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

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

@keyframes floatNode1 {

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

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

@keyframes floatNode2 {

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

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

@keyframes floatNode3 {

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

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

@keyframes floatNode4 {

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

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

/* Mobile Adjustments - Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-bot-container {
        max-width: 240px;
    }

    .hero-stats {
        gap: 1.5rem;
        padding: 1.5rem 0.5rem 0;
    }

    .stat-item {
        min-width: 100px;
    }

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

    .stat-label {
        font-size: 0.85rem;
    }

    .glass-card {
        padding: 1.25rem;
    }

    .glass-card h3 {
        font-size: 1.2rem;
    }

    .ecosystem-visualization {
        min-height: 280px;
        padding: 1rem;
    }

    .ecosystem-core {
        width: 80px;
        height: 80px;
    }

    .core-icon {
        font-size: 1.8rem;
    }

    .core-label {
        font-size: 0.75rem;
    }

    .ecosystem-node {
        width: 60px;
        height: 60px;
    }

    .node-icon {
        font-size: 1.3rem;
    }

    .node-label {
        font-size: 0.7rem;
    }

    .node-whatsapp {
        top: 5%;
    }

    .node-web {
        right: 2%;
    }

    .node-crm {
        bottom: 5%;
    }

    .node-analytics {
        left: 2%;
    }

    .use-case-item {
        padding: 1.25rem 0.75rem;
    }

    .uc-icon {
        font-size: 1.6rem;
    }

    .use-case-item h4 {
        font-size: 1.1rem;
    }

    .use-case-item p {
        font-size: 0.9rem;
    }

    .section-padding {
        padding: 2.5rem 0;
    }

    /* About Page Small Mobile */
    .about-hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .about-hero h1 {
        font-size: 1.75rem !important;
    }

    .hero-subtext {
        font-size: 0.95rem;
    }

    .story-card {
        padding: 2rem 1.25rem !important;
    }

    .story-card i {
        font-size: 2.5rem !important;
    }

    .mv-card {
        padding: 1.75rem 1.25rem;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .feature-box {
        padding: 1.25rem;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    section[style*="text-align: center"] .glass-card {
        padding: 2rem 1.25rem !important;
    }

    section[style*="text-align: center"] h2 {
        font-size: 1.6rem !important;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-bot-container {
        max-width: 200px;
    }

    .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }

    .glass-card {
        padding: 1rem;
    }

    .ecosystem-visualization {
        min-height: 250px;
    }

    .ecosystem-core {
        width: 70px;
        height: 70px;
    }

    .ecosystem-node {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   SOLUTIONS PAGE: HERO SECTION START
   ============================================ */

/* Solutions Hero */
.solutions-hero {
    position: relative;
    padding-top: calc(var(--header-height) + 120px);
    padding-bottom: 120px;
    background: radial-gradient(circle at 20% 40%, rgba(124, 58, 237, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
        rgba(10, 10, 18, 0.2);
    /* Semi-transparent background to show galaxy */
    text-align: left;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 768px) {
    .solutions-hero {
        padding-top: calc(var(--header-height) + 60px);
        padding-bottom: 80px;
    }

    .solutions-hero h1 {
        text-align: center;
        font-size: 2.5rem;
    }

    .solutions-hero p {
        text-align: center;
    }
}



.solutions-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* Hero Content Styling */
.solutions-hero .container {
    position: relative;
    z-index: 2;
    background: transparent;
}

.solutions-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-align: left;
    letter-spacing: -0.02em;
}

.solutions-hero p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-muted);
    max-width: 650px;
    text-align: left;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   SOLUTIONS PAGE: HERO SECTION END
   ============================================ */

/* ============================================
   SOLUTIONS PAGE: SOLUTION CARDS (ENHANCED STYLE) START
   ============================================ */

/* Solution Cards Grid (Enhanced) */
.solutions-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.solution-card {
    background: rgba(15, 15, 17, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    height: 100%;
    backdrop-filter: blur(20px);
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(124, 58, 237, 0.1);
}

.solution-card .solution-visual {
    width: 64px;
    height: 64px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.solution-visual-inner i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.solution-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.solution-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    width: 100%;
}

.solution-card ul li {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solution-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    font-size: 0.8rem;
}


/* Dark Pill Button */
.solution-card .btn {
    background-color: #27272a;
    /* zinc-800 */
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    /* Slightly squarer pill */
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: auto;
    width: auto;
    display: inline-block;
    box-shadow: none;
}

.solution-card .btn:hover {
    background-color: #3f3f46;
    transform: none;
    box-shadow: none;
}

/* --- Enterprise Suite Special Card --- */
/* Target specific card via :nth-child or class. 
   Assuming Enterprise is the 4th card based on HTML structure.
   But user image has it as 2nd. I will style the one with .badge-popular.
*/

.solution-card:has(.badge-popular),
.solution-card.highlight-card {
    /* Green Glow Gradient Background */
    background: linear-gradient(145deg, #052e16 0%, #1a2e05 100%, #000000 100%);
    /* Or specifically matching the image: Dark card with green glow */
    background: radial-gradient(circle at top right, rgba(22, 163, 74, 0.15), transparent 70%), #0f0f11;
    border-color: rgba(34, 197, 94, 0.3);
    /* green-500 tint */
}

/* Ribbon Badge */
.badge-popular {
    position: absolute;
    top: 24px;
    /* Adjusted for ribbon rotation */
    right: -32px;
    /* Adjusted for ribbon rotation */
    background: #f97316;
    /* Orange-500 */
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    /* Diagonal */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 20;
    border: none;
    border-radius: 0;
    letter-spacing: 1px;
}

/* ============================================
   SOLUTIONS PAGE: SOLUTION CARDS (ENHANCED STYLE) END
   ============================================ */

/* ============================================
   SOLUTIONS PAGE: UTILITY CLASSES START
   ============================================ */

/* Utilities */
.pt-0 {
    padding-top: 0 !important;
}

.mt-8 {
    margin-top: 2rem !important;
}

.mt-pillar {
    margin-top: 6rem !important;
}

.delay-200 {
    transition-delay: 0.2s;
}


.implementation-card {
    background: #0f0f11;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 3rem;
    text-align: left;
}

.implementation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.implementation-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.implementation-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.service-icon.secondary {
    color: var(--secondary);
}

.service-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.service-item p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-features li i {
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

.service-features.secondary li i {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .implementation-card {
        padding: 2.5rem 1.5rem;
    }

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

    .service-item {
        text-align: center;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .service-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .service-features li {
        justify-content: center;
    }
}


/* Solution Overlay Refinement */
.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(15px);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
}

.solution-card:hover .solution-overlay {
    opacity: 1;
    transform: translateY(0);
}

.solution-overlay h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, white, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.solution-overlay ul {
    margin-bottom: 2rem;
}

.solution-overlay li {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.solution-overlay li strong {
    color: white;
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

/* ============================================
   SOLUTIONS PAGE: MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .solutions-hero {
        padding-top: calc(var(--header-height) + 60px);
        padding-bottom: 80px;
    }

    .solutions-grid-container {
        grid-template-columns: 1fr;
        margin-top: -40px;
        padding: 0 1rem;
    }

    .solution-card {
        padding: 2rem;
    }

    .solution-overlay {
        position: relative;
        opacity: 1;
        transform: none;
        background: rgba(255, 255, 255, 0.03);
        padding: 1.5rem;
        margin-top: 2rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        height: auto;
    }

    .solution-card:hover {
        transform: none;
    }
}


/* --- About Page Restructure --- */

/* About Hero */
.about-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 50% 30%, rgba(124, 58, 237, 0.15), transparent 60%);
    overflow: hidden;
}

.about-hero .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

/* Story Timeline */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-timeline {
    margin-top: 2rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2.6rem;
    top: 0.2rem;
    width: 1.2rem;
    height: 1.2rem;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-glow);
    border: 3px solid var(--bg-dark);
}

.timeline-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-size: 1.2rem;
}

.story-visual .story-card {
    text-align: center;
    padding: 4rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.2));
}

.arrow-down {
    margin: 2rem 0;
    font-size: 1.5rem;
    color: var(--text-muted);
    animation: float 3s ease-in-out infinite;
}

/* Mission Vision Grid */
.mv-section {
    padding: 4rem 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mv-card {
    padding: 3rem;
    text-align: center;
    border-top: 3px solid var(--primary);
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.05) 0%, transparent 100%);
    height: 100%;
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    background: rgba(6, 182, 212, 0.1);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Feature Boxes */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(124, 58, 237, 0.3);
}

.feature-icon {
    font-size: 2rem;
    background: -webkit-linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
}


/* Stats Bar */
.stats-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 4rem;
}

.stats-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


.stat-label {
    color: #94a3b8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 768px) {

    /* About Hero Mobile */
    .about-hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .about-hero .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 1rem;
    }

    .about-hero h1 {
        font-size: 2rem !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtext {
        font-size: 1rem;
        padding: 0 1rem;
        margin-top: 1rem;
    }

    /* Story Grid Mobile */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-content {
        order: 1;
    }

    .story-visual {
        order: 2;
        margin-top: 2rem;
    }

    .story-timeline {
        margin-top: 1.5rem;
        padding-left: 1.5rem;
    }

    .timeline-item {
        padding-bottom: 2rem;
    }

    .timeline-item h3 {
        font-size: 1.1rem;
    }

    .timeline-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .timeline-marker {
        left: -1.7rem;
        width: 1rem;
        height: 1rem;
    }

    .story-card {
        padding: 2.5rem 1.5rem !important;
    }

    .story-card i {
        font-size: 3rem !important;
        margin-bottom: 1.5rem !important;
    }

    .story-card h4 {
        font-size: 1.1rem;
    }

    .arrow-down {
        margin: 1.5rem 0;
        font-size: 1.3rem;
    }

    /* Mission Vision Grid Mobile */
    .mv-section {
        padding: 3rem 0;
    }

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

    .mv-card {
        padding: 2rem 1.5rem;
    }

    .mv-icon {
        font-size: 2rem;
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .mv-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .mv-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .feature-box {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .feature-box h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .feature-box p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Stats Bar Mobile */
    .stats-bar {
        padding: 2rem 0;
        margin-top: 3rem;
    }

    .stats-flex {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-item {
        width: 100%;
    }

    .stat-num {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* CTA Section Mobile */
    section[style*="text-align: center"] .glass-card {
        padding: 2.5rem 1.5rem !important;
        margin: 0 1rem;
    }

    section[style*="text-align: center"] h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }

    section[style*="text-align: center"] p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    section[style*="text-align: center"] .btn {
        width: 100%;
        justify-content: center;
    }

    /* Section Header Mobile */
    .section-header {
        padding: 0 1rem;
        margin-bottom: 2rem !important;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Story Section Mobile */
    .story-section {
        padding: 3rem 0;
    }

    .story-section .container {
        padding: 0 1rem;
    }

    /* Container Padding Mobile */
    .container {
        padding: 0 1rem;
        overflow-x: visible;
        width: 100%;
        box-sizing: border-box;
    }

    /* Text Center Mobile Padding */
    .text-center {
        padding: 0 1rem;
    }
}

/* ============================================
   SOLUTIONS PAGE: UTILITY CLASSES END
   ============================================ */

/* ============================================
   SOLUTIONS PAGE: STRATEGIC PILLARS SECTION START
   ============================================ */

/* --- Pillar Navigation Bar --- */
.pillar-nav-bar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 998;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-height: 100vh;
    overflow: visible;
}

.pillar-nav-bar.visible {
    transform: translateY(0);
    opacity: 1;
}

.pillar-nav-bar.scrolled-down {
    transform: translateY(-100%);
}

.pillar-nav-bar .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.pillar-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
}

.pillar-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.pillar-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(124, 58, 237, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.pillar-nav-link:hover::before {
    opacity: 1;
}

.pillar-nav-link:hover {
    color: var(--text-main);
    transform: translateY(-2px);
}

.pillar-nav-link i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pillar-nav-link.active {
    color: var(--text-main);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(124, 58, 237, 0.4);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.pillar-nav-link.active i {
    color: var(--primary);
    transform: scale(1.1);
}

.pillar-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px 2px 0 0;
}

/* --- Pillar Sections --- */
.pillar-section {
    margin-bottom: 4rem;
    width: 100%;
    scroll-margin-top: calc(var(--header-height) + 80px);
    overflow-x: visible;
    /* Allow content to be visible, prevent cutoff */
}

.pillar-section .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: visible;
    /* Allow content to be visible */
    box-sizing: border-box;
    /* Remove width: 100% to let container respect max-width and padding */
}

.pillar-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pillar-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-main);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pillar-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pillar-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Feature Cards Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    box-sizing: border-box;
}

.feature-content.feature-reverse {
    direction: rtl;
}

.feature-content.feature-reverse>* {
    direction: ltr;
}

.feature-text {
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    box-sizing: border-box;
}

.feature-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.4);
    color: var(--primary);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list li i {
    color: var(--primary);
    font-size: 1rem;
}

/* --- Feature Visuals (General) --- */
.feature-visual {
    position: relative;
    z-index: 1;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    box-sizing: border-box;
}

/* --- Feature Visual: ContextIQ™ --- */
.contextiq-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin: 1rem 0;
    min-width: 100%;
    box-sizing: border-box;
}

.brain-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    padding: 0.75rem;
    min-width: 100px;
    box-sizing: border-box;
}

.brain-node i {
    display: block;
    margin-bottom: 0.25rem;
}

.brain-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-main);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

.brain-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.brain-left {
    top: 20%;
    left: 15%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--secondary);
}

.brain-right {
    top: 20%;
    right: 15%;
    transform: translate(50%, -50%);
    font-size: 1.5rem;
    color: var(--secondary);
}

.brain-bottom {
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    font-size: 1.5rem;
    color: var(--secondary);
}


.brain-node span {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
    margin-top: 0.25rem;
    padding: 0 0.5rem;
    line-height: 1.3;
}

.brain-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke: rgba(124, 58, 237, 0.4);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    animation: dash-move 3s linear infinite;
    stroke-linecap: round;
}

@keyframes dash-move {
    to {
        stroke-dashoffset: -20;
    }
}

/* --- Feature Visual: Visual Commerce --- */
.visual-commerce-demo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 2rem;
}

.demo-step {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.demo-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.demo-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.demo-image-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--primary);
}

.scanning-animation {
    width: 80px;
    height: 80px;
    border: 3px solid var(--secondary);
    border-top-color: transparent;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.product-card-mini {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--text-main);
}

.demo-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Mobile Responsive for Visual Commerce Demo */
@media (max-width: 768px) {
    .visual-commerce-demo {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        align-items: stretch;
    }

    .demo-step {
        flex: none;
        width: 100%;
        padding: 1.25rem;
        min-height: auto;
    }

    .demo-arrow {
        transform: rotate(90deg);
        font-size: 1.25rem;
        margin: 0.5rem 0;
        align-self: center;
    }

    .demo-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .demo-text {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .demo-image-placeholder,
    .scanning-animation,
    .product-card-mini {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .scanning-animation {
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .visual-commerce-demo {
        padding: 1rem;
        gap: 1rem;
    }

    .demo-step {
        padding: 1rem;
    }

    .demo-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .demo-text {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .demo-image-placeholder,
    .scanning-animation,
    .product-card-mini {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .demo-arrow {
        font-size: 1rem;
        margin: 0.25rem 0;
    }
}

/* Voice Feature Demo */
.voice-feature-demo {
    margin-top: 1.5rem;
    text-align: center;
}

.voice-input,
.voice-output {
    padding: 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.voice-input i,
.voice-output i {
    font-size: 2rem;
    color: var(--primary);
}

.voice-arrow {
    margin: 1rem 0;
    font-size: 1.5rem;
    color: var(--secondary);
}

/* --- Feature Visual: Voice Intelligence --- */
.voice-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.microphone-icon {
    position: relative;
    font-size: 4rem;
    color: var(--primary);
}

.sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 0.5rem;
}

.sound-waves span {
    width: 4px;
    height: 20px;
    background: var(--secondary);
    border-radius: 2px;
    animation: sound-wave 1.5s ease-in-out infinite;
}

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

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

@keyframes sound-wave {

    0%,
    100% {
        height: 20px;
    }

    50% {
        height: 40px;
    }
}

.checklist-icon {
    font-size: 3rem;
    color: var(--secondary);
}

/* Lead Score Demo */
.lead-score-demo {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.score-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    min-width: 120px;
}

.score-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
}

.score-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.score-badge {
    margin-top: 0.5rem;
    font-size: 1.25rem;
}

.revenue-graph {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 100px;
    flex: 1;
}

.graph-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: grow-bar 1s ease-out;
}

@keyframes grow-bar {
    from {
        height: 0;
    }
}

/* --- Feature Visual: Lead Resurrection (Revenue Dashboard) --- */
.revenue-dashboard {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.dashboard-metric {
    margin-bottom: 1.5rem;
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* --- Feature Visual: Infinity Chat --- */
.infinity-chat-visual {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.chat-widget-preview,
.whatsapp-preview {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}

.widget-header,
.whatsapp-header {
    padding: 1rem;
    background: rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.whatsapp-header {
    background: rgba(37, 211, 102, 0.2);
}

.widget-messages,
.whatsapp-messages {
    padding: 1rem;
}

.widget-msg,
.whatsapp-msg {
    padding: 0.75rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 8px;
    font-size: 0.875rem;
}

.whatsapp-msg {
    background: rgba(37, 211, 102, 0.1);
}

.bridge-arrow {
    position: relative;
    font-size: 2rem;
    color: var(--primary);
}

.bridge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3), transparent);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* --- Feature Visual: Smart Review Milestones --- */
.review-timeline {
    margin-top: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.timeline-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.timeline-content {
    flex: 1;
}

.timeline-content strong {
    display: block;
    margin-bottom: 0.25rem;
}

.timeline-content span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.timeline-arrow {
    text-align: center;
    color: var(--secondary);
    margin: 0.5rem 0;
}

.review-stars {
    position: relative;
    font-size: 2rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.stars-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    z-index: -1;
    animation: pulse-glow 3s infinite;
}

.review-badge {
    text-align: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    width: auto;
    min-width: 150px;
}

/* ============================================
   CONTROL SECTION CSS
   ============================================ */

/* Whisper Chat Demo */
.whisper-chat-demo {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.chat-message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.chat-message:last-child {
    margin-bottom: 0;
}

.msg-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.msg-content {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.875rem;
}

.chat-message.internal .msg-content {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.msg-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 193, 7, 0.3);
    border-radius: 4px;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* --- Feature Visual: Aegis Threat Shield™ --- */
.shield-visual {
    text-align: center;
    padding: 2rem;
}

.shield-icon {
    position: relative;
    display: inline-block;
    font-size: 6rem;
    color: #c0c0c0;
    margin-bottom: 2rem;
}

.shield-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.3), transparent);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.shield-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    animation: ring-pulse 2s ease-in-out infinite;
}

/* Responsive Rings */
.ring-1 {
    width: 120px;
    height: 120px;
}

.ring-2 {
    width: 160px;
    height: 160px;
    animation-delay: 0.3s;
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation-delay: 0.6s;
}

@media (max-width: 480px) {
    .shield-visual {
        padding: 1rem;
    }

    .shield-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .shield-glow {
        width: 120px;
        height: 120px;
    }

    .ring-1 {
        width: 80px;
        height: 80px;
    }

    .ring-2 {
        width: 110px;
        height: 110px;
    }

    .ring-3 {
        width: 140px;
        height: 140px;
    }

    .security-badges {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .badge-item {
        padding: 0.75rem;
        gap: 0.35rem;
    }

    .badge-item i {
        font-size: 1.1rem;
    }

    .badge-item span {
        font-size: 0.65rem;
    }
}


@keyframes ring-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.badge-item {
    padding: 1rem;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid rgba(192, 192, 192, 0.2);
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge-item i {
    font-size: 1.5rem;
    color: #06b6d4;
}

.badge-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Calendar Sync Demo */
.calendar-sync-demo {
    margin-top: 1.5rem;
    text-align: center;
}

.whatsapp-booking,
.calendar-block {
    padding: 1.5rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.calendar-block {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
}

.whatsapp-booking i,
.calendar-block i {
    font-size: 2rem;
    color: var(--primary);
}

.booking-text,
.calendar-text {
    flex: 1;
    text-align: left;
}

.booking-text strong,
.calendar-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.booking-text span,
.calendar-text span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.sync-arrow {
    font-size: 1.5rem;
    color: var(--secondary);
    margin: 0.5rem 0;
    animation: spin 2s linear infinite;
}

/* --- Feature Visual: Google Calendar 2-Way Sync --- */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    min-width: 300px;
    /* Ensure minimum width for readability */
}

/* Container for scrollable calendar on mobile */
.calendar-visual {
    padding: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.calendar-visual::-webkit-scrollbar {
    height: 4px;
}

.calendar-visual::-webkit-scrollbar-thumb {
    background: rgba(124, 58, 237, 0.3);
    border-radius: 2px;
}


.calendar-day {
    padding: 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
}

.calendar-slot {
    padding: 1rem;
    text-align: center;
    border-radius: 8px;
    font-size: 0.75rem;
    border: 1px solid var(--border-light);
}

.calendar-slot.available {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
}

.calendar-slot.booked {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-main);
    font-weight: 600;
}

/* ============================================
   DEVELOPER SECTION CSS
   ============================================ */

/* --- Feature Visual: Developer API & Webhooks (Code Snippet) --- */
.code-snippet {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow-x: auto;
    overflow-y: visible;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border-light);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.code-title {
    margin-left: auto;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.code-content {
    padding: 1.5rem;
    overflow-x: auto;
}

.code-content pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.code-keyword {
    color: #c792ea;
}

.code-string {
    color: #c3e88d;
}

.code-property {
    color: #82aaff;
}

.api-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    box-sizing: border-box;
}

.api-badge {
    padding: 0.75rem 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.api-badge:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pillar-title {
        font-size: 1.75rem;
    }

    .pillar-subtitle {
        font-size: 1rem;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        overflow-x: visible;
        box-sizing: border-box;
    }

    .feature-content.feature-reverse {
        direction: ltr;
    }

    .feature-text h3 {
        font-size: 1.5rem;
    }

    .feature-text p {
        font-size: 1rem;
    }

    .contextiq-visual {
        height: 280px;
        padding: 1.5rem;
        margin: 0.5rem 0;
    }

    .brain-center {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .brain-left {
        top: 15%;
        left: 10%;
    }

    .brain-right {
        top: 15%;
        right: 10%;
    }

    .brain-bottom {
        bottom: 8%;
    }

    .brain-node {
        gap: 0.5rem;
        padding: 0.4rem;
        min-width: 80px;
    }

    .brain-node span {
        font-size: 0.75rem;
        padding: 0 0.25rem;
    }

    .visual-commerce-demo {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        align-items: stretch;
    }

    .demo-step {
        flex: none;
        width: 100%;
        padding: 1.25rem;
    }

    .demo-arrow {
        transform: rotate(90deg);
        font-size: 1.25rem;
        margin: 0.5rem 0;
        align-self: center;
    }

    .demo-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .demo-text {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .demo-image-placeholder,
    .scanning-animation,
    .product-card-mini {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .scanning-animation {
        border-width: 2px;
    }

    .lead-score-demo {
        flex-direction: column;
        align-items: stretch;
    }

    .revenue-graph {
        height: 80px;
    }

    .infinity-chat-visual {
        flex-direction: column;
    }

    .bridge-arrow {
        transform: rotate(90deg);
    }

    /* Control & Developer Sections Mobile */
    .shield-visual {
        padding: 1.5rem;
    }

    .shield-icon {
        font-size: 4.5rem;
        margin-bottom: 1.5rem;
    }

    .shield-glow {
        width: 160px;
        height: 160px;
    }

    .ring-1 {
        width: 100px;
        height: 100px;
    }

    .ring-2 {
        width: 140px;
        height: 140px;
    }

    .ring-3 {
        width: 180px;
        height: 180px;
    }

    .security-badges {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .badge-item {
        padding: 0.875rem;
        gap: 0.4rem;
    }

    .badge-item i {
        font-size: 1.25rem;
    }

    .badge-item span {
        font-size: 0.7rem;
    }

    .calendar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .api-badges {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }

    .api-badge {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .code-snippet {
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .code-content {
        padding: 1rem;
    }

    .code-content pre {
        font-size: 0.75rem;
        overflow-x: auto;
        word-break: break-word;
    }

    .pillar-section .container {
        padding: 0 1rem;
        overflow-x: visible;
        box-sizing: border-box;
        max-width: 100%;
        margin: 0 auto;
        /* Remove width: 100% to let container respect padding and create proper margins */
    }

    .feature-card {
        padding: 1.5rem;
        overflow-x: visible;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        /* Ensure strict width */
        max-width: 100%;
        overflow: hidden;
        /* Prevent ANY child from blowing it out */
        box-sizing: border-box;
        min-width: 0;
    }

    .feature-visual {
        order: -1;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        /* STRICTLY contain visuals */
        box-sizing: border-box;
        min-width: 0;
        border-radius: 12px;
        margin-bottom: 0;
        /* Align perfectly */
    }

    /* Exceptions: We DO NOT want overflow visible on mobile for these anymore as it breaks layout */
    /* Instead, the internal elements (code-snippet, sdk-platforms) have their own overflow-x: auto */

    .feature-visual .code-snippet {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        box-sizing: border-box;
        margin-bottom: 0;
        display: block;
        /* Ensure block behavior */
    }

    .feature-visual .api-badges {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        /* Allow badges to scroll if needed */
        box-sizing: border-box;
        padding-bottom: 0.5rem;
        /* Space for scrollbar */
        margin-top: 1rem;
    }


    /* Pillar Navigation Mobile (Refined) */
    .pillar-nav-bar {
        top: var(--header-height);
        background: rgba(10, 10, 18, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        min-height: 60px;
        /* Ensure touch target height */
    }

    .pillar-nav-bar .container {
        padding: 0;
        width: 100%;
        overflow-x: auto;
        /* Allow horizontal scroll for container too if needed */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .pillar-nav-links {
        gap: 0.5rem;
        /* Restore some gap */
        padding: 0.75rem 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        display: flex;
        justify-content: flex-start;
        /* Ensure it doesn't wrap and items have space */
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .pillar-nav-links::-webkit-scrollbar {
        display: none;
    }

    .pillar-nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        flex: 0 0 auto;
        /* Prevent shrinking */
        border: 1px solid transparent;
        /* Prevent layout shift on active border */
    }

    .pillar-nav-link span {
        display: none;
    }

    .pillar-nav-link.active {
        background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(6, 182, 212, 0.25));
        border-color: rgba(124, 58, 237, 0.3);
        color: white;
    }

    .pillar-nav-link.active span {
        display: inline-block;
        margin-left: 0.5rem;
    }

    @media (min-width: 580px) {
        .pillar-nav-link span {
            display: inline-block;
            margin-left: 0.5rem;
        }
    }
}


/* ============================================
   SOLUTIONS PAGE: STRATEGIC PILLARS SECTION END
   ============================================ */

/* ============================================
   SOLUTIONS PAGE: DEVELOPER SECTION START
   (SDK & MOBILE FEATURES)
   ============================================ */

/* SDK Platforms */
.sdk-platforms {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    flex-wrap: wrap;
}

.platform-card {
    width: 180px;
    min-width: 160px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.platform-react .platform-icon {
    color: #61dafb;
}

.platform-flutter .platform-icon {
    color: #02569b;
}

.platform-html .platform-icon {
    color: #e34c26;
}

.platform-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.platform-badge {
    font-size: 0.75rem;
    color: var(--text-muted);
    padding: 0.25rem 0.75rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    display: inline-block;
}

/* --- Feature Visual: Drop-in Widget (Widget Preview) --- */
.widget-preview-container {
    position: relative;
    padding: 2rem;
    width: 100%;
    overflow: visible;
}

.website-mockup {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: visible;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border-light);
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
}

.mockup-url {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: visible;
    text-overflow: ellipsis;
    flex: 1;
    text-align: center;
    margin: 0 1rem;
}

.mockup-content {
    padding: 2rem;
    min-height: 200px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.mockup-placeholder {
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.widget-floating {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.95), rgba(6, 182, 212, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.4);
    animation: widget-float 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes widget-float {

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

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

.widget-header-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 1rem;
}

.widget-header-mini i {
    font-size: 1.25rem;
}

.widget-bubble {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.bubble-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: bubble-pulse 1.5s ease-in-out infinite;
}

.bubble-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.bubble-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bubble-pulse {

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

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.widget-code-block {
    margin-top: 1.5rem;
}

.code-snippet-small {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.code-header-small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border-light);
}

.code-content-small {
    padding: 1rem;
    overflow-x: auto;
}

.code-content-small pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
}

/* --- Feature Visual: White Label & Multi-Tenant --- */
.white-label-visual {
    padding: 2rem;
}

.architecture-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.arch-level {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.arch-top {
    width: 100%;
}

.arch-box {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.2));
    border: 2px solid var(--primary);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
}

.arch-box i {
    font-size: 2rem;
    color: var(--primary);
}

.arch-box span {
    font-weight: 600;
    color: var(--text-main);
}

.arch-connector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.connector-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.connector-node {
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.2);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.arch-bottom {
    width: 100%;
    flex-wrap: wrap;
}

.arch-box-small {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    flex: 1;
    max-width: 150px;
}

.arch-box-small i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.arch-box-small span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.arch-more {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--primary);
    justify-content: center;
}

.arch-more span {
    color: var(--primary);
    font-weight: 600;
}

.white-label-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.label-badge {
    padding: 0.75rem 1.25rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary);
}

.label-badge i {
    font-size: 1rem;
}

/* ============================================
   SOLUTIONS PAGE: DEVELOPER SECTION END
   ============================================ */

/* ============================================
   SOLUTIONS PAGE: DEVELOPER SECTION MOBILE START
   ============================================ */

/* Mobile Responsive for Developer Sections */
@media (max-width: 768px) {
    .sdk-platforms {
        flex-direction: row;
        overflow-x: auto;
        padding: 1.5rem;
        gap: 1.5rem;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .sdk-platforms::-webkit-scrollbar {
        height: 6px;
    }

    .sdk-platforms::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 3px;
    }

    .sdk-platforms::-webkit-scrollbar-thumb {
        background: rgba(124, 58, 237, 0.5);
        border-radius: 3px;
    }

    .platform-card {
        min-width: 150px;
        flex-shrink: 0;
        padding: 1.5rem;
    }

    .widget-preview-container {
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        /* Prevent widget float from blowing out */
    }

    .website-mockup {
        overflow: hidden;
        /* Changed from visible to hidden to contain floating widget */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .mockup-header {
        padding: 0.5rem 0.75rem;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .mockup-url {
        font-size: 0.7rem;
        margin: 0 0.5rem;
        overflow: hidden;
        /* overflow visible causing blowout */
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 1;
        min-width: 0;
        text-align: center;
    }

    .mockup-dots {
        flex-shrink: 0;
    }

    .mockup-content {
        padding: 1.5rem;
        min-height: 150px;
    }

    .widget-floating {
        width: 180px;
        max-width: calc(100% - 20px);
        bottom: 10px;
        right: 10px;
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .widget-header-mini {
        font-size: 0.9rem;
    }

    .widget-header-mini span {
        font-size: 0.8rem;
    }


    .architecture-diagram {
        gap: 1rem;
        min-width: 280px;
        /* Ensure diagram has space */
    }

    .white-label-visual {
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .white-label-visual::-webkit-scrollbar {
        height: 4px;
    }

    .white-label-visual::-webkit-scrollbar-thumb {
        background: rgba(124, 58, 237, 0.3);
        border-radius: 2px;
    }

    .arch-box {
        min-width: 150px;
        padding: 1rem 1.5rem;
    }

    .arch-box-small {
        min-width: 100px;
        max-width: 120px;
    }

    .connector-line {
        width: 30px;
    }

    .white-label-badges {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1.5rem;
    }

    .label-badge {
        justify-content: center;
    }
}


/* ============================================
   SOLUTIONS PAGE: DEVELOPER SECTION MOBILE END
   ============================================ */

/* ============================================
   SOLUTIONS PAGE CSS END
   ============================================ */
/* ============================================
   NX DEVELOPER SECTION (NEW ARCHITECTURE)
   ============================================ */

/* Mobile-First Layout Rules */
.nx-pillar-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.nx-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    /* Ensure padding inside width */
}

.nx-section-padding {
    padding: 6rem 0;
}

.nx-mt-pillar {
    margin-top: 4rem;
}

.nx-mt-lg {
    margin-top: 2rem;
}

/* Header */
.nx-pillar-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.nx-pillar-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.nx-pillar-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.nx-text-gradient {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nx-pillar-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Grid & Cards */
.nx-features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nx-feature-card {
    border-radius: 24px;
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nx-glass-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nx-highlight-card {
    border-color: rgba(124, 58, 237, 0.3);
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.05), transparent 60%),
        rgba(255, 255, 255, 0.02);
}

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

.nx-feature-reverse {
    direction: rtl;
}

.nx-feature-reverse>.nx-feature-text {
    direction: ltr;
}

.nx-feature-reverse>.nx-feature-visual {
    direction: ltr;
}

/* Content Text */
.nx-feature-text {
    text-align: left;
}

.nx-feature-badge {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nx-feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.nx-feature-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nx-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 1rem;
}

.nx-feature-list i {
    color: var(--secondary);
}

/* White Label Icon List - Ensure icons are visible */
.nx-wl-icon-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.nx-wl-icon-list li i:first-child {
    color: var(--secondary);
    flex-shrink: 0;
}

.nx-wl-icon-list li i.nx-inline-icon {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #00e5ff !important;
    font-size: 1.2rem !important;
    margin-left: auto;
    flex-shrink: 0;
}

/* Buttons */
.nx-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nx-btn-primary {
    background: linear-gradient(135deg, var(--primary), #6d28d9);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.nx-btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

.nx-btn:hover {
    transform: translateY(-2px);
}

/* Visual Container - STRICT LAYOUT FIXES */
.nx-feature-visual {
    width: 100%;
    /* Ensure it takes space */
    position: relative;
}

/* Code Snippet */
.nx-code-snippet {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
}

.nx-code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--border-light);
}

.nx-code-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.nx-code-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.nx-code-content {
    padding: 1.5rem;
    overflow-x: auto;
}

.nx-code-content pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.nx-code-keyword {
    color: #c678dd;
}

.nx-code-string {
    color: #98c379;
}

.nx-code-property {
    color: #e06c75;
}

/* Badges */
.nx-api-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nx-api-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.85rem;
}

/* SDK Platforms */
.nx-sdk-platforms {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nx-platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    min-width: 100px;
}

.nx-platform-card i {
    font-size: 2rem;
    color: var(--text-main);
}

.nx-platform-react i {
    color: #61dafb;
}

.nx-platform-flutter i {
    color: #42a5f5;
}

.nx-platform-html i {
    color: #e44d26;
}

/* Widget Preview */
.nx-widget-preview {
    position: relative;
    height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.nx-widget-floating {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.4);
    animation: float 3s ease-in-out infinite;
}

/* Widget Code */
.nx-widget-code {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    color: #a0aec0;
    font-size: 0.85rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* MOBILE RESPONSIVE FIXES (INDUSTRIAL GRADE) */
@media (max-width: 900px) {

    .nx-container {
        padding: 0 1rem;
        /* Consistent padding */
        width: 100%;
        overflow: visible;
    }

    .nx-feature-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        /* Reduced padding inside card */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        /* Prevent blowout */
    }

    .nx-feature-visual {
        order: -1;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        /* STRICTLY contain visuals */
        border-radius: 12px;
    }

    .nx-feature-reverse {
        direction: ltr;
        /* Reset direction for mobile */
    }

    /* Scrollable areas MUST handle their own overflow */
    .nx-code-content,
    .nx-widget-code,
    .nx-sdk-platforms,
    .nx-api-badges {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-bottom: 0.5rem;
    }

    .nx-sdk-platforms {
        flex-wrap: nowrap;
        /* Scroll instead of wrap */
        justify-content: flex-start;
        padding: 0.5rem;
    }

    .nx-platform-card {
        min-width: 90px;
        flex: 0 0 auto;
    }

    .nx-pillar-title {
        font-size: 2rem;
    }

}

/* White Label Card Polish (Desktop) */
/* White Label Card Polish (Desktop) */
@media (min-width: 901px) {

    /* Revert to standard grid: Text Left, Visual Right */
    .nx-highlight-card .nx-feature-text {
        text-align: left;
        width: auto;
        max-width: none;
        margin: 0;
    }

    /* Keep features in a grid but aligned left */
    .nx-highlight-card .nx-feature-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        text-align: left;
        margin: 2rem 0;
        /* No auto margin */
        max-width: 400px;
    }

    .nx-highlight-card .nx-btn {
        margin-top: 2rem;
        display: inline-flex;
    }
}

/* ============================================
   OLEE-STYLE ANIMATIONS & POLISH
   ============================================ */

/* --- 1. ContextIQ Brain Pulse Animation --- */
.brain-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(30, 30, 40, 0.9);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #00e5ff;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.brain-node span {
    font-size: 0.7rem;
    margin-top: 5px;
    color: #a0aec0;
}

.brain-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    font-size: 2rem;
    border-color: #00e5ff;
    background: #0f1014;
}

.brain-left {
    top: 20%;
    left: 20%;
    animation: float 6s ease-in-out infinite;
}

.brain-right {
    top: 20%;
    right: 20%;
    animation: float 6s ease-in-out infinite 1s;
}

.brain-bottom {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation: float 6s ease-in-out infinite 2s;
}

.connection-line {
    stroke: #00e5ff;
    stroke-width: 2;
    stroke-dasharray: 10;
    opacity: 0.3;
    animation: dash 30s linear infinite;
}

/* --- 2. Visual Commerce Scanning Animation --- */
.visual-commerce-demo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.demo-step {
    text-align: center;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

.step-1 {
    animation-delay: 0.2s;
}

.step-2 {
    animation-delay: 1.2s;
}

/* Appears after user sends */
.step-3 {
    animation-delay: 3.5s;
}

/* Appears after scan */

.scanning-animation {
    width: 100%;
    height: 2px;
    background: #00e5ff;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 0 10px #00e5ff;
    animation: scan 1.5s ease-in-out infinite;
}

/* --- 3. Whisper Chat Bubbles --- */
.whisper-chat-demo {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.chat-message {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(10px);
    animation: popIn 0.4s forwards;
}

.chat-message.customer {
    align-self: flex-start;
    animation-delay: 0.5s;
}

.chat-message.internal {
    align-self: center;
    width: 90%;
    animation-delay: 1.5s;
}

.chat-message.agent {
    align-self: flex-end;
    flex-direction: row-reverse;
    animation-delay: 2.5s;
}

.msg-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #e2e8f0;
}

/* The Yellow 'Internal Note' style */
.chat-message.internal .msg-content {
    background: rgba(255, 215, 0, 0.15);
    /* Gold tint */
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

@keyframes float {

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

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

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

/* --- Industry Card CSS --- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.3);
}

.ind-icon {
    font-size: 2rem;
    color: #00e5ff;
    margin-bottom: 1.5rem;
}

.ind-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.ind-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #a0aec0;
}

.ind-features li i {
    color: #00e5ff;
    font-size: 0.8rem;
}

/* --- Implementation Section CSS --- */
.implementation-wrapper {
    padding: 3rem;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -1rem;
    position: relative;
    z-index: 0;
}

.step-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-divider {
    color: #00e5ff;
    font-size: 1.5rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .steps-container {
        flex-direction: column;
    }

    .step-divider {
        transform: rotate(90deg);
    }
}

/* --- Browser Mockup Widget CSS --- */
.nx-browser-mockup {
    background: #0f1014;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.nx-browser-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nx-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4a5568;
}

.nx-browser-dots span:nth-child(1) {
    background: #ff5f56;
}

/* Red */
.nx-browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

/* Yellow */
.nx-browser-dots span:nth-child(3) {
    background: #27c93f;
}

/* Green */

.nx-browser-url {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    color: #718096;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    text-align: center;
}

.nx-browser-body {
    height: 200px;
    position: relative;
    background: linear-gradient(180deg, rgba(20, 20, 30, 0) 0%, rgba(20, 20, 30, 0.8) 100%);
}

.nx-widget-floating {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    /* WhatsApp Green */
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}


/* --- White Label Visuals --- */
.nx-white-label-visual {
    position: relative;
    height: 300px;
    /* Increased height for better spacing */
    width: 100%;
    /* Strict width constraint */
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Prevent overflow */
}

.nx-wl-agency {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    z-index: 2;
    position: relative;
    backdrop-filter: blur(10px);
}

.nx-wl-agency i {
    font-size: 2.5rem;
    color: #fff;
}

.nx-wl-agency span {
    font-weight: 600;
    color: #a0aec0;
    font-size: 0.9rem;
}

.nx-wl-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00e5ff;
    font-size: 1rem;
    animation: orbit 10s linear infinite;
    z-index: 1;
}

/* Adjusted positions for smaller grid column */
.float-1 {
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.float-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: -3s;
}

.float-3 {
    top: 50%;
    right: 5%;
    animation-delay: -6s;
}

@keyframes orbit {
    0% {
        transform: translateY(0) scale(1);
    }

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

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


.nx-vc-icon {
    width: 60px;
    height: 60px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec4899;
    font-size: 1.5rem;
    margin: 0 auto 10px auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
}

/* White Label Visual - Simplified Layout */
.nx-white-label-visual-simple {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 100%;
}

.nx-wl-agency-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.nx-wl-agency-center i {
    font-size: 2.5rem;
    color: #fff;
}

.nx-wl-agency-center span {
    font-weight: 600;
    color: #a0aec0;
    font-size: 0.9rem;
}

.nx-wl-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 350px;
}

.nx-wl-feature-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nx-wl-feature-icon:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-3px);
}

.nx-wl-feature-icon i {
    font-size: 1.5rem;
    color: #00e5ff;
}

.nx-wl-feature-icon span {
    font-size: 0.75rem;
    color: #a0aec0;
    text-align: center;
    font-weight: 500;
}


/* White Label Inline Icons */
.nx-wl-icon-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nx-inline-icon {
    font-size: 1.2rem !important;
    color: #00e5ff !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-left: auto;
    display: inline-block !important;
}

.nx-wl-icon-list li i.nx-inline-icon {
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #00e5ff !important;
    font-size: 1.2rem !important;
}


/* FAQ Accordion Styles */
.faq-accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-group {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-glow);
    background: var(--bg-card-hover);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-question[aria-expanded="true"] {
    color: var(--primary);
}

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

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer-content p {
    margin: 0;
}

/* Nyxzie Academy Styles */
.nx-academy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.nx-academy-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0;
    cursor: pointer;
}

.nx-academy-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.nx-academy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nx-academy-card:hover .nx-academy-image img {
    transform: scale(1.1);
}

.nx-academy-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    background: var(--primary-glow);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nx-academy-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.nx-academy-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nx-academy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--white);
    transition: color 0.3s ease;
}

.nx-academy-card:hover h3 {
    color: var(--primary);
}

.nx-academy-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.nx-academy-link {
    margin-top: auto;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.nx-academy-link:hover {
    gap: 0.8rem;
}

/* Article Styles */
.nx-article-container {
    max-width: 900px;
    margin: 0 auto;
}

.nx-article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.nx-article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.nx-article-date {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.nx-article-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.nx-article-author {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
}

.nx-article-hero {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.nx-article-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.nx-article-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.nx-article-body p {
    margin-bottom: 2rem;
}

.nx-article-body h3 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
    color: var(--white);
}

.nx-article-body ul {
    margin-bottom: 2.5rem;
    list-style: none;
}

.nx-article-body li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.nx-article-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.nx-article-footer {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (max-width: 768px) {
    .nx-article-title {
        font-size: 2rem;
    }
}

/* SEO-safe hidden section (visible to Google but not users) */
.seo-hidden {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    pointer-events: none;
}