/* ═══════════════════════════════════════════════════════════════════════════
   zSellify Marketing — Video Presence Infrastructure
   Cloudflare-style design language
   ═══════════════════════════════════════════════════════════════════════════ */

/* CSS Variables */
:root {
    /* Brand Colors */
    --z-orange: #F6821F;
    --z-orange-light: #FBAD41;
    --z-orange-dark: #E55D0C;
    
    /* Neutrals - Cloudflare style */
    --slate-950: #0a0a0f;
    --slate-900: #111117;
    --slate-800: #1a1a23;
    --slate-700: #2a2a36;
    --slate-600: #3d3d4d;
    --slate-500: #5c5c72;
    --slate-400: #8b8ba3;
    --slate-300: #b3b3c6;
    --slate-200: #d4d4e3;
    --slate-100: #ebebf2;
    --slate-50: #f7f7fa;
    --white: #ffffff;
    
    /* Functional */
    --success: #22c55e;
    --error: #ef4444;
    
    /* Typography */
    --font-display: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-200);
    background: var(--slate-950);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--z-orange), var(--z-orange-light));
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 700;
}

.logo-text {
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-300);
    transition: color var(--transition-fast);
}

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

.nav-link-secondary {
    color: var(--slate-400) !important;
}

.btn-nav {
    padding: var(--space-sm) var(--space-md);
    background: var(--z-orange);
    color: var(--white) !important;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.btn-nav:hover {
    background: var(--z-orange-light);
    transform: translateY(-1px);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    background: none;
    border: none;
    cursor: pointer;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* Solutions Mega Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--slate-300);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-dropdown-trigger:hover {
    color: var(--white);
}

.dropdown-arrow {
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 900px;
    background: var(--slate-900);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: var(--space-lg);
}

.nav-dropdown:hover .nav-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.mega-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mega-column-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-500);
    padding: var(--space-xs) 0;
    margin-bottom: var(--space-xs);
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.mega-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mega-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

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

.mega-item-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.mega-item-desc {
    font-size: 0.8125rem;
    color: var(--slate-400);
    line-height: 1.4;
}

/* Featured Enterprise Column */
.mega-column-featured {
    background: linear-gradient(135deg, rgba(246, 130, 31, 0.1) 0%, rgba(246, 130, 31, 0.05) 100%);
    border: 1px solid rgba(246, 130, 31, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin: calc(var(--space-lg) * -1);
    margin-left: 0;
}

.mega-featured-card {
    margin-bottom: var(--space-md);
}

.mega-featured-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.mega-featured-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.mega-featured-card p {
    font-size: 0.8125rem;
    color: var(--slate-400);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.mega-featured-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--z-orange);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mega-featured-link:hover {
    color: var(--z-orange-light);
}

.mega-logos {
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-logos-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-500);
    display: block;
    margin-bottom: var(--space-xs);
}

.mega-logos-row {
    display: flex;
    gap: var(--space-sm);
}

.mega-logos-row span {
    font-size: 0.75rem;
    color: var(--slate-500);
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 var(--space-4xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(246, 130, 31, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(246, 130, 31, 0.08), transparent);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.5), rgba(10, 10, 15, 0.4));
    z-index: 2;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 var(--space-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Rotating text animation like Shopify */
.hero-rotate-container {
    display: block;
    height: 1.1em;
    overflow: hidden;
    position: relative;
}

.hero-rotate-words {
    display: block;
    animation: rotateWords 10s ease-in-out infinite;
}

.hero-word {
    display: block;
    height: 1.1em;
    line-height: 1.05;
    background: linear-gradient(135deg, var(--z-orange), var(--z-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes rotateWords {
    0%, 18% { transform: translateY(0); }
    22%, 43% { transform: translateY(-25%); }
    47%, 68% { transform: translateY(-50%); }
    72%, 93% { transform: translateY(-75%); }
    97%, 100% { transform: translateY(0); }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--slate-300);
    max-width: 700px;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-primary {
    padding: var(--space-md) var(--space-xl);
    background: var(--white);
    color: var(--slate-900);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--slate-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-fast);
}

.btn-video:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-video-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 10px;
}

.btn-secondary {
    padding: var(--space-md) var(--space-xl);
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--slate-600);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--slate-500);
}

.hero-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.platform-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-weight: 500;
}

.platform-icons {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.platform-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-md);
    color: var(--slate-300);
    transition: all var(--transition-fast);
}

.platform-icon svg {
    width: 18px;
    height: 18px;
}

.platform-icon:hover {
    background: var(--slate-700);
    border-color: var(--slate-600);
    color: var(--white);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO FLOW SECTION (Enhanced with website/video previews and data packets)
   ═══════════════════════════════════════════════════════════════════════════ */

.video-flow-section {
    padding: var(--space-4xl) 0;
    background: var(--slate-950);
    overflow: hidden;
}

.flow-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.flow-stage {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--space-2xl);
    padding: 0 var(--space-lg);
}

.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.node-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.node-status {
    font-size: 0.875rem;
    color: #22c55e;
    font-weight: 500;
}

.node-detail {
    font-size: 0.8125rem;
    color: var(--slate-500);
    line-height: 1.5;
}

/* Website Preview */
.website-preview {
    width: 180px;
    height: 140px;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.preview-browser {
    background: var(--slate-900);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--slate-700);
}

.browser-dots {
    display: flex;
    gap: 4px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--slate-600);
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27c93f; }

.browser-url {
    font-size: 10px;
    color: var(--slate-400);
    background: var(--slate-800);
    padding: 3px 8px;
    border-radius: 4px;
    flex: 1;
}

.preview-content {
    padding: 10px;
}

.preview-hero {
    height: 30px;
    background: linear-gradient(90deg, var(--slate-700), var(--slate-600));
    border-radius: 4px;
    margin-bottom: 8px;
}

.preview-text {
    margin-bottom: 8px;
}

.text-line {
    height: 6px;
    background: var(--slate-700);
    border-radius: 3px;
    margin-bottom: 4px;
}

.text-line.short {
    width: 60%;
}

.preview-grid {
    display: flex;
    gap: 6px;
}

.grid-item {
    flex: 1;
    height: 24px;
    background: var(--slate-700);
    border-radius: 4px;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--z-orange), transparent);
    animation: scanDown 2s ease-in-out infinite;
}

@keyframes scanDown {
    0% { top: 30px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 140px; opacity: 0; }
}

/* Flow Connectors with Data Packets */
.flow-connector {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px;
    width: 120px;
}

.connector-svg {
    width: 100%;
    height: 40px;
}

.connector-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--z-orange);
    border-radius: 50%;
    top: 75px;
}

.connector-dot.start {
    left: -5px;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.connector-dot.end {
    right: -5px;
    animation: dotPulse 1.5s ease-in-out infinite 0.75s;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.data-packet {
    animation: packetFlow 2s linear infinite;
    opacity: 0;
}

.data-packet.p1 { animation-delay: 0s; }
.data-packet.p2 { animation-delay: 0.6s; }
.data-packet.p3 { animation-delay: 1.2s; }

@keyframes packetFlow {
    0% { 
        cx: 0; 
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        cx: 120; 
        opacity: 0;
    }
}

/* zSellify Hub */
.zsellify-hub {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-ring {
    position: absolute;
    border: 2px solid var(--z-orange);
    border-radius: 50%;
    opacity: 0.3;
}

.ring-outer {
    width: 120px;
    height: 120px;
    animation: ringRotate 10s linear infinite;
    border-style: dashed;
}

.ring-inner {
    width: 100px;
    height: 100px;
    animation: ringRotate 8s linear infinite reverse;
    border-style: dotted;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hub-core {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--z-orange), var(--z-orange-dark));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 40px rgba(246, 130, 31, 0.4);
}

.hub-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--z-orange);
    border-radius: var(--radius-xl);
    filter: blur(30px);
    opacity: 0.5;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Video Preview */
.video-preview {
    width: 120px;
}

.video-phone {
    width: 100px;
    height: 180px;
    background: var(--slate-900);
    border: 3px solid var(--slate-700);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.phone-notch {
    width: 50px;
    height: 20px;
    background: var(--slate-900);
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--slate-800), var(--slate-900));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-wave {
    position: absolute;
    width: 200%;
    height: 40px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(246, 130, 31, 0.2), 
        rgba(246, 130, 31, 0.4), 
        rgba(246, 130, 31, 0.2), 
        transparent
    );
    animation: waveMove 3s ease-in-out infinite;
}

.video-wave.w1 { top: 30%; animation-delay: 0s; }
.video-wave.w2 { top: 50%; animation-delay: 0.5s; }
.video-wave.w3 { top: 70%; animation-delay: 1s; }

@keyframes waveMove {
    0%, 100% { transform: translateX(-25%); }
    50% { transform: translateX(25%); }
}

.video-play {
    position: relative;
    z-index: 5;
    width: 40px;
    height: 40px;
    background: rgba(246, 130, 31, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(246, 130, 31, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(246, 130, 31, 0); }
}

.video-controls {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.control-bar {
    height: 3px;
    background: var(--slate-700);
    border-radius: 2px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.control-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: var(--z-orange);
    animation: progressBar 4s linear infinite;
}

@keyframes progressBar {
    0% { width: 0; }
    100% { width: 100%; }
}

.control-icons {
    display: flex;
    justify-content: space-around;
    font-size: 12px;
}

/* Platform Distribution */
.platform-distribution {
    position: relative;
    padding-top: var(--space-xl);
}

.distribution-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--z-orange), transparent);
}

.platform-row {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.platform-dest {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    animation: platformFadeIn 0.6s ease forwards;
}

.platform-dest:nth-child(1) { animation-delay: 0.2s; }
.platform-dest:nth-child(2) { animation-delay: 0.3s; }
.platform-dest:nth-child(3) { animation-delay: 0.4s; }
.platform-dest:nth-child(4) { animation-delay: 0.5s; }

@keyframes platformFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.platform-icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.platform-icon-box svg {
    width: 28px;
    height: 28px;
}

.platform-icon-box.tiktok {
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
}

.platform-icon-box.reels {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.platform-icon-box.shorts {
    background: #FF0000;
}

.platform-icon-box.snap {
    background: #FFFC00;
    color: var(--slate-900);
}

.platform-dest:hover .platform-icon-box {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.platform-dest span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-400);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SPECTACULAR FLOW ANIMATION SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.flow-animation-section {
    padding: var(--space-2xl) 0;
    background: var(--slate-950);
    position: relative;
    overflow: hidden;
}

.flow-animation-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(246, 130, 31, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.animation-stage {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--space-lg);
    padding: 0 var(--space-lg);
    position: relative;
    padding-bottom: 40px;
}

/* Website Mockup */
.stage-website {
    text-align: center;
}

.website-mockup {
    position: relative;
}

.mockup-browser {
    width: 220px;
    background: var(--slate-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--slate-700);
}

.browser-chrome {
    background: var(--slate-900);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--slate-700);
}

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

.chrome-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.chrome-dots .dot.red { background: #ff5f56; }
.chrome-dots .dot.yellow { background: #ffbd2e; }
.chrome-dots .dot.green { background: #27c93f; }

.chrome-url {
    flex: 1;
    background: var(--slate-800);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    color: var(--slate-400);
    display: flex;
    align-items: center;
    gap: 5px;
}

.url-lock {
    font-size: 10px;
}

.mockup-content {
    padding: 12px;
    background: var(--slate-850, #14141c);
    position: relative;
    min-height: 180px;
}

.content-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--slate-700);
}

.nav-brand {
    font-weight: 700;
    font-size: 12px;
    color: var(--white);
}

.nav-items {
    display: flex;
    gap: 8px;
    font-size: 9px;
    color: var(--slate-500);
}

.content-hero {
    margin-bottom: 10px;
}

.hero-image {
    height: 50px;
    background: linear-gradient(135deg, var(--slate-700), var(--slate-600));
    border-radius: 4px;
    margin-bottom: 8px;
}

.hero-text .text-block {
    height: 8px;
    background: var(--slate-700);
    border-radius: 4px;
    margin-bottom: 5px;
}

.hero-text .text-block.title {
    width: 80%;
}

.hero-text .text-block.subtitle {
    width: 50%;
}

.content-grid {
    display: flex;
    gap: 8px;
}

.grid-card {
    flex: 1;
}

.grid-card .card-img {
    height: 30px;
    background: var(--slate-700);
    border-radius: 3px;
    margin-bottom: 4px;
}

.grid-card .card-text {
    height: 6px;
    background: var(--slate-700);
    border-radius: 3px;
    width: 80%;
}

/* Scanning effect */
.scan-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.scan-overlay .scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--z-orange), transparent);
    box-shadow: 0 0 20px var(--z-orange);
    animation: scanWebsite 2.5s ease-in-out infinite;
}

@keyframes scanWebsite {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Data Pulse Animation (Website to zSellify) */
.data-pulse {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--z-orange);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    animation: dataPulseFlow 2s linear infinite;
    box-shadow: 0 0 10px rgba(246, 130, 31, 0.6);
}

.data-pulse.dp1 { animation-delay: 0s; }
.data-pulse.dp2 { animation-delay: 0.7s; }
.data-pulse.dp3 { animation-delay: 1.4s; }

@keyframes dataPulseFlow {
    0% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* Content Atoms Extraction */
.content-atoms-extract {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.atom-extract {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--slate-800);
    border: 1px solid var(--slate-600);
    border-radius: 20px;
    padding: 4px 8px;
    font-size: 10px;
    opacity: 0;
    animation: atomExtract 3s ease-in-out infinite;
}

.atom-extract .ae-icon { font-size: 12px; }
.atom-extract .ae-rating { color: var(--z-orange); font-weight: 600; }

.atom-extract.ae1 { animation-delay: 0s; }
.atom-extract.ae2 { animation-delay: 0.5s; }
.atom-extract.ae3 { animation-delay: 1s; }
.atom-extract.ae4 { animation-delay: 1.5s; }

@keyframes atomExtract {
    0% { opacity: 0; transform: translateX(-10px); }
    20% { opacity: 1; transform: translateX(0); }
    80% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(20px); }
}

/* Platform Icons Carousel (Next to Video Clips - Going Up) */
.platform-carousel-clips {
    position: absolute;
    right: -70px;
    top: 35%;
    transform: translateY(-50%);
    width: 50px;
    height: 200px;
    overflow: hidden;
    mask-image: linear-gradient(to top, transparent 0%, black 15%, black 85%, transparent 100%);
}

.platform-carousel-clips .platform-carousel-track {
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: platformClipsUp 3s linear infinite;
}

.platform-icon-item {
    width: 44px;
    height: 44px;
    background: var(--slate-800);
    border: 2px solid var(--z-orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--z-orange);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(246, 130, 31, 0.4);
}

.platform-icon-item svg {
    width: 22px;
    height: 22px;
}

@keyframes platformClipsUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-56px * 5)); /* 5 items * (44px + 12px gap) */
    }
}

.stage-label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-top: var(--space-md);
}

.stage-status {
    font-size: 0.875rem;
    font-weight: 500;
}

.stage-status.green {
    color: #22c55e;
}

.stage-detail {
    font-size: 0.8125rem;
    color: var(--slate-500);
    line-height: 1.4;
}

/* Intelligence clarifying note */
.intelligence-note {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.intelligence-note p {
    font-size: 0.875rem;
    color: var(--slate-400);
    font-style: italic;
    line-height: 1.5;
    padding: var(--space-sm) var(--space-md);
    background: rgba(246, 130, 31, 0.05);
    border: 1px solid rgba(246, 130, 31, 0.15);
    border-radius: var(--radius-md);
}

/* Data Stream with Content Atoms */
.data-stream {
    position: relative;
    width: 140px;
    height: 200px;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.stream-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--slate-700);
    transform: translateY(-50%);
}

.stream-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--z-orange);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

/* Platform Icons flowing in stream */
.stream-platform {
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--slate-800);
    border: 2px solid var(--z-orange);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--z-orange);
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: platformFlow 3s linear infinite;
    box-shadow: 0 0 12px rgba(246, 130, 31, 0.4);
}

.stream-platform svg {
    width: 16px;
    height: 16px;
}

.stream-platform.sp1 { animation-delay: 0s; }
.stream-platform.sp2 { animation-delay: 0.75s; }
.stream-platform.sp3 { animation-delay: 1.5s; }
.stream-platform.sp4 { animation-delay: 2.25s; }

@keyframes platformFlow {
    0% { left: 0; opacity: 0; transform: translateY(-50%) scale(0.7); }
    15% { opacity: 1; transform: translateY(-50%) scale(1); }
    85% { opacity: 1; transform: translateY(-50%) scale(1); }
    100% { left: 100%; opacity: 0; transform: translateY(-50%) scale(0.7); }
}

/* Video Packets */
.video-packet {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0;
    animation: videoPacketFlow 2s linear infinite;
    filter: drop-shadow(0 0 8px rgba(246, 130, 31, 0.5));
}

.video-packet.vp1 { animation-delay: 0s; }
.video-packet.vp2 { animation-delay: 0.4s; }
.video-packet.vp3 { animation-delay: 0.8s; }
.video-packet.vp4 { animation-delay: 1.2s; }
.video-packet.vp5 { animation-delay: 1.6s; }

@keyframes videoPacketFlow {
    0% { left: 0; opacity: 0; transform: translateY(-50%) scale(0.8); }
    20% { opacity: 1; transform: translateY(-50%) scale(1); }
    80% { opacity: 1; transform: translateY(-50%) scale(1); }
    100% { left: 100%; opacity: 0; transform: translateY(-50%) scale(0.8); }
}

/* zSellify Processor */
.stage-zsellify {
    text-align: center;
}

.zsellify-processor {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.processor-ring {
    position: absolute;
    border: 2px solid var(--z-orange);
    border-radius: 50%;
    opacity: 0.3;
}

.processor-ring.outer {
    width: 130px;
    height: 130px;
    border-style: dashed;
    animation: ringRotate 12s linear infinite;
}

.processor-ring.middle {
    width: 110px;
    height: 110px;
    border-style: dotted;
    animation: ringRotate 10s linear infinite reverse;
}

.processor-ring.inner {
    width: 90px;
    height: 90px;
    border-style: dashed;
    animation: ringRotate 8s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.processor-core {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--z-orange), var(--z-orange-dark));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 40px rgba(246, 130, 31, 0.5);
}

.processor-glow {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--z-orange);
    border-radius: var(--radius-xl);
    filter: blur(30px);
    opacity: 0.6;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Processing Particles */
.process-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--z-orange);
    border-radius: 50%;
    animation: processOrbit 3s linear infinite;
}

.process-particle.pp1 { animation-delay: 0s; }
.process-particle.pp2 { animation-delay: 0.5s; }
.process-particle.pp3 { animation-delay: 1s; }
.process-particle.pp4 { animation-delay: 1.5s; }
.process-particle.pp5 { animation-delay: 2s; }
.process-particle.pp6 { animation-delay: 2.5s; }

@keyframes processOrbit {
    0% { 
        transform: rotate(0deg) translateX(55px) rotate(0deg);
        opacity: 1;
    }
    100% { 
        transform: rotate(360deg) translateX(55px) rotate(-360deg);
        opacity: 1;
    }
}

/* Video Clips Output */
.stage-clips {
    text-align: center;
    position: relative;
    padding-bottom: 80px;
}

.clips-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 180px;
}

.video-clip {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    opacity: 0;
    animation: clipAppear 0.5s ease forwards;
}

.video-clip.clip-1 { animation-delay: 0.2s; }
.video-clip.clip-2 { animation-delay: 0.4s; }
.video-clip.clip-3 { animation-delay: 0.6s; }
.video-clip.clip-4 { animation-delay: 0.8s; }

@keyframes clipAppear {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.clip-content {
    height: 60px;
    background: linear-gradient(135deg, var(--slate-700), var(--slate-600));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.clip-visual {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, 
        rgba(246, 130, 31, 0.1), 
        transparent, 
        rgba(246, 130, 31, 0.1)
    );
    animation: visualShimmer 2s ease-in-out infinite;
}

@keyframes visualShimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.clip-play {
    width: 24px;
    height: 24px;
    background: rgba(246, 130, 31, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    position: relative;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.clip-score {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
}

.clip-score .score-label {
    color: var(--slate-500);
    font-weight: 500;
}

.clip-score .score-value {
    color: var(--z-orange);
    font-weight: 700;
    font-size: 14px;
}

.clip-score.high .score-value {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Video in clips */
.clip-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video publish stream from clips */
.video-publish-stream {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80px;
}

.publish-particle {
    width: 32px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    position: absolute;
    border: 2px solid var(--z-orange);
    box-shadow: 0 0 15px rgba(246, 130, 31, 0.5);
    animation: publishFlow 2s ease-in-out infinite;
}

.publish-particle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.publish-particle.pp1 { animation-delay: 0s; }
.publish-particle.pp2 { animation-delay: 0.6s; }
.publish-particle.pp3 { animation-delay: 1.2s; }

@keyframes publishFlow {
    0% { 
        top: 0;
        opacity: 0;
        transform: scale(0.8);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    80% {
        opacity: 1;
        transform: scale(1);
    }
    100% { 
        top: 80px;
        opacity: 0;
        transform: scale(0.6);
    }
}

/* Video stream particles to platforms */
.platform-video-streams {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 120px;
    pointer-events: none;
    z-index: 10;
}

.video-stream-particle {
    position: absolute;
    width: 36px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--z-orange);
    box-shadow: 0 0 20px rgba(246, 130, 31, 0.6);
    opacity: 0;
}

.video-stream-particle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animate each particle to its target platform */
.video-stream-particle.vsp1 {
    left: 50%;
    animation: streamToTikTok 3s ease-in-out infinite;
}

.video-stream-particle.vsp2 {
    left: 50%;
    animation: streamToReels 3s ease-in-out infinite 0.5s;
}

.video-stream-particle.vsp3 {
    left: 50%;
    animation: streamToShorts 3s ease-in-out infinite 1s;
}

.video-stream-particle.vsp4 {
    left: 50%;
    animation: streamToSnap 3s ease-in-out infinite 1.5s;
}

.video-stream-particle.vsp5 {
    left: 50%;
    animation: streamToTwitter 3s ease-in-out infinite 2s;
}

@keyframes streamToTikTok {
    0% { 
        top: 0;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    80% {
        opacity: 1;
    }
    100% { 
        top: 100px;
        left: 10%;
        opacity: 0;
        transform: translateX(-50%) scale(0.7);
    }
}

@keyframes streamToReels {
    0% { 
        top: 0;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    80% {
        opacity: 1;
    }
    100% { 
        top: 100px;
        left: 28%;
        opacity: 0;
        transform: translateX(-50%) scale(0.7);
    }
}

@keyframes streamToShorts {
    0% { 
        top: 0;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    80% {
        opacity: 1;
    }
    100% { 
        top: 100px;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%) scale(0.7);
    }
}

@keyframes streamToSnap {
    0% { 
        top: 0;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    80% {
        opacity: 1;
    }
    100% { 
        top: 100px;
        left: 72%;
        opacity: 0;
        transform: translateX(-50%) scale(0.7);
    }
}

@keyframes streamToTwitter {
    0% { 
        top: 0;
        left: 50%;
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    80% {
        opacity: 1;
    }
    100% { 
        top: 100px;
        left: 90%;
        opacity: 0;
        transform: translateX(-50%) scale(0.7);
    }
}

/* Platforms Destination */
.platforms-destination {
    position: relative;
    padding-top: var(--space-3xl);
    margin-top: var(--space-xl);
}

.distribution-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
}

.dist-pulse {
    position: absolute;
    inset: 0;
    background: var(--z-orange);
    border-radius: 50%;
    animation: distPulse 2s ease-in-out infinite;
}

@keyframes distPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Platform Stream SVG */
.platform-streams {
    width: 100%;
    max-width: 900px;
    height: 140px;
    margin: 0 auto;
    display: block;
}

.stream-path {
    fill: none;
    stroke: rgba(246, 130, 31, 0.2);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
}

.stream-dot {
    opacity: 0.9;
}

/* Platform Destination Row */
.platform-dest-row {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-top: -20px;
}

.platform-dest-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
}

.dest-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.dest-icon svg {
    width: 28px;
    height: 28px;
}

.dest-icon.tiktok {
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
}

.dest-icon.reels {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.dest-icon.shorts {
    background: #FF0000;
}

.dest-icon.snap {
    background: #FFFC00;
    color: var(--slate-900);
}

.dest-icon.twitter {
    background: #000000;
    border: 1px solid var(--slate-600);
}

.platform-dest-item:hover .dest-icon {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.platform-dest-item span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-400);
}

.dest-pulse {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--z-orange);
    opacity: 0;
    animation: destPulseAnim 2s ease-out infinite;
}

.platform-dest-item:nth-child(1) .dest-pulse { animation-delay: 0s; }
.platform-dest-item:nth-child(2) .dest-pulse { animation-delay: 0.3s; }
.platform-dest-item:nth-child(3) .dest-pulse { animation-delay: 0.6s; }
.platform-dest-item:nth-child(4) .dest-pulse { animation-delay: 0.9s; }
.platform-dest-item:nth-child(5) .dest-pulse { animation-delay: 1.2s; }

@keyframes destPulseAnim {
    0% { transform: translateX(-50%) scale(1); opacity: 0.8; }
    100% { transform: translateX(-50%) scale(1.5); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PLATFORM SECTION (Shopify-style)
   ═══════════════════════════════════════════════════════════════════════════ */

.platform-section {
    padding: var(--space-4xl) 0;
    background: var(--slate-950);
}

.platform-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.platform-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.platform-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.platform-subtitle span {
    display: inline;
}

.platform-subtitle .highlight {
    color: var(--white);
    font-weight: 600;
}

.platform-subtitle .muted {
    color: var(--slate-500);
}

.platform-subtitle span:not(.highlight):not(.muted) {
    color: var(--slate-300);
}

/* Platform Tiles */
.platform-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.platform-tile {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: tileReveal 0.8s ease forwards;
}

.platform-tile:nth-child(1) { animation-delay: 0.1s; }
.platform-tile:nth-child(2) { animation-delay: 0.25s; }
.platform-tile:nth-child(3) { animation-delay: 0.4s; }

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

.tile-image {
    height: 280px;
    background: var(--slate-900);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--slate-800);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tile-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(246, 130, 31, 0.1),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.tile-image::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(246, 130, 31, 0.1) 50%,
        transparent
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    border-radius: var(--radius-xl);
}

.platform-tile:hover .tile-image {
    border-color: rgba(246, 130, 31, 0.3);
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(246, 130, 31, 0.1);
}

.platform-tile:hover .tile-image::before,
.platform-tile:hover .tile-image::after {
    opacity: 1;
}

.tile-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.tile-description {
    font-size: 0.9375rem;
    color: var(--slate-400);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* Tile 1 - Website Browser */
.tile-browser {
    width: 85%;
    height: 85%;
    background: var(--slate-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.browser-dots {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: var(--slate-700);
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-500);
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-content {
    padding: 16px;
}

.mock-header {
    height: 24px;
    background: linear-gradient(90deg, var(--slate-600) 40%, transparent 40%);
    border-radius: 4px;
    margin-bottom: 16px;
}

.mock-hero {
    height: 60px;
    background: linear-gradient(135deg, var(--z-orange), var(--z-orange-light));
    border-radius: 8px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.mock-card {
    height: 50px;
    background: var(--slate-600);
    border-radius: 6px;
}

/* Tile 2 - Intelligence / Analytics */
.tile-intelligence {
    background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
}

.tile-phone {
    width: 140px;
    height: 200px;
    background: var(--slate-800);
    border-radius: 24px;
    padding: 8px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.phone-notch {
    width: 60px;
    height: 20px;
    background: var(--slate-900);
    border-radius: 0 0 12px 12px;
    margin: 0 auto 12px;
}

.phone-screen-inner {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    height: calc(100% - 40px);
    padding: 16px 12px;
}

.analytics-bar {
    width: 20px;
    height: var(--height);
    background: linear-gradient(180deg, var(--z-orange), var(--z-orange-dark));
    border-radius: 4px 4px 0 0;
    animation: barPulse 2s ease-in-out infinite;
}

.analytics-bar:nth-child(1) { animation-delay: 0s; }
.analytics-bar:nth-child(2) { animation-delay: 0.2s; }
.analytics-bar:nth-child(3) { animation-delay: 0.4s; }
.analytics-bar:nth-child(4) { animation-delay: 0.6s; }
.analytics-bar:nth-child(5) { animation-delay: 0.8s; }

@keyframes barPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.intelligence-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid var(--z-orange);
    border-radius: 50%;
    opacity: 0;
    animation: radarPulse 3s ease-out infinite;
}

@keyframes radarPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Tile 3 - Video Output */
.tile-output {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.output-stack {
    display: flex;
    gap: -20px;
    transform: perspective(500px) rotateY(-5deg);
}

.output-video {
    width: 90px;
    height: 160px;
    background: var(--slate-700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.output-video:hover {
    transform: translateY(-8px) scale(1.05);
}

.output-video[data-platform="tiktok"] {
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
    margin-right: -15px;
    z-index: 3;
}

.output-video[data-platform="reels"] {
    background: linear-gradient(135deg, #F58529, #DD2A7B);
    margin-right: -15px;
    z-index: 2;
}

.output-video[data-platform="shorts"] {
    background: linear-gradient(135deg, #FF0000, #cc0000);
    z-index: 1;
}

.output-play {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-900);
    font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   EVERYONE SECTION (Shopify-style)
   ═══════════════════════════════════════════════════════════════════════════ */

.everyone-section {
    padding: var(--space-4xl) 0;
    background: var(--slate-900);
    border-top: 1px solid var(--slate-800);
}

.everyone-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2xl);
    align-items: start;
    margin-bottom: var(--space-3xl);
}

.everyone-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    position: relative;
}

.everyone-title::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--z-orange);
    border-radius: 2px;
}

.everyone-subtitle {
    font-size: 1.125rem;
    color: var(--slate-400);
    line-height: 1.7;
    max-width: 500px;
}

.everyone-credibility {
    font-size: 0.9375rem;
    color: var(--slate-500);
    max-width: 300px;
    text-align: right;
}

/* Use Case Cards */
.usecase-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.usecase-card {
    background: var(--slate-800);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: cardReveal 0.7s ease forwards;
}

.usecase-card:nth-child(1) { animation-delay: 0.1s; }
.usecase-card:nth-child(2) { animation-delay: 0.2s; }
.usecase-card:nth-child(3) { animation-delay: 0.3s; }

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

.usecase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.usecase-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        var(--z-orange),
        transparent 50%,
        var(--z-orange-light)
    );
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.usecase-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(246, 130, 31, 0.15);
    border-color: rgba(246, 130, 31, 0.2);
}

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

.usecase-card:hover::after {
    opacity: 0.3;
}

.usecase-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.usecase-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(0);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.usecase-card:hover .usecase-image::before {
    filter: blur(2px) brightness(1.1);
    transform: scale(1.1);
}

.usecase-entrepreneur {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

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

.usecase-enterprise {
    background: linear-gradient(135deg, #dc2626, #f97316);
}

.usecase-icon {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.usecase-card:hover .usecase-icon {
    transform: scale(1.2) translateY(-5px);
}

.usecase-headline {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    padding: var(--space-lg) var(--space-lg) var(--space-sm);
    transition: color 0.3s ease;
}

.usecase-card:hover .usecase-headline {
    color: var(--z-orange-light);
}

.usecase-copy {
    font-size: 0.9375rem;
    color: var(--slate-400);
    line-height: 1.6;
    padding: 0 var(--space-lg) var(--space-lg);
    transition: color 0.3s ease;
}

.usecase-card:hover .usecase-copy {
    color: var(--slate-300);
}

.usecase-cta {
    text-align: center;
}

.btn-usecase {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    background: var(--slate-800);
    border: 1px solid var(--slate-600);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.btn-usecase:hover {
    background: var(--white);
    color: var(--slate-900);
    border-color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   DISCOVERED SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.discovered-section {
    padding: var(--space-4xl) 0;
    background: var(--slate-950);
    border-top: 1px solid var(--slate-800);
}

.discovered-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.discovered-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(246, 130, 31, 0.1);
    border: 1px solid rgba(246, 130, 31, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--z-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.discovered-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.discovered-description {
    font-size: 1.125rem;
    color: var(--slate-400);
    line-height: 1.7;
}

/* Discovery Visual */
.discovered-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discovery-platforms {
    position: absolute;
    inset: 0;
}

.discovery-platform {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    animation: float 4s ease-in-out infinite;
}

.discovery-platform[data-platform="tiktok"] {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.discovery-platform[data-platform="instagram"] {
    top: 10%;
    right: 15%;
    animation-delay: 1s;
}

.discovery-platform[data-platform="youtube"] {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.discovery-platform[data-platform="snap"] {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.discovery-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-lg);
    color: var(--slate-300);
    transition: all var(--transition-fast);
}

.discovery-icon svg {
    width: 28px;
    height: 28px;
}

.discovery-platform:hover .discovery-icon {
    border-color: var(--z-orange);
    color: var(--white);
    transform: scale(1.1);
}

.discovery-platform span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--slate-500);
}

.discovery-center {
    position: relative;
    z-index: 10;
}

.discovery-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--z-orange), var(--z-orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 40px rgba(246, 130, 31, 0.4);
    position: relative;
    z-index: 2;
}

.discovery-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid var(--z-orange);
    border-radius: 50%;
    animation: discoveryPulse 2s ease-out infinite;
}

.discovery-pulse::before,
.discovery-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--z-orange);
    border-radius: 50%;
    animation: discoveryPulse 2s ease-out infinite;
}

.discovery-pulse::before {
    width: 150px;
    height: 150px;
    animation-delay: 0.5s;
}

.discovery-pulse::after {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   WHAT WE ARE SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.what-we-are {
    padding: var(--space-4xl) 0;
    background: var(--slate-900);
    border-top: 1px solid var(--slate-800);
    border-bottom: 1px solid var(--slate-800);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(246, 130, 31, 0.1);
    border: 1px solid rgba(246, 130, 31, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--z-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--z-orange);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-400);
    margin-top: var(--space-md);
}

.presence-description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.presence-description p {
    font-size: 1.125rem;
    color: var(--slate-300);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.presence-name {
    font-size: 1.25rem;
    color: var(--white);
}

.presence-name strong {
    color: var(--z-orange);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLOW VISUALIZATION
   ═══════════════════════════════════════════════════════════════════════════ */

.flow-section {
    padding: var(--space-4xl) 0;
    background: var(--slate-950);
}

.flow-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    padding: var(--space-2xl) 0;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.flow-step[data-step="1"] { animation-delay: 0.1s; }
.flow-step[data-step="2"] { animation-delay: 0.3s; }
.flow-step[data-step="3"] { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.flow-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-lg);
    color: var(--slate-300);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.flow-icon svg {
    width: 32px;
    height: 32px;
}

.flow-icon-main {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--z-orange), var(--z-orange-dark));
    border: none;
    color: var(--white);
    box-shadow: 0 8px 40px rgba(246, 130, 31, 0.3);
}

.flow-z {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
}

.flow-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.flow-status {
    font-size: 0.8125rem;
    color: var(--success);
    font-weight: 500;
}

.flow-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.flow-features span {
    font-size: 0.8125rem;
    color: var(--slate-400);
}

.flow-connector {
    position: relative;
    width: 80px;
    height: 2px;
}

.flow-line {
    position: absolute;
    inset: 0;
    background: var(--slate-700);
}

.flow-pulse {
    position: absolute;
    top: -3px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--z-orange);
    border-radius: 50%;
    animation: flowPulse 2s ease-in-out infinite;
}

@keyframes flowPulse {
    0%, 100% {
        left: 0;
        opacity: 1;
    }
    50% {
        left: calc(100% - 8px);
        opacity: 0.5;
    }
}

.flow-output {
    padding-top: var(--space-2xl);
}

.output-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.output-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.output-platform:nth-child(1) { animation-delay: 0.7s; }
.output-platform:nth-child(2) { animation-delay: 0.8s; }
.output-platform:nth-child(3) { animation-delay: 0.9s; }
.output-platform:nth-child(4) { animation-delay: 1s; }

.output-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    transition: transform var(--transition-fast);
}

.output-icon:hover {
    transform: scale(1.1);
}

.output-icon svg {
    width: 28px;
    height: 28px;
}

.output-icon.tiktok {
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
    color: var(--white);
}

.output-icon.reels {
    background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
    color: var(--white);
}

.output-icon.shorts {
    background: #FF0000;
    color: var(--white);
}

.output-icon.snap {
    background: #FFFC00;
    color: var(--slate-950);
}

.output-platform span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-400);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.features {
    padding: var(--space-xl) 0;
    background: var(--slate-900);
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--slate-800);
}

.feature-block:last-child {
    border-bottom: none;
}

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

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

.feature-content {
    max-width: 480px;
}

.feature-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(246, 130, 31, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--z-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.feature-kicker {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--z-orange);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.feature-description {
    font-size: 1.0625rem;
    color: var(--slate-300);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.feature-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--z-orange);
    transition: color var(--transition-fast);
}

.feature-link:hover {
    color: var(--z-orange-light);
}

.feature-platforms {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.fp-icon {
    padding: var(--space-sm) var(--space-md);
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-300);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-sm);
    color: var(--slate-300);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

/* Feature Visuals */
.feature-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    width: 100%;
    max-width: 400px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(246, 130, 31, 0.1),
        transparent 30%
    );
    animation: cardShine 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.visual-card:hover {
    border-color: rgba(246, 130, 31, 0.3);
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(246, 130, 31, 0.1);
}

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

.visual-url {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--slate-900);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.url-icon {
    font-size: 1rem;
}

.url-text {
    flex: 1;
    font-family: monospace;
    font-size: 0.875rem;
    color: var(--slate-300);
}

.url-check {
    color: var(--success);
    font-weight: 600;
}

.visual-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--success);
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Phones Visual */
.visual-phones {
    display: flex;
    align-items: flex-end;
    gap: var(--space-md);
    perspective: 1000px;
}

.phone {
    width: 120px;
    height: 220px;
    background: linear-gradient(145deg, var(--slate-700), var(--slate-800));
    border: 2px solid var(--slate-600);
    border-radius: 24px;
    padding: 8px;
    transform: rotateY(-5deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone:hover {
    transform: rotateY(0) translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(246, 130, 31, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(246, 130, 31, 0.3);
}

.phone-2 {
    height: 240px;
    transform: rotateY(0) translateY(-16px);
    z-index: 2;
}

.phone-2:hover {
    transform: rotateY(0) translateY(-30px) scale(1.08);
}

.phone-3 {
    transform: rotateY(5deg);
}

.phone-3:hover {
    transform: rotateY(0) translateY(-15px) scale(1.05);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--slate-700), var(--slate-600));
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.phone-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(246, 130, 31, 0.3) 0%, 
        rgba(246, 130, 31, 0.1) 50%,
        transparent 100%
    );
    transition: all 0.5s ease;
}

.phone:hover .phone-content {
    background: linear-gradient(180deg, 
        rgba(246, 130, 31, 0.5) 0%, 
        rgba(246, 130, 31, 0.2) 50%,
        transparent 100%
    );
}

.phone-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone:hover .phone-icon {
    background: rgba(246, 130, 31, 0.8);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(246, 130, 31, 0.5);
}

/* Atoms Visual */
.visual-atoms {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
    max-width: 400px;
}

.atom-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-md);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    animation: atomSlide 0.5s ease forwards;
}

.atom-card:nth-child(1) { animation-delay: 0.1s; }
.atom-card:nth-child(2) { animation-delay: 0.2s; }
.atom-card:nth-child(3) { animation-delay: 0.3s; }
.atom-card:nth-child(4) { animation-delay: 0.4s; }

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

.atom-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(246, 130, 31, 0.1),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.atom-card:hover {
    border-color: var(--z-orange);
    transform: translateX(8px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        -4px 0 20px rgba(246, 130, 31, 0.2);
}

.atom-card:hover::before {
    transform: translateX(100%);
}

.atom-score {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--z-orange), var(--z-orange-dark));
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 12px rgba(246, 130, 31, 0.3);
}

.atom-card:hover .atom-score {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(246, 130, 31, 0.5);
}

.atom-preview {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--slate-300);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.atom-card:hover .atom-preview {
    color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════════════════════════════════════════ */

.social-proof {
    padding: var(--space-xl) 0;
    background: var(--slate-950);
    border-top: 1px solid var(--slate-800);
    border-bottom: 1px solid var(--slate-800);
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--slate-400);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.pricing-hero {
    padding: 160px 0 var(--space-3xl);
    background: var(--slate-950);
    text-align: center;
}

.pricing-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.pricing-hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-400);
    max-width: 500px;
    margin: 0 auto;
}

.pricing-page {
    padding-top: 0;
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-4xl) 0;
    background: var(--slate-900);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.faq-item {
    padding: var(--space-xl);
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(246, 130, 31, 0.3);
    transform: translateY(-4px);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.faq-answer {
    font-size: 0.9375rem;
    color: var(--slate-400);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Base state for animated elements */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animate-left {
    transform: translateX(-40px);
}

.scroll-animate.animate-right {
    transform: translateX(40px);
}

.scroll-animate.animate-scale {
    transform: scale(0.95);
}

/* Visible state */
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Staggered animations for children */
.scroll-animate-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scroll-animate-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.scroll-animate-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.scroll-animate-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.scroll-animate-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.scroll-animate-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }

.scroll-animate-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Fade up animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Slide in from sides */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.visible,
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Counter animation styles */
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════════════ */

.pricing {
    padding: var(--space-4xl) 0;
    background: var(--slate-900);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(
        ellipse at top,
        rgba(246, 130, 31, 0.08),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(
        135deg,
        rgba(246, 130, 31, 0.5),
        transparent 30%,
        transparent 70%,
        rgba(246, 130, 31, 0.3)
    );
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover {
    border-color: rgba(246, 130, 31, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(246, 130, 31, 0.1);
}

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

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

.pricing-card-featured {
    border-color: var(--z-orange);
    box-shadow: 0 8px 40px rgba(246, 130, 31, 0.15);
    background: linear-gradient(
        180deg,
        rgba(246, 130, 31, 0.05),
        var(--slate-800) 30%
    );
}

.pricing-card-featured::before {
    opacity: 1;
    background: radial-gradient(
        ellipse at top,
        rgba(246, 130, 31, 0.15),
        transparent 70%
    );
}

.pricing-card-featured:hover {
    border-color: var(--z-orange-light);
    box-shadow: 
        0 25px 60px rgba(246, 130, 31, 0.25),
        0 0 100px rgba(246, 130, 31, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-xs) var(--space-md);
    background: var(--z-orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
}

.pricing-header {
    margin-bottom: var(--space-lg);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.pricing-for {
    font-size: 0.9375rem;
    color: var(--slate-400);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-400);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--slate-400);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    position: relative;
    padding: var(--space-sm) 0;
    padding-left: var(--space-xl);
    font-size: 0.9375rem;
    color: var(--slate-300);
    border-bottom: 1px solid var(--slate-700);
}

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

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 600;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: var(--space-md);
    background: transparent;
    border: 1px solid var(--slate-600);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.btn-pricing:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
}

.btn-pricing-featured {
    background: var(--z-orange);
    border-color: var(--z-orange);
}

.btn-pricing-featured:hover {
    background: var(--z-orange-light);
    border-color: var(--z-orange-light);
}

/* ═══════════════════════════════════════════════════════════════════════════
   VIDEO INFERENCE CLOUD SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.inference-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--slate-950) 0%, #0a0a12 50%, var(--slate-950) 100%);
}

/* Intro Block */
.inference-intro {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
}

.inference-icon-cluster {
    position: relative;
    width: 160px;
    height: 160px;
}

.inference-node {
    position: absolute;
    width: 48px;
    height: 48px;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    animation: nodeFloat 3s ease-in-out infinite;
}

.inference-node.n1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.inference-node.n2 {
    bottom: 20px;
    left: 10px;
    animation-delay: 0.5s;
}

.inference-node.n3 {
    bottom: 20px;
    right: 10px;
    animation-delay: 1s;
}

@keyframes nodeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.inference-node.n1 {
    animation-name: nodeFloatCenter;
}

@keyframes nodeFloatCenter {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.inference-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--z-orange), var(--z-orange-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(246, 130, 31, 0.4);
}

.inference-intro-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.inference-intro-text {
    font-size: 1rem;
    color: var(--slate-300);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.inference-intro-text:last-child {
    margin-bottom: 0;
}

/* Problem Statement */
.inference-problems {
    margin-bottom: var(--space-2xl);
}

.inference-problems-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.inference-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.problem-card {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base), transform 0.5s ease, opacity 0.5s ease;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(246, 130, 31, 0.2);
    transform: translateY(-4px);
}

.problem-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.problem-card p {
    font-size: 0.9375rem;
    color: var(--slate-400);
    line-height: 1.6;
}

/* Why zSellify */
.inference-why {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl);
    background: rgba(246, 130, 31, 0.05);
    border: 1px solid rgba(246, 130, 31, 0.15);
    border-radius: var(--radius-xl);
}

.inference-why-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.inference-why-subtitle {
    font-size: 1rem;
    color: var(--slate-300);
    line-height: 1.7;
}

.cloud-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.stack-layer {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-300);
    transition: all var(--transition-base);
}

.stack-layer:hover {
    background: var(--slate-700);
    border-color: var(--z-orange);
    color: var(--white);
}

.stack-icon {
    font-size: 1.25rem;
}

.stack-layer.layer-top {
    background: linear-gradient(135deg, var(--z-orange), var(--z-orange-dark));
    border-color: var(--z-orange);
    color: var(--white);
}

/* Benefits Grid */
.inference-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.benefit-card {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--z-orange);
}

.benefit-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--slate-400);
    line-height: 1.6;
}

/* Features Checklist */
.inference-features {
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
}

.inference-features-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.features-checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.feature-check {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--slate-300);
}

.check-icon {
    color: var(--z-orange);
    font-weight: 700;
}

/* Use Cases */
.inference-usecases {
    margin-bottom: var(--space-lg);
}

.inference-usecases-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.inference-usecases-subtitle {
    font-size: 1rem;
    color: var(--slate-400);
    margin-bottom: var(--space-md);
    max-width: 700px;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.usecase-item {
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.usecase-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(246, 130, 31, 0.2);
    transform: translateY(-4px);
}

.usecase-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.usecase-item p {
    font-size: 0.875rem;
    color: var(--slate-400);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--slate-950);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--slate-400);
    margin-bottom: var(--space-xl);
}

.cta-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 500px;
    margin: 0 auto var(--space-md);
}

.cta-input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.cta-input::placeholder {
    color: var(--slate-500);
}

.cta-input:focus {
    border-color: var(--z-orange);
}

.cta-button {
    padding: var(--space-md) var(--space-xl);
    background: var(--z-orange);
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--z-orange-light);
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--slate-500);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FINALE SECTION - Spectacular Animation
   ═══════════════════════════════════════════════════════════════════════════ */

.finale-section {
    position: relative;
    padding: var(--space-4xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--slate-950);
}

.finale-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.finale-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(246, 130, 31, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(246, 130, 31, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.finale-glow {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translate(50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(246, 130, 31, 0.15) 0%,
        rgba(246, 130, 31, 0.05) 40%,
        transparent 70%
    );
    animation: glowBreathe 6s ease-in-out infinite;
}

@keyframes glowBreathe {
    0%, 100% { 
        transform: translate(50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(50%, -50%) scale(1.2);
        opacity: 1;
    }
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--z-orange);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

.finale-section .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.finale-content {
    max-width: 500px;
}

.finale-tag {
    display: inline-block;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, rgba(246, 130, 31, 0.2), rgba(246, 130, 31, 0.1));
    border: 1px solid rgba(246, 130, 31, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--z-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    animation: tagGlow 3s ease-in-out infinite;
}

@keyframes tagGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(246, 130, 31, 0.2); }
    50% { box-shadow: 0 0 40px rgba(246, 130, 31, 0.4); }
}

.finale-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.finale-description {
    font-size: 1.25rem;
    color: var(--slate-200);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.finale-subtext {
    font-size: 1rem;
    color: var(--slate-400);
    line-height: 1.7;
    padding-left: var(--space-lg);
    border-left: 3px solid var(--z-orange);
    margin-bottom: var(--space-lg);
}

.finale-anchor {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.6;
    padding: var(--space-md) var(--space-lg);
    background: rgba(246, 130, 31, 0.1);
    border: 1px solid rgba(246, 130, 31, 0.25);
    border-radius: var(--radius-md);
}

/* Orbital Animation */
.finale-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.orbit-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(246, 130, 31, 0.15);
    border-radius: 50%;
    animation: orbitSpin 20s linear infinite;
}

.orbit-1 {
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    animation-duration: 25s;
}

.orbit-2 {
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    animation-duration: 25s;
    animation-delay: -6.25s;
}

.orbit-3 {
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    animation-duration: 25s;
    animation-delay: -12.5s;
}

.orbit-4 {
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    animation-duration: 25s;
    animation-delay: -18.75s;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-platform {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    animation: counterSpin 25s linear infinite;
}

.orbit-1 .orbit-platform { animation-duration: 25s; }
.orbit-2 .orbit-platform { animation-duration: 25s; animation-delay: -6.25s; }
.orbit-3 .orbit-platform { animation-duration: 25s; animation-delay: -12.5s; }
.orbit-4 .orbit-platform { animation-duration: 25s; animation-delay: -18.75s; }

@keyframes counterSpin {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(-360deg); }
}

.orbit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: var(--radius-lg);
    color: var(--slate-300);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.orbit-icon svg {
    width: 28px;
    height: 28px;
}

.orbit-platform:hover .orbit-icon {
    border-color: var(--z-orange);
    color: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(246, 130, 31, 0.4);
}

.orbit-platform span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Center Logo */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--z-orange), var(--z-orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    position: relative;
    z-index: 10;
    box-shadow: 
        0 0 60px rgba(246, 130, 31, 0.5),
        0 0 120px rgba(246, 130, 31, 0.3);
    animation: logoBreath 4s ease-in-out infinite;
}

@keyframes logoBreath {
    0%, 100% { 
        box-shadow: 
            0 0 60px rgba(246, 130, 31, 0.5),
            0 0 120px rgba(246, 130, 31, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 80px rgba(246, 130, 31, 0.7),
            0 0 160px rgba(246, 130, 31, 0.4);
    }
}

.center-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--z-orange);
    border-radius: 50%;
    opacity: 0;
    animation: ringExpand 3s ease-out infinite;
}

.ring-1 {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    animation-delay: 0s;
}

.ring-2 {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    animation-delay: 1s;
}

.ring-3 {
    width: 120px;
    height: 120px;
    margin: -60px 0 0 -60px;
    animation-delay: 2s;
}

@keyframes ringExpand {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Connection Lines */
.orbit-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: lineFlow 3s ease-in-out infinite;
}

.connection-line:nth-child(2) { animation-delay: 0.5s; }
.connection-line:nth-child(3) { animation-delay: 1s; }
.connection-line:nth-child(4) { animation-delay: 1.5s; }

@keyframes lineFlow {
    0%, 100% {
        stroke-dashoffset: 200;
        opacity: 0;
    }
    50% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--slate-900);
    border-top: 1px solid var(--slate-800);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.footer-links {
    display: flex;
    gap: var(--space-3xl);
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-column a {
    display: block;
    font-size: 0.875rem;
    color: var(--slate-400);
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--slate-800);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--slate-500);
    transition: color var(--transition-fast);
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    /* Inference Section Responsive */
    .inference-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .inference-intro-visual {
        display: flex;
        justify-content: center;
    }
    
    .inference-problems-grid {
        grid-template-columns: 1fr;
    }
    
    .inference-why {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .inference-why-visual {
        display: flex;
        justify-content: center;
    }
    
    .inference-benefits {
        grid-template-columns: 1fr;
    }
    
    .features-checklist {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .feature-block-reverse {
        direction: ltr;
    }
    
    .feature-content {
        max-width: none;
    }
    
    .platform-tiles {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .tile-image {
        height: 240px;
    }
    
    .everyone-header {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .everyone-credibility {
        text-align: left;
        max-width: none;
    }
    
    .usecase-cards {
        grid-template-columns: 1fr;
    }
    
    .discovered-section .container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .discovered-visual {
        height: 300px;
    }
    
    .finale-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .finale-content {
        max-width: none;
    }
    
    .finale-subtext {
        border-left: none;
        border-top: 3px solid var(--z-orange);
        padding-left: 0;
        padding-top: var(--space-lg);
    }
    
    .orbit-container {
        width: 350px;
        height: 350px;
    }
    
    .orbit-1, .orbit-2, .orbit-3, .orbit-4 {
        width: 280px;
        height: 280px;
        margin: -140px 0 0 -140px;
    }
    
    .center-logo {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .orbit-icon {
        width: 48px;
        height: 48px;
    }
    
    .orbit-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .flow-stage {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }
    
    .flow-connector {
        transform: rotate(90deg);
        padding-top: 0;
        width: 60px;
        height: 60px;
    }
    
    .connector-dot {
        top: 25px !important;
    }
    
    .website-preview {
        width: 220px;
        height: 170px;
    }
    
    .video-phone {
        width: 120px;
        height: 200px;
    }
    
    .platform-row {
        gap: var(--space-md);
    }
    
    /* Spectacular Flow Animation responsive */
    .animation-stage {
        flex-direction: column;
        align-items: center;
        gap: var(--space-2xl);
    }
    
    .data-stream {
        width: 60px;
        height: 80px;
        transform: rotate(90deg);
        padding-top: 0;
    }
    
    .content-atoms-extract {
        right: auto;
        top: auto;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }
    
    .mockup-browser {
        width: 280px;
    }
    
    .clips-container {
        width: 220px;
    }
    
    .platform-streams {
        height: 100px;
    }
    
    .platform-dest-row {
        gap: var(--space-md);
    }
    
    .dest-icon {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    /* Inference Section Mobile */
    .features-checklist {
        grid-template-columns: 1fr;
    }
    
    .usecases-grid {
        grid-template-columns: 1fr;
    }
    
    .inference-intro {
        padding: var(--space-lg);
    }
    
    .inference-why {
        padding: var(--space-lg);
    }
    
    .inference-features {
        padding: var(--space-lg);
    }
    
    .nav-links {
        display: none;
    }
    
    /* Mobile Mega Menu */
    .nav-mobile-open .nav-dropdown {
        width: 100%;
    }
    
    .nav-mobile-open .nav-dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: var(--space-sm) 0;
    }
    
    .nav-mobile-open .nav-mega-menu {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: none;
        box-shadow: none;
        background: transparent;
        transition: max-height 0.3s ease;
    }
    
    .nav-mobile-open .nav-dropdown.active .nav-mega-menu {
        max-height: 1000px;
        padding: var(--space-md) 0;
    }
    
    .nav-mobile-open .mega-menu-inner {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .nav-mobile-open .mega-column-featured {
        margin: 0;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    /* Platform Section Mobile */
    .platform-tiles {
        grid-template-columns: 1fr;
    }
    
    .tile-description {
        max-width: none;
    }
    
    /* Everyone Section Mobile */
    .everyone-title::before {
        display: none;
    }
    
    .usecase-cards {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .usecase-image {
        height: 160px;
    }
    
    /* Discovered Section Mobile */
    .discovery-platform {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    .discovery-platforms {
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        margin-bottom: var(--space-xl);
    }
    
    .discovered-visual {
        height: auto;
        flex-direction: column;
    }
    
    .discovery-center {
        margin-top: var(--space-xl);
    }
    
    .discovery-logo {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .flow-visualization {
        flex-direction: column;
    }
    
    .flow-connector {
        width: 2px;
        height: 40px;
    }
    
    .flow-line {
        width: 2px;
        height: 100%;
    }
    
    .flow-pulse {
        top: 0;
        left: -3px;
        animation: flowPulseVertical 2s ease-in-out infinite;
    }
    
    @keyframes flowPulseVertical {
        0%, 100% {
            top: 0;
            opacity: 1;
        }
        50% {
            top: calc(100% - 8px);
            opacity: 0.5;
        }
    }
    
    .output-platforms {
        gap: var(--space-lg);
    }
    
    .proof-stats {
        gap: var(--space-2xl);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
    
    .visual-phones {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-platforms {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .platform-icons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .visual-phones {
        transform: scale(0.9);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Base state for animated elements */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for children */
.scroll-animate-stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-stagger.fade-in > *:nth-child(1) { transition-delay: 0s; }
.scroll-animate-stagger.fade-in > *:nth-child(2) { transition-delay: 0.1s; }
.scroll-animate-stagger.fade-in > *:nth-child(3) { transition-delay: 0.2s; }
.scroll-animate-stagger.fade-in > *:nth-child(4) { transition-delay: 0.3s; }
.scroll-animate-stagger.fade-in > *:nth-child(5) { transition-delay: 0.4s; }
.scroll-animate-stagger.fade-in > *:nth-child(6) { transition-delay: 0.5s; }
.scroll-animate-stagger.fade-in > *:nth-child(7) { transition-delay: 0.6s; }
.scroll-animate-stagger.fade-in > *:nth-child(8) { transition-delay: 0.7s; }
.scroll-animate-stagger.fade-in > *:nth-child(9) { transition-delay: 0.8s; }

.scroll-animate-stagger.fade-in > * {
    opacity: 1;
    transform: translateY(0);
}

/* Slide in from sides */
.scroll-animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-left.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-right.fade-in {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up animation */
.scroll-animate-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-scale.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* Blur in animation */
.scroll-animate-blur {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, filter 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate-blur.fade-in {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Rotate in animation */
.scroll-animate-rotate {
    opacity: 0;
    transform: rotate(-5deg) translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-rotate.fade-in {
    opacity: 1;
    transform: rotate(0) translateY(0);
}

/* Stats counter animation */
.stat-number {
    transition: all 0.6s ease-out;
}

/* Smooth section transitions */
section {
    transition: background 0.3s ease;
}

/* Card hover lift effect */
.problem-card,
.benefit-card,
.usecase-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.problem-card:hover,
.benefit-card:hover,
.usecase-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
