:root {
    --bg: #FFFAF5;
    --bg-warm: #FFF5EB;
    --bg-card: #FFFFFF;
    --bg-dark: #1A1A2E;
    --text: #2D2D3A;
    --text-light: #6B6B80;
    --accent: #E8A838;
    --accent-hover: #D4952E;
    --accent-light: #FFF0D4;
    --accent-glow: rgba(232, 168, 56, 0.15);
    --border: #F0E6D8;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 2px 16px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
    --transition: 0.2s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* TOPBAR */
.topbar {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    padding: 6px 24px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 101;
}
.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-partners {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.topbar-label {
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    margin-right: 4px;
}
.topbar-partners a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color var(--transition);
}
.topbar-partners a:hover { color: var(--accent); }
.topbar-sep { color: rgba(255,255,255,0.2); }
.topbar-social {
    display: flex;
    gap: 12px;
    align-items: center;
}
.topbar-social a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
    display: flex;
}
.topbar-social a:hover { color: var(--accent); }

/* NAV */
.nav {
    position: fixed;
    top: 30px;
    width: 100%;
    z-index: 100;
    background: rgba(255, 250, 245, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span {
    color: var(--accent);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition);
}
.nav-links a:hover {
    color: var(--text);
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--accent-glow);
}
.btn-outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* HERO */
.hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 190px 24px 100px;
    text-align: center;
}
.hero-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-hover);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--text);
}
.hero-sub {
    font-size: 18px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
}
.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* SCROLLYTELLING */
.scrolly {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 0;
}
.scrolly-inner {
    display: flex;
    gap: 60px;
    position: relative;
}
.scrolly-text {
    flex: 1;
    padding: 10vh 0 40vh;
}
.scrolly-step {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    opacity: 0.15;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.scrolly-step.active {
    opacity: 1;
    transform: translateY(0);
}
.scrolly-num {
    font-size: 14px;
    font-weight: 700;
    color: #10B981;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.scrolly-step h3 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #10B981;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 16px;
}
.scrolly-step p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
    max-width: 420px;
    margin-bottom: 24px;
}
.scrolly-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 2px solid #10B981;
    color: #10B981;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    width: fit-content;
}
.scrolly-btn:hover {
    background: #10B981;
    color: #fff;
}
.scrolly-visual {
    flex: 1;
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.scrolly-device {
    width: 100%;
    max-width: 420px;
    background: #1a1a2e;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
    position: relative;
}
.device-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.device-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.device-dot.red { background: #FF5F57; }
.device-dot.yellow { background: #FFBD2E; }
.device-dot.green { background: #28C840; }
.device-url {
    margin-left: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.06);
    padding: 4px 14px;
    border-radius: 6px;
    flex: 1;
    text-align: center;
}
.scrolly-screen {
    display: none;
    padding: 20px;
    min-height: 320px;
    animation: screenFadeIn 0.5s ease;
    position: relative;
    overflow: hidden;
}
.scrolly-screen.active {
    display: block;
}
@keyframes screenFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

/* Screen 0: Dashboard */
.scr-sidebar {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.scr-menu {
    height: 6px;
    width: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
}
.scr-menu.active {
    background: var(--accent);
    width: 56px;
}
.scr-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.scr-stat-box {
    flex: 1;
    background: rgba(232,168,56,0.1);
    border: 1px solid rgba(232,168,56,0.2);
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
}
.scr-stat-val {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
}
.scr-stat-lbl {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-top: 2px;
}
.scr-agents {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.scr-agent {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.scr-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

/* Screen 1: Monitor */
.scr-monitor { display: flex; flex-direction: column; gap: 16px; }
.scr-chart { height: 80px; }
.scr-chart svg { width: 100%; height: 100%; }
.scr-servers { display: flex; flex-direction: column; gap: 8px; }
.scr-srv {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}
.scr-uptime {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: #4ECDC4;
}

/* Screen 2: Chat */
.scr-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.scr-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
    max-width: 85%;
    animation: bubbleIn 0.4s ease both;
}
.scr-bubble.in {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.scr-bubble.out {
    background: #10B981;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
@keyframes bubbleIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.scr-typing {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    align-self: flex-end;
}
.scr-typing span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    animation: typingDot 1.4s ease-in-out infinite;
}
.scr-typing span:nth-child(2) { animation-delay: 0.2s; }
.scr-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.3; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Screen 3: Graph */
.scr-graph svg { width: 100%; height: auto; }

/* Screen 4: Email */
.scr-email { display: flex; flex-direction: column; gap: 14px; }
.scr-email-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.scr-email-title {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}
.scr-email-badge {
    font-size: 11px;
    font-weight: 600;
    color: #10B981;
    background: rgba(16,185,129,0.15);
    padding: 3px 10px;
    border-radius: 50px;
}
.scr-email-stats {
    display: flex;
    gap: 10px;
}
.scr-email-stats > div {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
}
.scr-email-stats strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
}
.scr-email-stats small {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}
.scr-email-list { display: flex; flex-direction: column; gap: 6px; }
.scr-email-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.scr-tag {
    margin-left: auto;
    font-size: 10px;
    font-weight: 600;
    color: #4ECDC4;
    background: rgba(78,205,196,0.12);
    padding: 2px 8px;
    border-radius: 50px;
}

/* Scrolly Dots */
.scrolly-dots {
    display: flex;
    gap: 10px;
}
.scrolly-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(16,185,129,0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.scrolly-dot.active {
    background: #10B981;
    border-color: #10B981;
    transform: scale(1.2);
}
.scrolly-dot:hover {
    border-color: #10B981;
}

/* Scrolly responsive — mobile cards */
@media (max-width: 900px) {
    .scrolly { padding: 20px 16px 0; }
    .scrolly-inner {
        flex-direction: column;
        gap: 0;
    }
    .scrolly-visual { display: none; }
    .scrolly-arrow { display: none !important; }
    .scrolly-text { padding: 0; }
    .scrolly-step {
        min-height: auto;
        padding: 36px 0;
        opacity: 1 !important;
        transform: none !important;
        transition: none;
        border-bottom: 1px solid var(--border);
    }
    .scrolly-step:last-child { border-bottom: none; }
    .scrolly-step h3 { font-size: 22px; margin-bottom: 10px; }
    .scrolly-step p { font-size: 15px; max-width: 100%; margin-bottom: 16px; }
    .scrolly-btn { display: none; }
    .scrolly-num { font-size: 11px; margin-bottom: 8px; }

    /* Inline device per card */
    .mobile-device {
        margin-top: 16px;
        background: #1a1a2e;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    }
    .mobile-device .device-topbar {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 8px 12px;
        background: rgba(255,255,255,0.03);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .mobile-device .device-dot {
        width: 7px; height: 7px; border-radius: 50%;
    }
    .mobile-device .device-dot.red { background: #FF5F57; }
    .mobile-device .device-dot.yellow { background: #FFBD2E; }
    .mobile-device .device-dot.green { background: #28C840; }
    .mobile-device .device-url {
        margin-left: 6px;
        font-size: 10px;
        color: rgba(255,255,255,0.3);
        background: rgba(255,255,255,0.06);
        padding: 3px 10px;
        border-radius: 5px;
        flex: 1;
        text-align: center;
    }
    .mobile-device .scrolly-screen {
        display: block !important;
        padding: 14px;
        min-height: 200px;
        position: relative;
        overflow: hidden;
        animation: none;
    }
    /* Faster stagger on mobile */
    .mobile-device .scrolly-screen.active .scr-agent,
    .mobile-device .scrolly-screen.active .scr-srv,
    .mobile-device .scrolly-screen.active .scr-email-row { animation-duration: 0.3s !important; }
    .mobile-device .scrolly-screen.active .scr-agent:nth-child(1),
    .mobile-device .scrolly-screen.active .scr-srv:nth-child(1),
    .mobile-device .scrolly-screen.active .scr-email-row:nth-child(1) { animation-delay: 0.05s !important; }
    .mobile-device .scrolly-screen.active .scr-agent:nth-child(2),
    .mobile-device .scrolly-screen.active .scr-srv:nth-child(2),
    .mobile-device .scrolly-screen.active .scr-email-row:nth-child(2) { animation-delay: 0.1s !important; }
    .mobile-device .scrolly-screen.active .scr-agent:nth-child(3),
    .mobile-device .scrolly-screen.active .scr-srv:nth-child(3),
    .mobile-device .scrolly-screen.active .scr-email-row:nth-child(3) { animation-delay: 0.15s !important; }
    .mobile-device .scrolly-screen.active .scr-agent:nth-child(4),
    .mobile-device .scrolly-screen.active .scr-srv:nth-child(4),
    .mobile-device .scrolly-screen.active .scr-email-row:nth-child(4) { animation-delay: 0.2s !important; }
    /* Faster bubbles */
    .mobile-device .scrolly-screen.active .scr-bubble:nth-child(1) { animation-delay: 0.1s !important; }
    .mobile-device .scrolly-screen.active .scr-bubble:nth-child(2) { animation-delay: 0.3s !important; }
    .mobile-device .scrolly-screen.active .scr-bubble:nth-child(3) { animation-delay: 0.5s !important; }
    .mobile-device .scrolly-screen.active .scr-bubble:nth-child(4) { animation-delay: 0.7s !important; }
    .mobile-device .scrolly-screen.active .scr-typing { animation-delay: 0.9s !important; }
    /* Popups compact */
    .mobile-device .scr-popup { max-width: 175px; padding: 8px 10px; border-radius: 10px; }
    .mobile-device .scr-popup .popup-icon { font-size: 16px; }
    .mobile-device .scr-popup .popup-text strong { font-size: 11px; }
    .mobile-device .scr-popup .popup-text span { font-size: 9px; }
    .mobile-device .scr-popup.delay-1 { animation-delay: 0.5s !important; }
    .mobile-device .scr-popup.delay-2 { animation-delay: 0.9s !important; }
    .mobile-device .scr-popup.delay-3 { animation-delay: 1.2s !important; }
    /* No cursor on mobile */
    .mobile-device .scr-cursor { display: none; }
    /* No device float on mobile */
    .mobile-device { animation: none; }
    /* Stat boxes smaller */
    .mobile-device .scr-stat-val { font-size: 15px; }
    .mobile-device .scr-stat-lbl { font-size: 9px; }
    .mobile-device .scr-agent { padding: 8px 10px; font-size: 12px; }
    .mobile-device .scr-avatar { width: 24px; height: 24px; font-size: 10px; }
    .mobile-device .scr-srv { font-size: 12px; padding: 8px 10px; }
    .mobile-device .scr-bubble { font-size: 12px; padding: 8px 11px; }
    .mobile-device .scr-email-title { font-size: 13px; }
    .mobile-device .scr-email-stats strong { font-size: 16px; }
}

/* Scrolly: Device float */
.scrolly-device {
    animation: floatDevice 5s ease-in-out infinite;
}
@keyframes floatDevice {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.scrolly-device::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    animation: shimmer 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 20;
    border-radius: 16px;
}
@keyframes shimmer {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Scrolly: Popups */
.scr-popup {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(14px) scale(0.85);
    z-index: 15;
    white-space: nowrap;
    max-width: 220px;
}
.scrolly-screen.active .scr-popup {
    animation: popupBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.scr-popup.delay-1 { animation-delay: 0.9s !important; }
.scr-popup.delay-2 { animation-delay: 1.6s !important; }
.scr-popup.delay-3 { animation-delay: 2.2s !important; }
@keyframes popupBounce {
    0% { opacity: 0; transform: translateY(14px) scale(0.85); }
    70% { opacity: 1; transform: translateY(-4px) scale(1.03); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-icon { font-size: 20px; flex-shrink: 0; }
.popup-text strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #2D2D3A;
    line-height: 1.3;
}
.popup-text span {
    display: block;
    font-size: 10px;
    color: #6B6B80;
    line-height: 1.3;
}

/* Scrolly: Cursor */
.scr-cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    pointer-events: none;
    z-index: 16;
}
.scr-cursor::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    border-left: 3px solid #fff;
    border-top: 3px solid #fff;
    width: 12px;
    height: 12px;
    transform: rotate(-45deg);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}
.scr-cursor::after {
    content: '';
    position: absolute;
    top: 4px; left: 4px;
    width: 22px;
    height: 22px;
    background: rgba(232,168,56,0.35);
    border-radius: 50%;
    transform: scale(0);
}
.scrolly-screen.active .scr-cursor {
    animation: cursorPath 4s ease-in-out 0.5s infinite;
}
.scrolly-screen.active .scr-cursor::after {
    animation: cursorClick 4s ease-in-out 0.5s infinite;
}
@keyframes cursorPath {
    0%   { opacity: 0; top: 70%; left: 20%; }
    10%  { opacity: 1; }
    30%  { top: 35%; left: 30%; }
    45%  { top: 30%; left: 55%; }
    55%  { top: 30%; left: 55%; }
    75%  { top: 55%; left: 40%; }
    90%  { opacity: 1; }
    100% { opacity: 0; top: 70%; left: 20%; }
}
@keyframes cursorClick {
    0%, 42% { transform: scale(0); opacity: 0; }
    47% { transform: scale(1.2); opacity: 0.6; }
    55% { transform: scale(0); opacity: 0; }
    100% { transform: scale(0); opacity: 0; }
}

/* Scrolly: Staggered agents */
.scrolly-screen.active .scr-agent {
    animation: slideInLeft 0.45s ease both;
}
.scrolly-screen.active .scr-agent:nth-child(1) { animation-delay: 0.15s; }
.scrolly-screen.active .scr-agent:nth-child(2) { animation-delay: 0.3s; }
.scrolly-screen.active .scr-agent:nth-child(3) { animation-delay: 0.45s; }
.scrolly-screen.active .scr-agent:nth-child(4) { animation-delay: 0.6s; }
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-24px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Scrolly: Stats zoom bounce */
.scrolly-screen.active .scr-stat-box {
    animation: zoomBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.scrolly-screen.active .scr-stat-box:nth-child(1) { animation-delay: 0.1s; }
.scrolly-screen.active .scr-stat-box:nth-child(2) { animation-delay: 0.25s; }
.scrolly-screen.active .scr-stat-box:nth-child(3) { animation-delay: 0.4s; }
@keyframes zoomBounce {
    0% { opacity: 0; transform: scale(0.5); }
    70% { transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}

/* Scrolly: Staggered servers */
.scrolly-screen.active .scr-srv {
    animation: slideInLeft 0.45s ease both;
}
.scrolly-screen.active .scr-srv:nth-child(1) { animation-delay: 0.2s; }
.scrolly-screen.active .scr-srv:nth-child(2) { animation-delay: 0.35s; }
.scrolly-screen.active .scr-srv:nth-child(3) { animation-delay: 0.5s; }
.scrolly-screen.active .scr-srv:nth-child(4) { animation-delay: 0.65s; }

/* Scrolly: Chart draw */
.scr-chart path[stroke="#4ECDC4"] {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}
.scrolly-screen.active .scr-chart path[stroke="#4ECDC4"] {
    animation: drawChart 1.8s ease 0.2s forwards;
}
.scr-chart path[fill^="url"] {
    opacity: 0;
}
.scrolly-screen.active .scr-chart path[fill^="url"] {
    animation: fadeIn 0.8s ease 1.5s forwards;
}
@keyframes drawChart {
    to { stroke-dashoffset: 0; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scrolly: Chat stagger */
.scr-bubble {
    opacity: 0;
    transform: translateY(10px);
}
.scrolly-screen.active .scr-bubble {
    animation: bubbleSlide 0.4s ease both;
}
.scrolly-screen.active .scr-bubble:nth-child(1) { animation-delay: 0.2s; }
.scrolly-screen.active .scr-bubble:nth-child(2) { animation-delay: 0.7s; }
.scrolly-screen.active .scr-bubble:nth-child(3) { animation-delay: 1.2s; }
.scrolly-screen.active .scr-bubble:nth-child(4) { animation-delay: 1.7s; }
@keyframes bubbleSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.scr-typing { opacity: 0; }
.scrolly-screen.active .scr-typing {
    animation: fadeIn 0.3s ease 2.1s forwards;
}

/* Scrolly: Graph breathe + draw lines */
.scr-graph line {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
}
.scrolly-screen.active .scr-graph line {
    animation: drawLine 0.8s ease both;
}
.scrolly-screen.active .scr-graph line:nth-of-type(1) { animation-delay: 0.1s; }
.scrolly-screen.active .scr-graph line:nth-of-type(2) { animation-delay: 0.2s; }
.scrolly-screen.active .scr-graph line:nth-of-type(3) { animation-delay: 0.3s; }
.scrolly-screen.active .scr-graph line:nth-of-type(4) { animation-delay: 0.4s; }
.scrolly-screen.active .scr-graph line:nth-of-type(5) { animation-delay: 0.5s; }
.scrolly-screen.active .scr-graph line:nth-of-type(6) { animation-delay: 0.6s; }
.scrolly-screen.active .scr-graph line:nth-of-type(7) { animation-delay: 0.7s; }
.scrolly-screen.active .scr-graph line:nth-of-type(8) { animation-delay: 0.8s; }
@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}
.scr-graph circle {
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
}
.scrolly-screen.active .scr-graph circle {
    animation: nodeAppear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.scrolly-screen.active .scr-graph circle:nth-of-type(1) { animation-delay: 0.5s; }
.scrolly-screen.active .scr-graph circle:nth-of-type(2) { animation-delay: 0.6s; }
.scrolly-screen.active .scr-graph circle:nth-of-type(3) { animation-delay: 0.7s; }
.scrolly-screen.active .scr-graph circle:nth-of-type(4) { animation-delay: 0.8s; }
.scrolly-screen.active .scr-graph circle:nth-of-type(5) { animation-delay: 0.9s; }
.scrolly-screen.active .scr-graph circle:nth-of-type(6) { animation-delay: 1.0s; }
.scrolly-screen.active .scr-graph circle:nth-of-type(7) { animation-delay: 1.1s; }
@keyframes nodeAppear {
    0% { opacity: 0; transform: scale(0); }
    70% { transform: scale(1.15); }
    100% { opacity: 1; transform: scale(1); }
}
.scrolly-screen.active .scr-graph circle:nth-of-type(1) {
    animation: nodeAppear 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.5s both, nodePulse 3s ease-in-out 1.2s infinite;
}
@keyframes nodePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}
.scr-graph text {
    opacity: 0;
}
.scrolly-screen.active .scr-graph text {
    animation: fadeIn 0.4s ease 1.2s forwards;
}

/* Scrolly: Email stagger + progress */
.scrolly-screen.active .scr-email-stats > div {
    animation: zoomBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.scrolly-screen.active .scr-email-stats > div:nth-child(1) { animation-delay: 0.15s; }
.scrolly-screen.active .scr-email-stats > div:nth-child(2) { animation-delay: 0.3s; }
.scrolly-screen.active .scr-email-stats > div:nth-child(3) { animation-delay: 0.45s; }
.scr-email-row {
    opacity: 0;
}
.scrolly-screen.active .scr-email-row {
    animation: slideInLeft 0.4s ease both;
}
.scrolly-screen.active .scr-email-row:nth-child(1) { animation-delay: 0.5s; }
.scrolly-screen.active .scr-email-row:nth-child(2) { animation-delay: 0.65s; }
.scrolly-screen.active .scr-email-row:nth-child(3) { animation-delay: 0.8s; }
.scrolly-screen.active .scr-email-row:nth-child(4) { animation-delay: 0.95s; }

/* Scrolly: Hand-drawn arrow */
.scrolly-arrow {
    display: none;
}
@media (min-width: 901px) {
    .scrolly-arrow {
        display: block;
        position: absolute;
        left: 43%;
        top: 12%;
        width: 110px;
        height: 80px;
        pointer-events: none;
        z-index: 5;
    }
    .scrolly-arrow .arrow-line {
        stroke-dasharray: 300;
        stroke-dashoffset: 300;
    }
    .scrolly-arrow .arrow-head {
        opacity: 0;
    }
    .scrolly.in-view .arrow-line {
        animation: drawArrow 1.5s ease 0.6s forwards;
    }
    .scrolly.in-view .arrow-head {
        animation: fadeIn 0.3s ease 1.9s forwards;
    }
    @keyframes drawArrow {
        to { stroke-dashoffset: 0; }
    }
}

/* Scrolly: Uptime pulse */
.scr-uptime {
    animation: none;
}
.scrolly-screen.active .scr-uptime {
    animation: uptimePulse 2s ease-in-out infinite;
}
@keyframes uptimePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Scrolly: Active dot glow */
.scrolly-dot.active {
    box-shadow: 0 0 12px rgba(16,185,129,0.5);
}

/* SECTIONS */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-badge {
    display: inline-block;
    background: var(--accent-light);
    color: var(--accent-hover);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    line-height: 1.15;
}
.section-header p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

/* PRODUCTS */
.products {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition);
    position: relative;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.product-card.featured {
    border-color: var(--accent);
    background: linear-gradient(135deg, #FFFAF5 0%, #FFF5EB 100%);
    grid-column: span 1;
}
.product-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.product-card > p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.product-features {
    list-style: none;
    margin-bottom: 24px;
}
.product-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}
.product-features li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
}
.product-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    border: 1px solid var(--border);
}

/* FEATURES DARK (Bento Grid) */
.features-dark {
    background: #3D3528;
    padding: 100px 0;
    margin-top: 40px;
}
.features-dark-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.features-dark .section-header h2 {
    color: #FFFFFF;
}
.features-dark .section-header p {
    color: rgba(255,255,255,0.65);
}
.badge-light {
    background: rgba(232,168,56,0.2) !important;
    color: var(--accent) !important;
}
/* Bento: masonry columns estilo Adalo */
.bento-grid {
    column-count: 2;
    column-gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}
.bento-card {
    break-inside: avoid;
    border: none;
    border-radius: var(--radius-lg);
    padding: 36px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease, box-shadow 0.3s ease;
}
.bento-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.bento-card:nth-child(1) { transition-delay: 0s; }
.bento-card:nth-child(2) { transition-delay: 0.1s; }
.bento-card:nth-child(3) { transition-delay: 0.15s; }
.bento-card:nth-child(4) { transition-delay: 0.2s; }
.bento-card:nth-child(5) { transition-delay: 0.3s; }
.bento-card:nth-child(6) { transition-delay: 0.4s; }
.bento-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
    z-index: 2;
}

/* Card 1: AgenteDesk */
.bento-card:nth-child(1) {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 45%, #F4511E 100%) !important;
}
.bento-card:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.25) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 15%, rgba(244,81,30,0.3) 0%, transparent 50%);
    pointer-events: none;
}
.bento-card:nth-child(1)::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    top: -40px; right: -30px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbDrift 8s ease-in-out infinite;
    pointer-events: none;
}
.bento-card:nth-child(1) h3 { color: #3E2723; }
.bento-card:nth-child(1) > p { color: rgba(62,39,35,0.75); }
.bento-card:nth-child(1) .bento-label { color: #4E342E; background: rgba(0,0,0,0.1); }

/* Card 2: Monitor */
.bento-card:nth-child(2) {
    background: linear-gradient(170deg, #0A1628 0%, #152238 55%, #1E3A5F 100%) !important;
}
.bento-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(78,205,196,0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
}
.bento-card:nth-child(2)::after {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    bottom: -20px; left: -20px;
    background: radial-gradient(circle, rgba(78,205,196,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbDrift 10s ease-in-out 1s infinite;
    pointer-events: none;
}
.bento-card:nth-child(2) h3 { color: #4ECDC4; }
.bento-card:nth-child(2) > p { color: rgba(255,255,255,0.55); }
.bento-card:nth-child(2) .bento-label { color: #4ECDC4; background: rgba(78,205,196,0.15); }

/* Card 3: Security */
.bento-card:nth-child(3) {
    background: linear-gradient(145deg, #FF7043 0%, #E53935 55%, #B71C1C 100%) !important;
}
.bento-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.bento-card:nth-child(3) h3, .bento-card:nth-child(3) .bento-label { color: #fff; }
.bento-card:nth-child(3) > p { color: rgba(255,255,255,0.8); }
.bento-card:nth-child(3) .bento-label { background: rgba(255,255,255,0.18); }
.bento-card:nth-child(3) .shield-icon svg { stroke: #fff; }
.bento-card:nth-child(3) .shield-icon svg path:last-child { stroke: #FFCA28; }
.bento-card:nth-child(3) .mock-alert { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.1); }

/* Card 4: Chat */
.bento-card:nth-child(4) {
    --rot: 0deg;
    background: linear-gradient(160deg, #FFFFFF 0%, #F0F4FF 40%, #E3E8F0 100%) !important;
    border: 1px solid rgba(0,0,0,0.06);
}
.bento-card:nth-child(4)::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 10% 90%, rgba(167,139,250,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.bento-card:nth-child(4) h3 { color: #2D2D3A; }
.bento-card:nth-child(4) > p { color: rgba(0,0,0,0.55); }
.bento-card:nth-child(4) .bento-label { color: #374151; background: rgba(0,0,0,0.06); }

/* Card 5: Mapa Legal */
.bento-card:nth-child(5) {
    --rot: 0deg;
    background: linear-gradient(140deg, #26A69A 0%, #00897B 50%, #004D40 100%) !important;
}
.bento-card:nth-child(5)::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 90% 80%, rgba(255,255,255,0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 10% 20%, rgba(0,77,64,0.4) 0%, transparent 50%);
    pointer-events: none;
}
.bento-card:nth-child(5)::after {
    content: '';
    position: absolute;
    width: 150px; height: 150px;
    top: -30px; left: 40%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbDrift 9s ease-in-out 0.5s infinite;
    pointer-events: none;
}
.bento-card:nth-child(5) h3, .bento-card:nth-child(5) .bento-label { color: #fff; }
.bento-card:nth-child(5) > p { color: rgba(255,255,255,0.7); }
.bento-card:nth-child(5) .bento-label { background: rgba(255,255,255,0.18); }
.bento-card:nth-child(5) svg circle { fill: rgba(255,255,255,0.1); stroke: rgba(255,255,255,0.5); }
.bento-card:nth-child(5) svg line { stroke: rgba(255,255,255,0.3); }
.bento-card:nth-child(5) svg text { fill: #fff; }

/* Card 6: CS50 */
.bento-card:nth-child(6) {
    --rot: 0deg;
    background: linear-gradient(155deg, #FFF9C4 0%, #FFE082 40%, #FFCC80 100%) !important;
}
.bento-card:nth-child(6)::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.35) 0%, transparent 60%);
    pointer-events: none;
}
.bento-card:nth-child(6) h3 { color: #4E342E; }
.bento-card:nth-child(6) > p { color: rgba(0,0,0,0.55); }
.bento-card:nth-child(6) .bento-label { color: #5D4037; background: rgba(0,0,0,0.08); }

/* Floating orb animation */
@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-12px, 8px) scale(1.05); }
    66% { transform: translate(8px, -12px) scale(0.95); }
}

/* Mockup hover float */
.bento-card:hover .bento-visual {
    animation: mockupLift 0.6s ease forwards;
}
@keyframes mockupLift {
    from { transform: translateY(0); }
    to { transform: translateY(-4px); }
}

/* ===== BENTO CARD ANIMATIONS ===== */

/* AgenteDesk: cursor + stat shimmer */
.mockup-dashboard { position: relative; }
.bento-card.visible .mockup-dashboard::after {
    content: '';
    position: absolute;
    width: 14px; height: 14px;
    border-left: 2.5px solid rgba(255,255,255,0.85);
    border-top: 2.5px solid rgba(255,255,255,0.85);
    transform: rotate(-45deg);
    animation: bentoCursor 5s ease-in-out 1s infinite;
    pointer-events: none;
    z-index: 10;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}
@keyframes bentoCursor {
    0%   { top: 70%; left: 15%; opacity: 0; }
    8%   { opacity: 1; }
    30%  { top: 45%; left: 30%; }
    48%  { top: 35%; left: 60%; }
    52%  { top: 35%; left: 60%; transform: rotate(-45deg) scale(0.75); }
    56%  { top: 35%; left: 60%; transform: rotate(-45deg) scale(1); }
    78%  { top: 55%; left: 40%; }
    92%  { opacity: 1; }
    100% { top: 70%; left: 15%; opacity: 0; }
}
.bento-card.visible .mock-stat-box {
    animation: statPulse 4s ease-in-out infinite;
}
.bento-card.visible .mock-stat-box:nth-child(2) { animation-delay: 1.3s; }
.bento-card.visible .mock-stat-box:nth-child(3) { animation-delay: 2.6s; }
@keyframes statPulse {
    0%, 100% { border-color: rgba(232,168,56,0.2); }
    50% { border-color: rgba(232,168,56,0.6); background: rgba(232,168,56,0.18); }
}
.bento-card.visible .mock-menu-item.active {
    animation: menuGlow 2s ease-in-out infinite;
}
@keyframes menuGlow {
    0%, 100% { opacity: 1; width: 50px; }
    50% { opacity: 0.7; width: 56px; }
}

/* Monitor Pro: chart draw + dots pulse */
.bento-card.visible .mockup-monitor .mock-chart svg path:first-child {
    stroke-dasharray: 350;
    stroke-dashoffset: 350;
    animation: bentoChartDraw 3s ease 0.5s forwards;
}
@keyframes bentoChartDraw { to { stroke-dashoffset: 0; } }
.bento-card.visible .mock-server .dot {
    animation: dotPulse 2.5s ease-in-out infinite;
}
.bento-card.visible .mock-server:nth-child(2) .dot { animation-delay: 0.6s; }
.bento-card.visible .mock-server:nth-child(3) .dot { animation-delay: 1.2s; }
@keyframes dotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 transparent; }
    50% { transform: scale(1.4); box-shadow: 0 0 8px currentColor; }
}

/* Vigilancia: shield pulse + alerts slide */
.bento-card.visible .shield-icon svg {
    animation: shieldPulse 3s ease-in-out infinite;
}
@keyframes shieldPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 12px rgba(255,107,107,0.5)); }
}
.bento-card.visible .mock-alert {
    animation: alertSlide 0.5s ease both, alertCycle 4s ease-in-out 1.5s infinite;
}
.bento-card.visible .mock-alert:nth-child(1) { animation-delay: 0.3s, 1.5s; }
.bento-card.visible .mock-alert:nth-child(2) { animation-delay: 0.6s, 2s; }
.bento-card.visible .mock-alert:nth-child(3) { animation-delay: 0.9s, 2.5s; }
@keyframes alertSlide {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes alertCycle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.bento-card.visible .mock-alert .dot.green {
    animation: dotPulse 2s ease-in-out infinite;
}

/* Chat: bubbles appear + typing dots */
.mockup-chat { position: relative; min-height: 140px; }
.bento-card.visible .chat-bubble {
    opacity: 0;
    animation: chatPop 0.4s ease both;
}
.bento-card.visible .chat-bubble:nth-child(1) { animation-delay: 0.4s; }
.bento-card.visible .chat-bubble:nth-child(2) { animation-delay: 1.1s; }
.bento-card.visible .chat-bubble:nth-child(3) { animation-delay: 1.8s; }
.bento-card.visible .chat-bubble:nth-child(4) { animation-delay: 2.5s; }
@keyframes chatPop {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.mockup-chat::after {
    content: '';
    display: flex;
    gap: 4px;
    margin-top: 8px;
    width: 40px; height: 20px;
    background: radial-gradient(circle 3px at 8px 10px, rgba(0,0,0,0.2) 100%, transparent 100%),
                radial-gradient(circle 3px at 20px 10px, rgba(0,0,0,0.2) 100%, transparent 100%),
                radial-gradient(circle 3px at 32px 10px, rgba(0,0,0,0.2) 100%, transparent 100%);
    background-size: 40px 20px;
    animation: typingBento 1.5s ease-in-out infinite;
    border-radius: 10px;
}
@keyframes typingBento {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Mapa Legal: nodes drift + breathe */
.bento-card.visible .mockup-graph circle {
    animation: nodeDrift 6s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}
.bento-card.visible .mockup-graph circle:nth-of-type(1) { animation-duration: 5s; }
.bento-card.visible .mockup-graph circle:nth-of-type(2) { animation-delay: 0.8s; animation-duration: 7s; }
.bento-card.visible .mockup-graph circle:nth-of-type(3) { animation-delay: 0.3s; animation-duration: 6s; }
.bento-card.visible .mockup-graph circle:nth-of-type(4) { animation-delay: 1.2s; animation-duration: 5.5s; }
.bento-card.visible .mockup-graph circle:nth-of-type(5) { animation-delay: 0.6s; animation-duration: 7.5s; }
.bento-card.visible .mockup-graph circle:nth-of-type(6) { animation-delay: 1s; animation-duration: 6.5s; }
.bento-card.visible .mockup-graph circle:nth-of-type(7) { animation-delay: 0.4s; animation-duration: 8s; }
@keyframes nodeDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(4px, -3px) scale(1.06); }
    50% { transform: translate(-3px, 4px) scale(0.95); }
    75% { transform: translate(3px, 2px) scale(1.04); }
}
.bento-card.visible .mockup-graph line {
    animation: linePulse 4s ease-in-out infinite;
}
.bento-card.visible .mockup-graph line:nth-of-type(even) { animation-delay: 2s; }
@keyframes linePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

/* CS50: typing cursor blink */
.mockup-code { position: relative; }
.bento-card.visible .mockup-code .code-output::after {
    content: ' █';
    color: #4ECDC4;
    animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.bento-card.visible .code-line {
    animation: codeFadeIn 0.3s ease both;
}
.bento-card.visible .code-line:nth-child(1) { animation-delay: 0.2s; }
.bento-card.visible .code-line:nth-child(2) { animation-delay: 0.5s; }
.bento-card.visible .code-line:nth-child(3) { animation-delay: 0.8s; }
.bento-card.visible .code-line:nth-child(4) { animation-delay: 1.1s; }
.bento-card.visible .code-line:nth-child(5) { animation-delay: 1.4s; }
.bento-card.visible .code-output { animation: codeFadeIn 0.4s ease 1.8s both; }
@keyframes codeFadeIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

/* YOLO Lab mockup */
.mockup-yolo { position: relative; }
.yolo-feed {
    background: #0a0a0a;
    border-radius: 8px;
    height: 180px;
    position: relative;
    overflow: hidden;
    background-image:
        radial-gradient(ellipse at 30% 40%, rgba(255,255,255,0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(255,255,255,0.02) 0%, transparent 50%);
}
.yolo-scanline {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(16,185,129,0.6), transparent);
    animation: yoloScan 3s ease-in-out infinite;
    z-index: 5;
}
@keyframes yoloScan {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
.yolo-box {
    position: absolute;
    border: 2px solid #10B981;
    border-radius: 3px;
    animation: yoloDetect 4s ease-in-out infinite;
}
.yolo-person {
    width: 50px; height: 80px;
    top: 25px; left: 20px;
    border-color: #10B981;
    animation-delay: 0.5s;
}
.yolo-cat {
    width: 40px; height: 35px;
    top: 85px; left: 85px;
    border-color: #F59E0B;
    animation-delay: 1.5s;
}
.yolo-chair {
    width: 45px; height: 50px;
    top: 40px; right: 30px;
    border-color: #60A5FA;
    animation-delay: 2.5s;
}
@keyframes yoloDetect {
    0%, 15% { opacity: 0; transform: scale(1.15); }
    25% { opacity: 1; transform: scale(1); }
    75% { opacity: 1; transform: scale(1); }
    85%, 100% { opacity: 0; transform: scale(0.95); }
}
.yolo-lbl {
    position: absolute;
    top: -18px; left: -2px;
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    background: inherit;
    padding: 1px 6px;
    border-radius: 2px;
    white-space: nowrap;
}
.yolo-person .yolo-lbl { background: #10B981; }
.yolo-cat .yolo-lbl { background: #F59E0B; }
.yolo-chair .yolo-lbl { background: #60A5FA; }
.yolo-rec {
    position: absolute;
    top: 10px; right: 10px;
    width: 8px; height: 8px;
    background: #EF4444;
    border-radius: 50%;
    animation: recBlink 1.5s ease-in-out infinite;
}
@keyframes recBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}
.yolo-ts {
    position: absolute;
    bottom: 8px; left: 10px;
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    font-family: monospace;
}
.yolo-fps {
    position: absolute;
    bottom: 8px; right: 10px;
    font-size: 9px;
    font-weight: 700;
    color: #10B981;
    font-family: monospace;
}

/* Card 7: YOLO */
.bento-card:nth-child(7) {
    background: linear-gradient(160deg, #111827 0%, #1F2937 50%, #0F172A 100%) !important;
}
.bento-card:nth-child(7) h3 { color: #10B981; }
.bento-card:nth-child(7) > p { color: rgba(255,255,255,0.55); }
.bento-card:nth-child(7) .bento-label { color: #10B981; background: rgba(16,185,129,0.15); }

/* Card 8: Chat Desk */
.bento-card:nth-child(8) {
    background: linear-gradient(150deg, #C084FC 0%, #A855F7 50%, #9333EA 100%) !important;
}
.bento-card:nth-child(8) h3, .bento-card:nth-child(8) .bento-label { color: #fff; }
.bento-card:nth-child(8) > p { color: rgba(255,255,255,0.8); }
.bento-card:nth-child(8) .bento-label { background: rgba(255,255,255,0.18); }
.bento-card:nth-child(8) .chat-bubble.incoming { background: rgba(255,255,255,0.2); color: #fff; }
.bento-card:nth-child(8) .chat-bubble.outgoing { background: rgba(255,255,255,0.35); color: #fff; }

/* Card 9: Email Engine */
.bento-card:nth-child(9) {
    background: linear-gradient(155deg, #FDE68A 0%, #FBBF24 45%, #F59E0B 100%) !important;
}
.bento-card:nth-child(9) h3 { color: #78350F; }
.bento-card:nth-child(9) > p { color: rgba(120,53,15,0.75); }
.bento-card:nth-child(9) .bento-label { color: #92400E; background: rgba(0,0,0,0.08); }

/* Card 10: JVH Jarvis */
.bento-card:nth-child(10) {
    background: linear-gradient(145deg, #FDBA74 0%, #FB923C 50%, #F97316 100%) !important;
}
.bento-card:nth-child(10) h3 { color: #fff; }
.bento-card:nth-child(10) > p { color: rgba(255,255,255,0.85); }
.bento-card:nth-child(10) .bento-label { color: #fff; background: rgba(255,255,255,0.2); }

/* Card 11: Pair Trader */
.bento-card:nth-child(11) {
    background: linear-gradient(160deg, #EDE9FE 0%, #DDD6FE 40%, #C4B5FD 100%) !important;
}
.bento-card:nth-child(11) h3 { color: #4C1D95; }
.bento-card:nth-child(11) > p { color: rgba(76,29,149,0.65); }
.bento-card:nth-child(11) .bento-label { color: #5B21B6; background: rgba(91,33,182,0.1); }

/* Card 12: DeepCamera */
.bento-card:nth-child(12) {
    background: linear-gradient(140deg, #FCA5A5 0%, #F87171 50%, #EF4444 100%) !important;
}
.bento-card:nth-child(12) h3, .bento-card:nth-child(12) .bento-label { color: #fff; }
.bento-card:nth-child(12) > p { color: rgba(255,255,255,0.85); }
.bento-card:nth-child(12) .bento-label { background: rgba(255,255,255,0.2); }

/* Card 13: Project Manager */
.bento-card:nth-child(13) {
    background: linear-gradient(150deg, #99F6E4 0%, #5EEAD4 45%, #2DD4BF 100%) !important;
}
.bento-card:nth-child(13) h3 { color: #134E4A; }
.bento-card:nth-child(13) > p { color: rgba(19,78,74,0.7); }
.bento-card:nth-child(13) .bento-label { color: #115E59; background: rgba(0,0,0,0.08); }

/* Card 14: Kit IA Privada */
.bento-card:nth-child(14) {
    background: linear-gradient(155deg, #0D9488 0%, #0F766E 50%, #115E59 100%) !important;
}
.bento-card:nth-child(14) h3, .bento-card:nth-child(14) .bento-label { color: #fff; }
.bento-card:nth-child(14) > p { color: rgba(255,255,255,0.75); }
.bento-card:nth-child(14) .bento-label { background: rgba(255,255,255,0.15); }
.bento-card:nth-child(14) .mock-alert { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.1); }

/* Card 15: Mail Server */
.bento-card:nth-child(15) {
    background: linear-gradient(160deg, #FFFFFF 0%, #F1F5F9 40%, #E2E8F0 100%) !important;
    border: 1px solid rgba(0,0,0,0.06);
}
.bento-card:nth-child(15) h3 { color: #1E293B; }
.bento-card:nth-child(15) > p { color: rgba(0,0,0,0.55); }
.bento-card:nth-child(15) .bento-label { color: #374151; background: rgba(0,0,0,0.06); }

/* Card 16: Hermes WebUI */
.bento-card:nth-child(16) {
    background: linear-gradient(145deg, #818CF8 0%, #6366F1 50%, #4F46E5 100%) !important;
}
.bento-card:nth-child(16) h3, .bento-card:nth-child(16) .bento-label { color: #fff; }
.bento-card:nth-child(16) > p { color: rgba(255,255,255,0.8); }
.bento-card:nth-child(16) .bento-label { background: rgba(255,255,255,0.18); }
.bento-card:nth-child(16) .chat-bubble.incoming { background: rgba(255,255,255,0.2); color: #fff; }
.bento-card:nth-child(16) .chat-bubble.outgoing { background: rgba(255,255,255,0.35); color: #fff; }

/* Card 17: Gastos JVH */
.bento-card:nth-child(17) {
    background: linear-gradient(155deg, #BBF7D0 0%, #86EFAC 45%, #4ADE80 100%) !important;
}
.bento-card:nth-child(17) h3 { color: #14532D; }
.bento-card:nth-child(17) > p { color: rgba(20,83,45,0.7); }
.bento-card:nth-child(17) .bento-label { color: #166534; background: rgba(0,0,0,0.08); }

/* Card 18: Cursos Gamificados */
.bento-card:nth-child(18) {
    background: linear-gradient(145deg, #F0ABFC 0%, #E879F9 45%, #D946EF 100%) !important;
}
.bento-card:nth-child(18) h3 { color: #fff; }
.bento-card:nth-child(18) > p { color: rgba(255,255,255,0.85); }
.bento-card:nth-child(18) .bento-label { color: #fff; background: rgba(255,255,255,0.2); }

/* Mockup: Gamified */
.mockup-gamified {
    background: #1a1a2e;
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
}
.gam-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 11px;
}
.gam-stars { color: #FBBF24; font-size: 14px; letter-spacing: 2px; }
.gam-level { color: #A78BFA; font-weight: 700; }
.gam-pts { color: #4ADE80; font-weight: 700; }
.gam-scene {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    padding: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
}
.gam-avatar { font-size: 28px; }
.gam-question { color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 600; }
.gam-options { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.gam-opt {
    padding: 6px 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 11px;
}
.gam-opt-a { background: rgba(74,222,128,0.2); border: 1px solid rgba(74,222,128,0.4); }
.gam-opt-b { background: rgba(96,165,250,0.2); border: 1px solid rgba(96,165,250,0.4); }
.gam-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    font-size: 18px;
}
.gam-badge.dim { opacity: 0.3; }

.bento-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.bento-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.bento-card > p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.bento-visual {
    margin-top: 16px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}
.bento-card h3 {
    font-size: 24px;
}
.bento-card > p {
    font-size: 15px;
}

/* Mockup: Dashboard */
.mockup-dashboard {
    background: #2D2D3A;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.mock-topbar {
    height: 28px;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}
.mock-topbar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}
.mock-topbar span:first-child { background: #FF6B6B; }
.mock-topbar span:nth-child(2) { background: #F59E0B; }
.mock-topbar span:nth-child(3) { background: #10B981; }
.mockup-dashboard {
    display: flex;
    flex-direction: column;
}
.mock-sidebar {
    display: flex;
    gap: 6px;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mock-menu-item {
    height: 6px;
    width: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
}
.mock-menu-item.active {
    background: var(--accent);
    width: 50px;
}
.mock-content { padding: 16px; }
.mock-stat-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.mock-stat-box {
    flex: 1;
    height: 40px;
    background: rgba(232,168,56,0.12);
    border-radius: 6px;
    border: 1px solid rgba(232,168,56,0.2);
}
.mock-table { display: flex; flex-direction: column; gap: 4px; }
.mock-row {
    height: 16px;
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
}

/* Mockup: Monitor */
.mockup-monitor { padding: 12px 0; }
.mock-chart { height: 70px; margin-bottom: 16px; }
.mock-chart svg { width: 100%; height: 100%; }
.mock-server-list { display: flex; flex-direction: column; gap: 6px; }
.mock-server {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(0,0,0,0.04);
    border-radius: 6px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot.green { background: #10B981; }
.dot.yellow { background: #F59E0B; }
.dot.red { background: #FF6B6B; }
.mock-line {
    height: 6px;
    background: rgba(0,0,0,0.1);
    border-radius: 3px;
}
.mock-line.w50 { width: 50%; }
.mock-line.w70 { width: 70%; }
.mock-line.w80 { width: 80%; }

/* Mockup: Security */
.mockup-security {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}
.shield-icon svg {
    width: 56px;
    height: 56px;
}
.mock-alert-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mock-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Mockup: Chat */
.mockup-chat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 4px 0;
}
.chat-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    max-width: 85%;
    line-height: 1.4;
}
.chat-bubble.incoming {
    background: #F0F0F0;
    color: #2D2D3A;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.chat-bubble.outgoing {
    background: #1A9C8B;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* Mockup: Graph */
.mockup-graph svg { width: 100%; height: auto; }

/* Mockup: Code */
.mockup-code {
    background: #2D2D3A;
    border-radius: 8px;
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.code-line { color: rgba(255,255,255,0.6); }
.code-kw { color: #A78BFA; }
.code-fn { color: #4ECDC4; }
.code-str { color: #10B981; }
.code-output {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #10B981;
}

/* Mockup: Jarvis */
.mockup-jarvis {
    background: #1a1a2e;
    border-radius: 8px;
    padding: 16px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.7;
}
.jarvis-cmd {
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}
.jarvis-prompt { color: #10B981; font-weight: 700; margin-right: 6px; }
.jarvis-out {
    color: rgba(255,255,255,0.5);
    padding: 8px;
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
    border-left: 2px solid #10B981;
}

/* Mockup: Email Engine */
.mockup-email-eng {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px 0;
}
.mock-email-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(0,0,0,0.06);
    border-radius: 6px;
    font-size: 11px;
}
.mock-email-row .mock-line { flex: 1; }
.mock-line.w60 { width: 60%; }
.mock-tag-sm {
    font-size: 9px;
    font-weight: 600;
    color: #10B981;
    background: rgba(16,185,129,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* BENTO STATS */
.bento-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    break-inside: avoid;
    margin-bottom: 10px;
}
.bento-stat-card {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
}
.bento-stat-num {
    display: block;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 800;
    color: #1A9C8B;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 8px;
}
.bento-stat-label {
    display: block;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* INTEGRATIONS */
.integrations {
    background: #111111;
    padding: 100px 24px;
    text-align: center;
}
.integrations h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    font-style: italic;
}
.integrations > p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.6;
}
.int-carousel-wrapper {
    overflow: hidden;
    margin: 0 -24px;
    padding: 8px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.int-carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
}
.int-left {
    animation: intScrollLeft 30s linear infinite;
}
.int-right {
    animation: intScrollRight 35s linear infinite;
}
@keyframes intScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes intScrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.int-carousel-wrapper:hover .int-carousel-track {
    animation-play-state: paused;
}
.integration-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 28px;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    opacity: 1;
}
.integration-logo:hover {
    opacity: 1;
}
.integration-logo img {
    width: 40px;
    height: 40px;
    filter: brightness(1.2);
}
.integration-logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff !important;
}
.integration-logo svg {
    flex-shrink: 0;
}

/* SHOWCASE CAROUSEL */
.showcase {
    padding: 100px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}
.carousel-wrapper {
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
}
.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
    width: max-content;
}
.carousel-track:hover {
    animation-play-state: paused;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.carousel-item {
    flex-shrink: 0;
    width: 180px;
    text-align: center;
}
.carousel-img {
    width: 180px;
    height: 240px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}
.carousel-img:hover {
    transform: scale(1.05);
}
.carousel-icon svg {
    width: 48px;
    height: 48px;
    opacity: 0.9;
}
.carousel-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}
.carousel-desc {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 2px;
}

/* SERVICES */
.services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}
.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}
.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* PROCESS */
.process {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.step {
    text-align: center;
    padding: 24px;
}
.step-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 12px;
    letter-spacing: -2px;
}
.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ABOUT */
.about {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}
.about-content h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 16px 0;
    line-height: 1.15;
}
.about-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}
.about-values {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.value {
    padding: 16px 20px;
    background: var(--accent-light);
    border-radius: var(--radius);
    font-size: 15px;
}
.value strong {
    color: var(--accent-hover);
}

/* FOUNDER */
.about-founder {
    margin: 32px 0;
}
.founder-info h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
}
.founder-role {
    font-size: 14px;
    color: var(--accent) !important;
    font-weight: 600;
    margin-bottom: 16px !important;
}
.founder-info p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}
.founder-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: var(--accent-light);
    text-decoration: none;
    transition: all var(--transition);
}
.founder-link:hover {
    background: var(--accent);
    color: #fff;
}
.founder-link svg { flex-shrink: 0; }

/* CTA */
.cta-section {
    text-align: center;
    padding: 100px 24px;
    background: var(--bg-dark);
    color: #fff;
    margin-top: 40px;
}
.cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 12px;
}
.cta-section > p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.cta-section .btn-outline {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.cta-section .btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.cta-contact {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
}
.cta-contact a {
    color: var(--accent);
    text-decoration: none;
}

/* FOOTER */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
}
.footer-brand .logo {
    color: #fff;
    margin-bottom: 12px;
    display: inline-block;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}
.footer-links {
    display: flex;
    gap: 64px;
}
.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color var(--transition);
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open { display: flex; }
    .menu-toggle { display: block; }

    .topbar-label { display: none; }
    .topbar-partners { font-size: 11px; }
    .hero { padding: 150px 20px 60px; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }

    .product-grid { grid-template-columns: 1fr; }
    .bento-grid { column-count: 1; max-width: 420px; }
    .services-grid { grid-template-columns: 1fr; }
    .carousel-item { width: 150px; }
    .carousel-img { width: 150px; height: 200px; }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 32px;
    }
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
    .hero h1 { letter-spacing: -1px; }
}
