/* ============================================
   JURIDION.APP - AAA PREMIUM DESIGN
   Apple-Level Polish & Refinement
============================================ */

/* CSS Variables */
:root {
    /* Colors - Refined Palette */
    --black: #000000;
    --black-rich: #0a0a0a;
    --gray-950: #111111;
    --gray-900: #1d1d1f;
    --gray-800: #2d2d2f;
    --gray-700: #424245;
    --gray-600: #6e6e73;
    --gray-500: #86868b;
    --gray-400: #a1a1a6;
    --gray-300: #d2d2d7;
    --white: #f5f5f7;
    --pure-white: #ffffff;

    /* Accent Colors - Vibrant */
    --blue: #007AFF;
    --blue-light: #5AC8FA;
    --green: #34C759;
    --purple: #AF52DE;
    --purple-light: #DA8FFF;
    --red: #FF3B30;
    --orange: #FF9500;
    --cyan: #32ADE6;
    --teal: #00C7BE;

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', sans-serif;

    /* Spacing */
    --nav-height: 52px;
    --section-padding: 100px;
    --container-width: 1200px;

    /* Animation Curves */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.5);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for grid items */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-main);
    background: var(--black);
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

::selection {
    background: var(--blue);
    color: var(--pure-white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION - Premium Glass Nav
============================================ */
.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s var(--ease-out-expo);
}

.global-nav.scrolled {
    background: rgba(0, 0, 0, 0.85);
}

.nav-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.25s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
    color: var(--pure-white);
}

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

.btn-nav {
    font-size: 14px;
    font-weight: 500;
    color: var(--pure-white);
    background: var(--blue);
    padding: 8px 18px;
    border-radius: 980px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-nav:hover {
    background: #0066d6;
    transform: scale(1.02);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav-outline {
    font-size: 14px;
    font-weight: 500;
    color: var(--pure-white);
    background: transparent;
    padding: 8px 18px;
    border-radius: 980px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-nav-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 80px;
    position: relative;
    overflow: visible;
}

/* ============================================
   ANIMATED AMBIENT BACKGROUND
============================================ */
.ambient-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Stripe-style Grid Overlay */
.ambient-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 20%, transparent 70%);
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.85;
    will-change: transform;
}

.blob-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(175, 82, 222, 0.65) 0%, rgba(175, 82, 222, 0.2) 50%, rgba(175, 82, 222, 0) 70%);
    top: -150px;
    right: 5%;
    animation: blob-float-1 20s ease-in-out infinite;
}

.blob-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.55) 0%, rgba(0, 122, 255, 0.15) 50%, rgba(0, 122, 255, 0) 70%);
    bottom: 0;
    left: -5%;
    animation: blob-float-2 25s ease-in-out infinite;
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(90, 200, 250, 0.4) 0%, rgba(90, 200, 250, 0.1) 50%, rgba(90, 200, 250, 0) 70%);
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    animation: blob-float-3 18s ease-in-out infinite;
}

@keyframes blob-float-1 {

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

    25% {
        transform: translate(-30px, 40px) scale(1.05);
    }

    50% {
        transform: translate(20px, -20px) scale(0.95);
    }

    75% {
        transform: translate(-20px, -30px) scale(1.02);
    }
}

@keyframes blob-float-2 {

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

    33% {
        transform: translate(40px, -30px) scale(1.08);
    }

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

@keyframes blob-float-3 {

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

    50% {
        transform: translateX(-50%) translate(30px, -40px) scale(1.1);
    }
}

/* Ambient Lights - Moving spotlights */
.ambient-light {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: screen;
}

.light-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(175, 82, 222, 0.08) 0%, transparent 50%);
    top: -200px;
    left: 20%;
    animation: light-drift-1 30s ease-in-out infinite;
}

.light-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.06) 0%, transparent 50%);
    bottom: -100px;
    right: 10%;
    animation: light-drift-2 25s ease-in-out infinite;
}

@keyframes light-drift-1 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.8;
    }

    50% {
        transform: translate(100px, 50px);
        opacity: 1;
    }
}

@keyframes light-drift-2 {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }

    50% {
        transform: translate(-80px, -40px);
        opacity: 0.9;
    }
}

/* Noise Overlay for texture */
.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* ============================================
   EDGE GLOW - Linear.app Inspired
============================================ */
.edge-glow {
    position: fixed;
    pointer-events: none;
    z-index: 100;
}

.edge-glow-left,
.edge-glow-right {
    position: fixed;
    top: 0;
    width: 3px;
    height: 100vh;
    pointer-events: none;
    z-index: 100;
}

.edge-glow-left {
    left: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(0, 122, 255, 0.4) 20%,
            rgba(175, 82, 222, 0.6) 50%,
            rgba(0, 122, 255, 0.4) 80%,
            transparent 100%);
    animation: edge-glow-pulse-left 4s ease-in-out infinite;
}

.edge-glow-right {
    right: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(175, 82, 222, 0.4) 20%,
            rgba(0, 122, 255, 0.6) 50%,
            rgba(175, 82, 222, 0.4) 80%,
            transparent 100%);
    animation: edge-glow-pulse-right 4s ease-in-out infinite 2s;
}

.edge-glow-left::after,
.edge-glow-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: inherit;
    filter: blur(15px);
    opacity: 0.6;
}

@keyframes edge-glow-pulse-left {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.9);
    }

    50% {
        opacity: 0.8;
        transform: scaleY(1);
    }
}

@keyframes edge-glow-pulse-right {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.9);
    }

    50% {
        opacity: 0.8;
        transform: scaleY(1);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 24px 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(72px, 14vw, 140px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: linear-gradient(135deg, var(--purple-light), var(--blue-light), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {

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

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

.hero-tagline {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    color: var(--gray-500);
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--blue);
    color: var(--pure-white);
    font-size: 17px;
    font-weight: 500;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    background: #0066d6;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
}

.btn-primary.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    color: var(--blue);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 14px;
}

.btn-secondary:hover {
    background: rgba(0, 122, 255, 0.1);
}

/* Hero Visual - 3D Perspective Container */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    perspective: 1500px;
    perspective-origin: 50% 0%;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 50% at 50% 50%, rgba(175, 82, 222, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 80% 60% at 30% 60%, rgba(0, 122, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    filter: blur(40px);
}

/* ============================================
   FLOATING ELEMENTS - Stripe Inspired
============================================ */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(20, 20, 22, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    opacity: 0;
    animation: float-in 0.8s var(--ease-out-expo) forwards;
}

.float-card-1 {
    top: 15%;
    left: -5%;
    animation-delay: 1.2s;
}

.float-card-2 {
    top: 35%;
    right: -8%;
    animation-delay: 1.5s;
}

.float-card-3 {
    bottom: 25%;
    left: -3%;
    animation-delay: 1.8s;
}

@keyframes float-in {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

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

.float-card-1 {
    animation: float-in 0.8s var(--ease-out-expo) 1.2s forwards, float-bob-1 6s ease-in-out 2s infinite;
}

.float-card-2 {
    animation: float-in 0.8s var(--ease-out-expo) 1.5s forwards, float-bob-2 7s ease-in-out 2.3s infinite;
}

.float-card-3 {
    animation: float-in 0.8s var(--ease-out-expo) 1.8s forwards, float-bob-3 5s ease-in-out 2.6s infinite;
}

@keyframes float-bob-1 {

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

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

@keyframes float-bob-2 {

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

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

@keyframes float-bob-3 {

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

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

.float-icon {
    font-size: 24px;
    line-height: 1;
}

.float-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.float-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.float-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.float-value.success {
    color: var(--green);
}

/* Keyboard Shortcut Hint */
.float-kbd {
    position: absolute;
    bottom: 10%;
    right: -2%;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(20, 20, 22, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    opacity: 0;
    animation: float-in 0.8s var(--ease-out-expo) 2.1s forwards, float-bob-2 8s ease-in-out 2.9s infinite;
}

.float-kbd kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-300);
}

.float-kbd span {
    font-size: 12px;
    color: var(--gray-500);
    margin-left: 4px;
}

/* Hide floating elements on mobile */
@media (max-width: 1100px) {
    .floating-elements {
        display: none;
    }
}

/* Hero Screenshot - 3D Perspective Transform */
.hero-screenshot {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: rotateX(8deg) rotateY(0deg) translateZ(0);
    transform-style: preserve-3d;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 50px 100px -30px rgba(0, 0, 0, 0.7),
        0 30px 60px -20px rgba(0, 0, 0, 0.5),
        0 0 120px -40px rgba(175, 82, 222, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s ease;
}

.hero-screenshot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 10;
}

.hero-screenshot:hover {
    transform: rotateX(4deg) rotateY(0deg) translateZ(20px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.15),
        0 60px 120px -30px rgba(0, 0, 0, 0.8),
        0 40px 80px -25px rgba(0, 0, 0, 0.5),
        0 0 150px -40px rgba(175, 82, 222, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.hero-screenshot img,
.hero-screenshot video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-video {
    border-radius: inherit;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gray-600), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {

    0%,
    100% {
        opacity: 0.6;
        height: 60px;
    }

    50% {
        opacity: 1;
        height: 80px;
    }
}

/* ============================================
   INTRO STATEMENT
============================================ */
.intro-statement {
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.statement-text {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    max-width: 900px;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
}

.statement-text .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s var(--ease-out-expo);
}

.statement-text .word.visible {
    opacity: 1;
    transform: translateY(0);
}

.statement-text .word.highlight {
    color: var(--blue);
}

.statement-sub {
    font-size: 19px;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-out-expo) 0.4s;
}

.statement-sub.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BENTO GRID
============================================ */
.features-section {
    padding: var(--section-padding) 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-card {
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Animated Border Glow - Raycast Inspired */
.bento-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(var(--border-angle, 0deg),
            transparent 40%,
            rgba(0, 122, 255, 0.5) 50%,
            rgba(175, 82, 222, 0.5) 55%,
            transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(175, 82, 222, 0.08),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-card:hover::before {
    opacity: 1;
    animation: border-glow-spin 4s linear infinite;
}

.bento-card:hover::after {
    opacity: 1;
}

@keyframes border-glow-spin {
    0% {
        --border-angle: 0deg;
    }

    100% {
        --border-angle: 360deg;
    }
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 80px -20px rgba(175, 82, 222, 0.3),
        0 0 40px -15px rgba(0, 122, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bento-card.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.bento-card.bento-stats {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.bento-label.blue {
    color: var(--blue);
}

.bento-label.green {
    color: var(--green);
}

.bento-label.red {
    color: var(--red);
}

.bento-label.purple {
    color: var(--purple);
}

.bento-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.bento-desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.5;
    max-width: 400px;
}

.bento-visual {
    margin-top: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bento-visual img,
.bento-visual-small img {
    width: 100%;
    height: auto;
    display: block;
}

.bento-visual-small {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Stats Grid */
.stat-grid {
    display: flex;
    gap: 48px;
}

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

.stat-value {
    display: block;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-value.green {
    color: var(--green);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   AGENTS SPECIALISTS SECTION
============================================ */
.agents-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: linear-gradient(180deg, var(--black) 0%, #0d0a1a 50%, var(--black) 100%);
    overflow: hidden;
}

.agents-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: 0.3;
}

.agents-header {
    text-align: center;
    margin-bottom: 50px;
}

.agents-header .section-label.purple {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-color: rgba(175, 82, 222, 0.3);
}

.agents-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

/* Screenshot Visual */
.agents-visual {
    position: relative;
}

.agents-screenshot-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(175, 82, 222, 0.2),
        0 0 0 1px rgba(175, 82, 222, 0.1);
    transform: perspective(1000px) rotateY(-3deg);
    transition: transform 0.6s var(--ease-out-expo);
}

.agents-screenshot-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.agents-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* 24/7 Badge */
.agents-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(52, 199, 89, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.5);
    }

    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 8px rgba(52, 199, 89, 0);
    }
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Benefits Cards */
.agents-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease-out-expo);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.benefit-icon.purple {
    background: rgba(175, 82, 222, 0.15);
    color: var(--purple);
}

.benefit-icon.blue {
    background: rgba(0, 122, 255, 0.15);
    color: var(--blue);
}

.benefit-icon.green {
    background: rgba(52, 199, 89, 0.15);
    color: var(--green);
}

.benefit-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

/* Process Steps */
.agents-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease-out-expo);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.process-step.highlight {
    background: rgba(52, 199, 89, 0.1);
    border-color: rgba(52, 199, 89, 0.2);
}

.process-step.highlight .step-number {
    background: var(--green);
    color: var(--black);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--purple);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.step-desc {
    font-size: 12px;
    color: var(--gray-500);
}

.process-arrow {
    font-size: 20px;
    color: var(--gray-600);
    font-weight: 300;
}

/* CTA */
.agents-cta {
    display: flex;
    justify-content: center;
}

.agents-cta .btn-primary {
    padding: 18px 36px;
    font-size: 16px;
    background: linear-gradient(135deg, var(--purple), #8B5CF6);
    box-shadow: 0 10px 40px rgba(175, 82, 222, 0.3);
}

.agents-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(175, 82, 222, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .agents-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .agents-screenshot-wrapper {
        transform: none;
    }
}

@media (max-width: 768px) {
    .agents-process {
        flex-direction: column;
        gap: 12px;
    }

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

/* ============================================
   DEEP DIVE SECTIONS
============================================ */
.deep-dive-section {
    padding: var(--section-padding) 0;
    position: relative;
}

.deep-dive-section.alt-bg {
    background: var(--gray-950);
}

.section-header-floating {
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-label.blue {
    color: var(--blue);
}

.section-label.green {
    color: var(--green);
}

.section-label.purple {
    color: var(--purple);
}

.section-label.red {
    color: var(--red);
}

.deep-dive-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.deep-dive-content.reverse {
    grid-template-columns: 1.1fr 1fr;
}

.section-headline {
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.section-headline .muted {
    color: var(--gray-600);
}

.section-description {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 32px;
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: var(--gray-300);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checklist li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--green);
    font-weight: 600;
    font-size: 14px;
}

.floating-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        var(--shadow-xl);
    transition: transform 0.6s var(--ease-out-expo);
}

.floating-card:hover {
    transform: scale(1.02) translateY(-4px);
}

.floating-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Metrics Row */
.metrics-row {
    display: flex;
    gap: 48px;
    margin-top: 24px;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.metric-value.green {
    color: var(--green);
}

.metric-label {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   WORKFLOW SECTION - TASK MANAGEMENT
============================================ */
.workflow-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: linear-gradient(180deg, var(--gray-950) 0%, var(--black) 50%, var(--gray-950) 100%);
    overflow: hidden;
}

.workflow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.3;
}

.workflow-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label.orange {
    background: linear-gradient(135deg, var(--orange), #FFB84D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-color: rgba(255, 149, 0, 0.3);
}

/* Carousel */
.workflow-carousel-wrapper {
    max-width: 1000px;
    margin: 0 auto 40px;
    position: relative;
}

.workflow-carousel {
    overflow: hidden;
    border-radius: 20px;
    box-shadow:
        0 30px 80px rgba(255, 149, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s var(--ease-out-expo);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.caption-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.caption-desc {
    font-size: 14px;
    color: var(--gray-400);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
}

.carousel-btn:hover {
    background: rgba(255, 149, 0, 0.2);
    border-color: var(--orange);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.dot.active {
    background: var(--orange);
    width: 30px;
    border-radius: 5px;
}

/* Workflow Features Grid */
.workflow-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wf-feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s var(--ease-out-expo);
}

.wf-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.wf-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.wf-icon.orange {
    background: rgba(255, 149, 0, 0.15);
    color: var(--orange);
}

.wf-icon.blue {
    background: rgba(0, 122, 255, 0.15);
    color: var(--blue);
}

.wf-icon.purple {
    background: rgba(175, 82, 222, 0.15);
    color: var(--purple);
}

.wf-icon.green {
    background: rgba(52, 199, 89, 0.15);
    color: var(--green);
}

.wf-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.wf-feature p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .workflow-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .workflow-features {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   JARVIS SECTION - THE HERO FEATURE
============================================ */
.jarvis-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black) 0%, #0a0010 50%, var(--black) 100%);
}

.jarvis-background {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    pointer-events: none;
}

.jarvis-orb {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-core {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--purple-light) 0%, var(--purple) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: orb-pulse 3s ease-in-out infinite;
}

@keyframes orb-pulse {

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

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.orb-ring {
    position: absolute;
    border: 1px solid rgba(175, 82, 222, 0.3);
    border-radius: 50%;
    animation: ring-rotate 20s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation-duration: 15s;
}

.ring-2 {
    width: 300px;
    height: 300px;
    animation-duration: 20s;
    animation-direction: reverse;
}

.ring-3 {
    width: 400px;
    height: 400px;
    animation-duration: 25s;
    border-color: rgba(0, 122, 255, 0.2);
}

@keyframes ring-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orb-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(175, 82, 222, 0.15) 0%, transparent 60%);
    filter: blur(60px);
}

.jarvis-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(175, 82, 222, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(0, 122, 255, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 60% 40%, rgba(175, 82, 222, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 20%, rgba(0, 122, 255, 0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 15% 80%, rgba(175, 82, 222, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 90% 60%, rgba(0, 122, 255, 0.3) 0%, transparent 100%);
    opacity: 0.6;
}

.jarvis-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width);
    padding: 0 24px;
}

.jarvis-intro {
    text-align: center;
    margin-bottom: 24px;
}

.jarvis-headline {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.jarvis-name {
    background: linear-gradient(135deg, var(--purple-light), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(175, 82, 222, 0.4);
}

.jarvis-subtitle {
    font-size: 21px;
    color: var(--gray-400);
    line-height: 1.5;
}

/* JARVIS Features Grid */
.jarvis-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.jarvis-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.jarvis-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(175, 82, 222, 0.08),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.jarvis-feature:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(175, 82, 222, 0.3);
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px -15px rgba(175, 82, 222, 0.2);
}

.jf-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    border-radius: 12px;
    margin-bottom: 20px;
}

.jf-icon svg {
    width: 22px;
    height: 22px;
    color: var(--pure-white);
}

.jarvis-feature h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.jarvis-feature p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* JARVIS Showcase */
.jarvis-showcase {
    max-width: 1200px;
    margin: 0 auto 40px;
    perspective: 1500px;
}

.showcase-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 80px -20px rgba(175, 82, 222, 0.4),
        var(--shadow-xl);
}

.showcase-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* JARVIS 3D Perspective Effect */
.jarvis-perspective {
    position: relative;
    transform: rotateX(8deg) rotateY(-5deg) scale(0.95);
    transition: transform 0.8s var(--ease-out-expo), box-shadow 0.8s var(--ease-out-expo);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 60px 140px -40px rgba(175, 82, 222, 0.5),
        0 30px 80px -30px rgba(0, 0, 0, 0.7);
}

.jarvis-perspective:hover {
    transform: rotateX(0deg) rotateY(0deg) scale(1);
    box-shadow:
        0 0 0 2px rgba(175, 82, 222, 0.4),
        0 80px 160px -40px rgba(175, 82, 222, 0.6),
        0 40px 100px -30px rgba(0, 0, 0, 0.5);
}

/* ============================================
   JARVIS NEW LAYOUT - Explainer + Commands
============================================ */

/* Explainer Section */
.jarvis-explainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

@media (max-width: 900px) {
    .jarvis-explainer {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.explainer-text {
    max-width: 560px;
}

.explainer-lead {
    font-size: 22px;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 24px;
}

.explainer-lead strong {
    color: var(--purple-light);
}

.explainer-detail {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.explainer-detail .highlight {
    color: var(--cyan);
    background: rgba(100, 210, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.explainer-visual {
    position: relative;
}

.jarvis-screenshot-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 40px 80px -20px rgba(175, 82, 222, 0.4),
        0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.jarvis-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.screenshot-badge span:last-child {
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Commands Section */
.jarvis-commands-section {
    margin: 80px 0;
}

.commands-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: var(--white);
    margin-bottom: 40px;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.command-example {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s var(--ease-out-expo);
}

.command-example:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(175, 82, 222, 0.3);
    transform: translateY(-4px);
}

.command-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cmd-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.cmd-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--cyan);
}

.command-response p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-400);
    margin: 0;
}

/* Capabilities Full Section */
.jarvis-capabilities-full {
    margin: 80px 0 40px;
}

.capabilities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1000px) {
    .capabilities-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .capabilities-list {
        grid-template-columns: 1fr;
    }
}

.capability-full {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s var(--ease-out-expo);
}

.capability-full:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(175, 82, 222, 0.25);
    transform: translateY(-2px);
}

.cap-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cap-emoji {
    font-size: 24px;
    flex-shrink: 0;
}

.cap-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.capability-full p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-500);
    margin: 0;
}

/* JARVIS CTA */
.jarvis-cta {
    text-align: center;
    margin-top: 60px;
}

/* Highlight Text */
.highlight-text {
    color: var(--purple-light);
    font-weight: 600;
}


/* ============================================
   LEGACY: JARVIS FLIP CARD (removed)
============================================ */
.jarvis-flip-container {
    display: none;
    /* Flip card removed due to UX issues */
}

.flip-hint {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
    animation: hint-pulse 2s ease-in-out infinite;
}

.flip-hint svg {
    animation: rotate-hint 3s linear infinite;
}

@keyframes hint-pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes rotate-hint {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.jarvis-flip-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.jarvis-flip-card:hover {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 24px;
    overflow: hidden;
}

/* Front: Screenshot */
.flip-card-front {
    z-index: 2;
}

.flip-card-front .showcase-frame {
    width: 100%;
    height: 100%;
    transform: none !important;
    border-radius: 24px;
    overflow: hidden;
}

.flip-card-front .showcase-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.front-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.jarvis-flip-card:hover .front-overlay {
    opacity: 0;
}

.flip-card-front:hover .front-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 40px;
    animation: rotate-icon 2s ease-in-out infinite;
}

@keyframes rotate-icon {

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

    25% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(15deg);
    }
}

.overlay-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Back: Blueprint */
.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(20, 10, 30, 0.98) 0%, rgba(10, 5, 20, 0.98) 100%);
    border: 1px solid rgba(175, 82, 222, 0.3);
    box-shadow:
        0 0 60px rgba(175, 82, 222, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.back-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    height: 100%;
    padding: 32px;
}

.back-section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

/* Back: Chat Demo */
.back-chat {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.back-chat .chat-bubble {
    padding: 12px 16px;
    margin-bottom: 10px;
}

.back-chat .chat-bubble p {
    font-size: 13px;
}

/* Back: Blueprint Grid */
.back-blueprint {
    display: flex;
    flex-direction: column;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 1;
}

.blueprint-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.blueprint-item:hover {
    background: rgba(175, 82, 222, 0.1);
    border-color: rgba(175, 82, 222, 0.3);
    transform: translateX(4px);
}

.bp-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.bp-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
}

/* Responsive Flip Card */
@media (max-width: 800px) {
    .jarvis-flip-container {
        max-width: 100%;
    }

    .jarvis-flip-card {
        aspect-ratio: 9 / 14;
    }

    .back-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
        overflow-y: auto;
    }

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

    .flip-hint {
        font-size: 12px;
    }
}

/* Keep old styles for compatibility */
.jarvis-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}


.jarvis-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

@media (max-width: 1000px) {
    .jarvis-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* JARVIS Examples Section */
.jarvis-examples {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px;
}

.examples-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

/* Chat Demo Bubbles */
.jarvis-chat-demo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-bubble {
    padding: 16px 20px;
    border-radius: 18px;
    max-width: 95%;
    position: relative;
}

.chat-bubble.user {
    background: rgba(0, 122, 255, 0.15);
    border: 1px solid rgba(0, 122, 255, 0.3);
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}

.chat-bubble.jarvis {
    background: rgba(175, 82, 222, 0.1);
    border: 1px solid rgba(175, 82, 222, 0.25);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
}

.bubble-sender {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    opacity: 0.7;
}

.chat-bubble.user .bubble-sender {
    color: var(--blue);
}

.chat-bubble.jarvis .bubble-sender {
    color: var(--purple-light);
}

.chat-bubble p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-300);
    margin: 0;
}

.chat-bubble p strong {
    color: var(--white);
}

.examples-more {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.more-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.examples-more p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

/* JARVIS Capabilities Grid */
.jarvis-capabilities {
    margin-top: 60px;
}

.capabilities-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1000px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.capability-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out-expo);
}

.capability-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(175, 82, 222, 0.3);
    transform: translateY(-4px);
}

.cap-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.cap-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.cap-content p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
}

/* JARVIS CTA */
.jarvis-cta {
    text-align: center;
    margin-top: 60px;
}

/* Highlight Text */
.highlight-text {
    color: var(--purple-light);
    font-weight: 600;
}

/* ============================================
   SOCIAL PROOF
============================================ */
.social-proof {
    padding: var(--section-padding) 0;
    background: var(--gray-950);
}

.proof-header {
    text-align: center;
    margin-bottom: 40px;
}

.eyebrow-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-headline-small {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(10, 10, 10, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 149, 0, 0.05),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px -15px rgba(255, 149, 0, 0.15);
}

.stars {
    color: var(--orange);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-card>p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-300);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--pure-white);
}

.author-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
}

.author-info span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ============================================
   TECHNOLOGY PARTNERS SECTION
============================================ */
.tech-partners-section {
    padding: var(--section-padding) 0;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-category {
    margin-bottom: 40px;
}

.tech-category:last-child {
    margin-bottom: 0;
}

.tech-category-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-align: center;
}

.tech-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out-expo);
    cursor: default;
}

.tech-logo:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.tech-logo svg {
    width: 32px;
    height: 32px;
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.tech-logo:hover svg {
    color: var(--white);
}

.tech-logo span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    transition: color 0.3s ease;
}

.tech-logo:hover span {
    color: var(--gray-300);
}

/* Responsive */
@media (max-width: 768px) {
    .tech-logos {
        gap: 12px;
    }

    .tech-logo {
        padding: 16px 20px;
    }

    .tech-logo svg {
        width: 24px;
        height: 24px;
    }

    .tech-logo span {
        font-size: 11px;
    }
}

/* ============================================
   CTA SECTION - Stripe Mesh Gradient Inspired
============================================ */
.cta-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--black) 0%, #0a0015 50%, var(--black) 100%);
}

.cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Stripe-style Mesh Gradient Animation */
.cta-gradient-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(175, 82, 222, 0.4) 0%, transparent 50%);
    filter: blur(100px);
    animation: mesh-float-1 15s ease-in-out infinite;
}

.cta-gradient-2 {
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.35) 0%, transparent 50%);
    filter: blur(100px);
    animation: mesh-float-2 18s ease-in-out infinite;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(90, 200, 250, 0.25) 0%, transparent 50%);
    filter: blur(80px);
    animation: mesh-float-3 12s ease-in-out infinite;
}

.cta-background::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 149, 0, 0.2) 0%, transparent 50%);
    filter: blur(60px);
    animation: mesh-float-4 20s ease-in-out infinite;
}

@keyframes mesh-float-1 {

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

    33% {
        transform: translate(100px, 50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, -30px) scale(0.95);
    }
}

@keyframes mesh-float-2 {

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

    50% {
        transform: translate(-80px, -60px) scale(1.15);
    }
}

@keyframes mesh-float-3 {

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

    50% {
        transform: translate(-50%, -50%) translate(60px, 40px) scale(1.2);
    }
}

@keyframes mesh-float-4 {

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

    50% {
        transform: translate(-40px, 30px) scale(1.1);
        opacity: 1;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 24px;
}

.cta-title {
    font-size: clamp(44px, 7vw, 72px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--purple-light), var(--blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 20px;
    color: var(--gray-500);
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-note {
    font-size: 15px;
    color: var(--gray-600);
}

.cta-note a {
    color: var(--blue);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.cta-note a:hover {
    opacity: 0.8;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--gray-900);
    padding: 80px 0 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
}

.footer-logo .accent {
    color: var(--purple);
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 14px;
    color: var(--gray-300);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--pure-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-600);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: var(--gray-500);
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--pure-white);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card.bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-card.bento-stats {
        grid-column: span 2;
    }

    .deep-dive-content,
    .deep-dive-content.reverse {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .testimonials-row {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 56px;
    }

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

    .bento-card.bento-large,
    .bento-card.bento-stats {
        grid-column: span 1;
    }

    .stat-grid {
        flex-wrap: wrap;
        gap: 32px;
    }

    .metrics-row {
        flex-direction: column;
        gap: 24px;
    }

    .jarvis-features-grid {
        grid-template-columns: 1fr;
    }

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

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

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

/* ============================================
   INTEGRATIONS SECTION - n8n.io Inspired
============================================ */
.integrations-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--gray-950) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.integrations-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.integrations-header {
    text-align: center;
    margin-bottom: 60px;
}

.integrations-title {
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-top: 16px;
    margin-bottom: 20px;
}

.integrations-title .muted {
    color: var(--gray-600);
}

.integrations-desc {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 20px;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.integration-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integration-item:hover::before {
    opacity: 1;
}

.integration-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95) 0%, rgba(15, 15, 15, 0.98) 100%);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 40px -10px rgba(0, 122, 255, 0.15);
}

.integration-item.coming-soon {
    opacity: 0.5;
    cursor: default;
}

.integration-item.coming-soon:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    box-shadow: none;
}

.integration-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.integration-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.integration-item:hover .integration-icon {
    background: rgba(0, 122, 255, 0.15);
}

.integration-item:hover .integration-icon svg {
    color: var(--blue-light);
}

/* Individual icon colors */
.integration-icon.google-calendar svg {
    color: #4285F4;
}

.integration-icon.google-drive svg {
    color: #0F9D58;
}

.integration-icon.datajud svg {
    color: #8B5CF6;
}

.integration-icon.tribunal svg {
    color: #F59E0B;
}

.integration-icon.oab svg {
    color: #EF4444;
}

.integration-icon.email svg {
    color: #EC4899;
}

.integration-icon.zapier svg {
    color: #FF4A00;
}

.integration-icon.onedrive svg {
    color: #0078D4;
}

.integration-icon.ai svg {
    color: #10B981;
}

.integration-item:first-child .integration-icon svg {
    color: #25D366;
}

/* WhatsApp */

.integration-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    text-align: center;
    transition: color 0.3s ease;
}

.integration-item:hover span {
    color: var(--pure-white);
}

.coming-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-500);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 6px;
    border-radius: 4px;
}

.integrations-cta {
    text-align: center;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   CLOUD INTEGRATION DEMO SECTION - Apple-Like Holographic Glass
============================================ */
.cloud-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    /* Premium dark gradient */
    background: linear-gradient(180deg,
            var(--black) 0%,
            rgba(15, 15, 18, 1) 30%,
            rgba(18, 18, 22, 1) 50%,
            rgba(15, 15, 18, 1) 70%,
            var(--black) 100%);
}

.cloud-section::before {
    content: '';
    position: absolute;
    inset: 0;
    /* Subtle blue ambient glow */
    background:
        radial-gradient(ellipse 60% 40% at 30% 20%, rgba(0, 122, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 70% 80%, rgba(175, 82, 222, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cloud-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label.cyan {
    background: rgba(0, 122, 255, 0.12);
    color: var(--blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.cloud-demo-container {
    max-width: 1140px;
    margin: 0 auto;
}

/* ============================================
   CLOUD AUTO DEMO - Self-Playing Animation
============================================ */
.cloud-auto-demo {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 0;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto 50px;
    min-height: 380px;
}

@media (max-width: 800px) {
    .cloud-auto-demo {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Auto World Base */
.auto-world {
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

/* Google Drive Panel */
.auto-drive {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.auto-drive .auto-world-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.auto-drive .auto-world-header span {
    font-size: 15px;
    font-weight: 600;
    color: #202124;
}

/* Folders */
.auto-folders {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auto-folder {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 10px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.5s ease;
}

.auto-folder.syncing {
    background: #e8f0fe;
    border-color: #1a73e8;
}

.auto-folder.synced {
    opacity: 0.4;
    transform: translateX(30px);
}

.folder-emoji {
    font-size: 24px;
}

.folder-label {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
}

/* Juridion Panel */
.auto-juridion {
    background: linear-gradient(145deg, rgba(20, 10, 30, 0.98) 0%, rgba(10, 5, 20, 0.98) 100%);
    border: 1px solid rgba(175, 82, 222, 0.3);
    box-shadow:
        0 4px 30px rgba(175, 82, 222, 0.15),
        0 8px 50px rgba(0, 0, 0, 0.3);
}

.auto-juridion .auto-world-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.auto-juridion .auto-world-header span {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.client-counter-auto {
    margin-left: auto;
    font-size: 13px !important;
    color: var(--purple-light) !important;
}

/* Clients Grid */
.auto-clients {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.auto-client {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    animation: clientSlideIn 0.4s ease forwards;
}

@keyframes clientSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

.auto-client-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /* Liquid Glass iOS 25 */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15);
}

.auto-client-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.auto-client-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    background: rgba(52, 199, 89, 0.2);
    color: var(--green);
    border-radius: 10px;
}

/* Sync Center */
.auto-sync-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (max-width: 800px) {
    .auto-sync-center {
        padding: 10px 0;
    }

    .sync-orb svg {
        transform: rotate(90deg);
    }
}

.sync-orb {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Liquid Glass iOS 25 */
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.sync-orb.pulsing {
    animation: orbPulse 0.6s ease infinite;
}

@keyframes orbPulse {

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

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

.sync-beam {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
    opacity: 0;
}

.sync-beam.active {
    animation: beamFlow 0.5s ease;
}

@keyframes beamFlow {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }

    100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

.sync-label {
    margin-top: 16px;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 100px;
}

/* Cloud Explainer Block */
.cloud-explainer {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
}

@media (max-width: 800px) {
    .cloud-explainer {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
}

.explainer-main h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.explainer-main p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.explainer-main strong {
    color: var(--white);
}

.explainer-jarvis {
    padding: 24px;
    background: rgba(0, 122, 255, 0.08);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 16px;
}

.jarvis-integration-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 122, 255, 0.15);
    border-radius: 20px;
    margin-bottom: 16px;
}

.badge-icon {
    font-size: 18px;
}

.badge-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
}

.explainer-jarvis p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-400);
}

.explainer-jarvis strong {
    color: var(--white);
}

/* Feature Pills Row */
.cloud-features-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;

}

.cloud-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-size: 13px;
    color: var(--gray-400);
}

.pill-icon {
    font-size: 16px;
}

/* Legacy styles hidden */
.two-worlds-demo {
    display: none;
}



@media (max-width: 900px) {
    .two-worlds-demo {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* World Panel Base */
.world {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s var(--ease-out-expo);
}

/* WORLD 1: Google Drive - Light Theme */
.world-drive {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e0e0;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 8px 40px rgba(0, 0, 0, 0.05);
}

.world-drive .world-header {
    background: #f1f3f4;
    border-bottom: 1px solid #e0e0e0;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.world-drive .world-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.world-drive .world-name {
    font-size: 15px;
    font-weight: 600;
    color: #202124;
}

.world-drive .world-path {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #5f6368;
}

.world-drive .path-sep {
    color: #9aa0a6;
}

.world-drive .path-current {
    color: #1a73e8;
    font-weight: 500;
}

.world-drive .world-content {
    flex: 1;
    padding: 16px;
    background: #fff;
}

.world-drive .world-instruction {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #5f6368;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: #e8f0fe;
    border-radius: 8px;
    border: 1px solid rgba(26, 115, 232, 0.2);
}

.world-drive .world-instruction svg {
    color: #1a73e8;
}

.world-drive .world-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.world-drive .select-all-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #5f6368;
    cursor: pointer;
}

.world-drive .selected-count {
    font-size: 12px;
    color: #1a73e8;
    font-weight: 500;
}

/* Folder Grid - Google Drive Style */
.folder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.folder-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: grab;
    transition: all 0.2s ease;
    position: relative;
}

.folder-item:hover {
    background: #f1f3f4;
    border-color: #dadce0;
}

.folder-item.selected {
    background: #e8f0fe;
    border-color: #1a73e8;
}

.folder-item.selected::before {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: #1a73e8;
    color: white;
    font-size: 11px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.folder-item.dragging {
    opacity: 0.5;
    transform: scale(0.95);
}

.folder-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.folder-name {
    font-size: 13px;
    font-weight: 500;
    color: #202124;
    text-align: center;
    word-break: break-word;
}

.folder-meta {
    font-size: 11px;
    color: #5f6368;
    margin-top: 4px;
}

/* WORLD 2: Juridion - Dark Premium Theme */
.world-juridion {
    background: linear-gradient(145deg, rgba(20, 10, 30, 0.98) 0%, rgba(10, 5, 20, 0.98) 100%);
    border: 1px solid rgba(175, 82, 222, 0.3);
    box-shadow:
        0 4px 40px rgba(175, 82, 222, 0.15),
        0 8px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.world-juridion .world-header {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.world-juridion .world-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.world-juridion .world-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.world-juridion .client-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 13px;
    color: var(--gray-400);
}

.world-juridion .client-counter span:first-child {
    font-size: 20px;
    font-weight: 700;
    color: var(--purple-light);
}

.world-juridion .world-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Dropzone Area */
.dropzone-area {
    border: 2px dashed rgba(175, 82, 222, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
    min-height: 280px;
}

.dropzone-area.drag-over {
    border-color: var(--purple-light);
    background: rgba(175, 82, 222, 0.1);
}

.dropzone-area.drag-over .dropzone-empty {
    transform: scale(1.02);
}

.dropzone-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    transition: transform 0.2s ease;
}

.dropzone-icon-big {
    color: var(--purple-light);
    opacity: 0.6;
    margin-bottom: 16px;
}

.dropzone-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.dropzone-subtext {
    font-size: 14px;
    color: var(--gray-500);
}

/* Clients Grid (After Sync) */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.client-card-new {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    animation: slideInClient 0.4s ease;
}

@keyframes slideInClient {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.client-avatar-new {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.client-info-new {
    flex: 1;
}

.client-name-new {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.client-folder-new {
    font-size: 11px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.client-badge-new {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    background: rgba(52, 199, 89, 0.2);
    color: var(--green);
    border-radius: 10px;
}

/* Sync Progress Panel */
.sync-progress-panel {
    display: none;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-top: auto;
}

.sync-progress-panel.active {
    display: block;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.progress-count {
    font-size: 12px;
    color: var(--purple-light);
}

.progress-bar-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--purple) 0%, var(--cyan) 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.sync-log-mini {
    margin-top: 12px;
    max-height: 80px;
    overflow-y: auto;
    font-size: 11px;
    color: var(--gray-500);
}

.sync-log-mini p {
    margin: 4px 0;
}

.sync-log-mini .success {
    color: var(--green);
}

/* SYNC PORTAL - Center Connection */
.sync-portal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

@media (max-width: 900px) {
    .sync-portal {
        padding: 20px 0;
    }

    .sync-portal .portal-icon svg {
        transform: rotate(90deg);
    }
}

.portal-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(175, 82, 222, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: portalPulse 2s ease-in-out infinite;
}

@keyframes portalPulse {

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

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

.portal-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
    border-radius: 50%;
    color: white;
    box-shadow:
        0 4px 20px rgba(175, 82, 222, 0.4),
        0 0 40px rgba(175, 82, 222, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.portal-icon.syncing {
    animation: portalSpin 1s linear infinite;
}

@keyframes portalSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.portal-label {
    margin-top: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    max-width: 80px;
}

.portal-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Demo Controls - Centered */
.demo-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}



.direction-toggle {
    display: flex;
    /* Holographic glass container */
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: none;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s var(--ease-out-expo);
}

.toggle-btn.active {
    background: rgba(0, 122, 255, 0.15);
    color: var(--blue);
    box-shadow:
        0 0 0 1px rgba(0, 122, 255, 0.3),
        0 2px 8px rgba(0, 122, 255, 0.2);
}

.toggle-btn:hover:not(.active) {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.toggle-btn svg {
    width: 16px;
    height: 16px;
}

.reset-demo-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    /* Glass button */
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.reset-demo-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-1px);
}

/* Split View Demo - Premium Glass Panels */
.demo-split-view {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 520px;
}

.demo-panel {
    /* === HOLOGRAPHIC GLASS PANEL === */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* Premium shadow stack */
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.3),
        0 8px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
}

/* Top specular highlight */
.demo-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.15) 70%,
            transparent 100%);
    pointer-events: none;
}

.drive-panel {
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.system-panel {
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Panel Header - Glass Toolbar */
.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    letter-spacing: -0.01em;
}

.cloud-logos {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cloud-logos svg {
    opacity: 0.9;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.panel-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.crumb {
    color: var(--gray-500);
    transition: color 0.2s ease;
    cursor: default;
}

.crumb:hover:not(.active) {
    color: var(--gray-300);
}

.crumb.active {
    color: var(--blue);
    font-weight: 500;
}

.crumb-sep {
    color: var(--gray-700);
    font-size: 10px;
}

.client-count {
    font-size: 13px;
    color: var(--gray-500);
}

.client-count span {
    color: var(--blue);
    font-weight: 600;
}

/* Drive Toolbar */
.drive-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fake-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    /* Glass search field */
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--gray-500);
    font-size: 13px;
    flex: 1;
    max-width: 180px;
    transition: all 0.2s ease;
}

.fake-search:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.fake-search svg {
    stroke: var(--gray-500);
    width: 14px;
    height: 14px;
}

.select-all-container {
    font-size: 13px;
}

.select-all-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
}

.select-all-label:hover {
    color: var(--white);
}

.select-all-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--blue);
    border-radius: 4px;
}

/* Drive List - Google Drive Style with Glass Items */
.drive-list {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 260px;
}

/* === DRIVE ITEM - Holographic Glass Card === */
.drive-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    /* Holographic glass */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    cursor: grab;
    user-select: none;
    position: relative;
    overflow: hidden;
    /* Premium transitions */
    transition: all 0.3s var(--ease-out-expo);
    /* Subtle shadow */
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Top specular on items */
.drive-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drive-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.drive-item:hover::before {
    opacity: 1;
}

/* Selected state - Blue glow */
.drive-item.selected {
    background: rgba(0, 122, 255, 0.12);
    border-color: rgba(0, 122, 255, 0.35);
    box-shadow:
        0 0 0 1px rgba(0, 122, 255, 0.25),
        0 4px 20px rgba(0, 122, 255, 0.2),
        0 8px 32px rgba(0, 122, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.drive-item.selected:hover {
    background: rgba(0, 122, 255, 0.18);
}

.drive-item.dragging {
    opacity: 0.5;
    cursor: grabbing;
    transform: scale(0.98);
}

/* Checkbox style */
.drive-item-check {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.drive-item:hover .drive-item-check {
    border-color: rgba(0, 122, 255, 0.4);
}

.drive-item.selected .drive-item-check {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.4);
}

.drive-item.selected .drive-item-check svg {
    stroke: var(--pure-white);
}

/* Folder icon - Google Drive style */
.drive-item-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.15) 0%, rgba(66, 133, 244, 0.08) 100%);
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.drive-item:hover .drive-item-icon {
    transform: scale(1.05);
}

.drive-item-info {
    flex: 1;
    min-width: 0;
}

.drive-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.drive-item-meta {
    font-size: 12px;
    color: var(--gray-500);
}

.drive-item-tags {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.item-tag {
    padding: 4px 8px;
    background: rgba(175, 82, 222, 0.12);
    color: var(--purple);
    font-size: 10px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 1px solid rgba(175, 82, 222, 0.2);
}

/* Dropzone - Premium Glass Target */
.drive-dropzone {
    margin: 12px;
    padding: 28px;
    border: 2px dashed rgba(0, 122, 255, 0.25);
    border-radius: 16px;
    background: rgba(0, 122, 255, 0.04);
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.drive-dropzone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 122, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.drive-dropzone:hover::before {
    opacity: 1;
}

.drive-dropzone.drag-over {
    border-color: var(--blue);
    background: rgba(0, 122, 255, 0.12);
    transform: scale(1.02);
    box-shadow:
        0 0 0 4px rgba(0, 122, 255, 0.15),
        0 8px 32px rgba(0, 122, 255, 0.2);
}

.drive-dropzone.drag-over::before {
    opacity: 1;
}

.dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.dropzone-icon {
    color: var(--blue);
    opacity: 0.7;
}

.dropzone-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
}

.dropzone-hint {
    font-size: 12px;
    color: var(--gray-500);
}

/* Sync Arrow Container - Animated Connection */
.sync-arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sync-arrow {
    width: 64px;
    height: 64px;
    /* Holographic glass orb */
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.4s var(--ease-out-expo);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sync-arrow.syncing {
    animation: arrow-pulse 0.8s ease-in-out infinite;
    background: rgba(0, 122, 255, 0.15);
    border-color: rgba(0, 122, 255, 0.4);
    color: var(--blue);
    box-shadow:
        0 0 0 4px rgba(0, 122, 255, 0.1),
        0 4px 32px rgba(0, 122, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@keyframes arrow-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 4px rgba(0, 122, 255, 0.1),
            0 4px 32px rgba(0, 122, 255, 0.3);
    }

    50% {
        transform: scale(1.08);
        box-shadow:
            0 0 0 8px rgba(0, 122, 255, 0.15),
            0 8px 48px rgba(0, 122, 255, 0.4);
    }
}

.sync-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Sync Queue - Premium Glass Panel */
.sync-queue {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: none;
    background: rgba(0, 122, 255, 0.02);
}

.sync-queue.active {
    display: block;
}

.queue-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.queue-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.queue-status {
    font-size: 12px;
    color: var(--blue);
    font-weight: 500;
}

.queue-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 14px;
}

.queue-progress .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    width: 0%;
    transition: width 0.4s var(--ease-out-expo);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(0, 122, 255, 0.5);
}

.queue-jobs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 100px;
    overflow-y: auto;
}

.queue-job {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 13px;
}

.job-status {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-status.pending {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.job-status.processing {
    background: rgba(0, 122, 255, 0.15);
    border: 1px solid rgba(0, 122, 255, 0.3);
    animation: spin 1s linear infinite;
}

.job-status.done {
    background: rgba(52, 199, 89, 0.15);
    border: 1px solid rgba(52, 199, 89, 0.3);
    color: var(--green);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.job-name {
    flex: 1;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}

.job-step {
    font-size: 11px;
    color: var(--gray-500);
}

/* Clients List - Juridion CRM Style */
.clients-list {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    max-height: 220px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--gray-500);
    text-align: center;
    padding: 40px 20px;
}

.empty-state svg {
    margin-bottom: 16px;
    opacity: 0.3;
    color: var(--gray-600);
}

.empty-state p {
    font-size: 13px;
    line-height: 1.6;
}

/* === CLIENT CARD - Holographic Glass (Juridion Style) === */
.client-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    /* Holographic glass with success tint */
    background: rgba(52, 199, 89, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(52, 199, 89, 0.15);
    border-radius: 14px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
    /* Premium animation */
    animation: card-appear 0.5s var(--ease-out-expo);
    /* Shadow */
    box-shadow:
        0 0 0 1px rgba(52, 199, 89, 0.08),
        0 2px 12px rgba(52, 199, 89, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Top specular */
.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

@keyframes card-appear {
    from {
        opacity: 0;
        transform: translateX(-24px) scale(0.96);
    }

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

.client-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--pure-white);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(175, 82, 222, 0.3);
}

.client-info {
    flex: 1;
    min-width: 0;
}

.client-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.client-folder {
    font-size: 12px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

.client-folder svg {
    opacity: 0.6;
}

.client-status {
    padding: 5px 10px;
    background: rgba(52, 199, 89, 0.12);
    color: var(--green);
    font-size: 11px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(52, 199, 89, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* Sync Log - Terminal Glass */
.sync-log {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    max-height: 140px;
    overflow: hidden;
}

.log-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.log-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.log-status {
    font-size: 11px;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 6px;
}

.log-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(52, 199, 89, 0.5);
}

.log-entries {
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.15);
    font-family: 'SF Mono', 'Monaco', 'Menlo', 'Consolas', monospace;
    font-size: 11px;
    max-height: 90px;
    overflow-y: auto;
}

.log-entry {
    display: flex;
    gap: 12px;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.log-entry:last-child {
    border-bottom: none;
}

.log-time {
    color: var(--gray-600);
    min-width: 40px;
    font-variant-numeric: tabular-nums;
}

.log-msg {
    color: var(--gray-400);
}

.log-entry.info .log-msg {
    color: var(--blue);
}

.log-entry.success .log-msg {
    color: var(--green);
}

.log-entry.warning .log-msg {
    color: var(--orange);
}

/* Mobile Demo Controls */
.mobile-demo-controls {
    display: none;
    margin-top: 24px;
}

.mobile-sync-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    /* Premium gradient button */
    background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
    border: none;
    border-radius: 16px;
    color: var(--pure-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow:
        0 4px 20px rgba(0, 122, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mobile-sync-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 32px rgba(0, 122, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Cloud CTA */
.cloud-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
}

/* Flying Animation for Items */
.flying-item {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    animation: fly-across 0.6s var(--ease-out-expo) forwards;
}

@keyframes fly-across {
    0% {
        opacity: 1;
        transform: scale(1);
    }

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

/* Success Toast - Premium Glass */
.sync-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    /* Holographic glass */
    background: rgba(20, 20, 24, 0.92);
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(52, 199, 89, 0.25);
    border-radius: 18px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow:
        0 0 0 1px rgba(52, 199, 89, 0.1),
        0 24px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    z-index: 10000;
    opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
}

.sync-toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.sync-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    width: 44px;
    height: 44px;
    background: rgba(52, 199, 89, 0.12);
    border: 1px solid rgba(52, 199, 89, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.toast-desc {
    font-size: 13px;
    color: var(--gray-500);
}

.toast-cta {
    padding: 10px 20px;
    background: var(--green);
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(52, 199, 89, 0.3);
}

.toast-cta:hover {
    background: #2ebd4e;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(52, 199, 89, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .demo-split-view {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sync-arrow-container {
        padding: 24px 0;
    }

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

    .demo-panel {
        border-radius: 24px !important;
    }

    .mobile-demo-controls {
        display: block;
    }

    .direction-toggle {
        flex-direction: column;
        width: 100%;
    }

    .toggle-btn {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .cloud-section {
        padding: 80px 0;
    }

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

    .reset-demo-btn {
        justify-content: center;
    }

    .drive-list {
        max-height: 200px;
    }

    .clients-list {
        max-height: 180px;
    }

    .sync-toast {
        left: 16px;
        right: 16px;
        transform: translateX(0) translateY(100px);
    }

    .sync-toast.show {
        transform: translateX(0) translateY(0);
    }
}

/* ============================================
   PRICING SECTION
============================================ */
.pricing-section {
    padding: var(--section-padding) 0;
    padding-bottom: 100px;
    background: var(--black-rich);
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
    background: rgba(0, 122, 255, 0.08);
    border-color: var(--blue);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-4px);
}

/* Business - Preto/Slate Premium */
.pricing-card.business {
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.8) 0%, rgba(45, 45, 50, 0.6) 100%);
    border-color: rgba(120, 120, 130, 0.4);
}

.pricing-card.business:hover {
    border-color: rgba(150, 150, 160, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card.business .plan-name {
    color: var(--white);
}

.pricing-card.business .check {
    color: var(--gray-300);
}

.pricing-card.business .btn-plan {
    background: rgba(80, 80, 90, 0.6);
    border: 1px solid rgba(150, 150, 160, 0.3);
}

.pricing-card.business .btn-plan:hover {
    background: rgba(100, 100, 110, 0.8);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--pure-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enterprise Card - Premium Gold Style */
.pricing-card.enterprise {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(255, 215, 0, 0.04) 100%);
    border-color: rgba(212, 175, 55, 0.3);
}

.pricing-card.enterprise:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.pricing-card.enterprise .plan-name {
    color: #d4af37;
}

.pricing-card.enterprise .check {
    color: #d4af37;
}

.enterprise-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-plan-enterprise {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    font-weight: 600;
}

.btn-plan-enterprise:hover {
    background: linear-gradient(135deg, #c9a227 0%, #dfc02f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.enterprise-note {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: var(--gray-500);
    font-style: italic;
}

.launch-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--pure-white);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.price-original {
    font-size: 16px;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-bottom: 4px;
    opacity: 0.7;
}

.pricing-card-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.plan-price .currency {
    font-size: 20px;
    font-weight: 500;
    color: var(--gray-400);
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.plan-price .period {
    font-size: 16px;
    color: var(--gray-500);
}

.plan-desc {
    font-size: 14px;
    color: var(--gray-500);
}

.plan-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .check {
    color: var(--green);
    font-weight: 600;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-plan:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-plan-primary {
    background: var(--blue);
    color: var(--pure-white);
}

.btn-plan-primary:hover {
    background: #0066d6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

.pricing-note {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    font-size: 14px;
    color: var(--gray-500);
    position: relative;
    z-index: 5;
}

.btn-plan-outline {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 14px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-plan-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    transform: translateY(-1px);
}

.pricing-card.popular .btn-plan-outline {
    border-color: rgba(0, 122, 255, 0.3);
    color: var(--blue);
}

.pricing-card.popular .btn-plan-outline:hover {
    background: rgba(0, 122, 255, 0.08);
    border-color: var(--blue);
    color: var(--pure-white);
}

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

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.popular {
        transform: none;
        order: -1;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s ease;
}

.faq-question:hover span {
    color: var(--blue);
}

.faq-icon {
    color: var(--gray-500);
    transition: transform 0.3s var(--ease-out-expo);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-400);
}