/* ==========================================================================
   WhatsJá Landing Page - Identidade Visual Oficial & Liquid Glass
   Brand Colors: Rich Blue (#3B26CC) & Solid Blue (#2667FF) - Animated Gradients
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Quicksand:wght@500;600;700&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

:root {
    /* Brand Colors - Official */
    --rich-blue: #3B26CC;
    --solid-blue: #2667FF;
    --bright-cyan: #00D2FF;

    /* Liquid Glass Theme Surfaces with Refraction */
    --bg-dark: #050414;
    --liquid-glass-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 60%, rgba(0, 210, 255, 0.04) 100%);
    --liquid-glass-bg-hover: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 60%, rgba(38, 103, 255, 0.12) 100%);
    --liquid-glass-card: rgba(16, 12, 48, 0.52);

    /* Elegant Liquid Specular Highlights, Clean Optical Borders & Refraction */
    --liquid-border: 1px solid rgba(255, 255, 255, 0.2);
    --liquid-border-bright: 1px solid rgba(255, 255, 255, 0.38);

    --liquid-shadow-chromatic: 
        inset 0 1px 2px rgba(255, 255, 255, 0.55), 
        inset 0 -2px 15px rgba(255, 255, 255, 0.04), 
        0 20px 45px rgba(0, 0, 0, 0.65), 
        0 0 30px rgba(59, 40, 204, 0.25);

    --liquid-shadow-chromatic-hover: 
        inset 0 2px 4px rgba(255, 255, 255, 0.95), 
        inset 0 0 25px rgba(0, 210, 255, 0.4), 
        inset 0 -2px 20px rgba(255, 255, 255, 0.12), 
        0 0 25px rgba(0, 210, 255, 0.7), 
        0 0 60px rgba(38, 103, 255, 0.6), 
        0 0 100px rgba(59, 40, 204, 0.4), 
        0 30px 65px rgba(0, 0, 0, 0.85);

    /* Fonts */
    --font-rounded-bold: 'Quicksand', 'Nunito', sans-serif;
    --font-body: 'Nunito', sans-serif;

    /* Text Colors */
    --text-heading: #ffffff;
    --text-body: #d2d6fe;
    --text-muted: #959ce2;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 9999px;

    --transition-fast: 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-body);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Organic Background Liquid Blobs & Animated Gradient Mesh */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.liquid-blob {
    position: absolute;
    filter: blur(85px);
    opacity: 0.55;
    mix-blend-mode: screen;
    animation: liquidMorph 18s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: 10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, #3B26CC 0%, rgba(38, 103, 255, 0.4) 40%, rgba(0, 210, 255, 0.15) 70%, transparent 90%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: liquidMorph 14s infinite alternate ease-in-out, blobGlowShift 10s infinite linear;
}

.blob-2 {
    top: 35%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #2667FF 0%, rgba(59, 40, 204, 0.4) 50%, rgba(0, 210, 255, 0.2) 75%, transparent 90%);
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    animation-delay: -6s;
}

.blob-3 {
    bottom: 5%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #3B26CC 0%, rgba(38, 103, 255, 0.3) 60%, transparent 80%);
    border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    animation-delay: -12s;
}

@keyframes liquidMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        border-radius: 30% 60% 70% 30% / 50% 60% 30% 60%;
        transform: translate(60px, 50px) rotate(120deg) scale(1.12);
    }
    100% {
        border-radius: 70% 30% 50% 50% / 40% 50% 60% 50%;
        transform: translate(-40px, 80px) rotate(240deg) scale(0.95);
    }
}

@keyframes blobGlowShift {
    0% { filter: blur(85px) hue-rotate(0deg); }
    50% { filter: blur(95px) hue-rotate(20deg); }
    100% { filter: blur(85px) hue-rotate(0deg); }
}

/* Mouse Glow Spotlight Follower */
.mouse-glow {
    position: fixed;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 103, 255, 0.22) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out;
    mix-blend-mode: screen;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-rounded-bold);
    color: var(--text-heading);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

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

/* Animated Gradient Text & Borders */
.text-gradient {
    background: linear-gradient(270deg, #ffffff 0%, #c4d7ff 25%, #2667FF 50%, #00D2FF 75%, #ffffff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientTextFlow 6s linear infinite;
    filter: drop-shadow(0 2px 12px rgba(38, 103, 255, 0.45));
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 4rem auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1.15rem;
    background: var(--liquid-glass-bg);
    border: var(--liquid-border-bright);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), 0 8px 25px rgba(59, 40, 204, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-full);
    color: #ffffff;
    font-family: var(--font-rounded-bold);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1.15rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* Buttons System - Liquid Glass */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.95rem 2rem;
    font-family: var(--font-rounded-bold);
    font-weight: 700;
    font-size: 1.02rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: var(--liquid-border);
    position: relative;
    overflow: hidden;
    user-select: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::before {
    left: 140%;
}

.btn-primary {
    background: linear-gradient(270deg, #3B26CC, #2667FF, #00D2FF, #2667FF);
    background-size: 300% 300%;
    animation: gradientMove 5s ease infinite;
    color: #ffffff;
    box-shadow: var(--liquid-shadow-chromatic);
    backdrop-filter: blur(16px);
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--liquid-shadow-chromatic-hover);
}

.btn-outline {
    background: var(--liquid-glass-bg);
    border: var(--liquid-border-bright);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: var(--text-heading);
}

.btn-outline:hover {
    background: var(--liquid-glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.5), 0 12px 30px rgba(38, 103, 255, 0.3);
}

.btn-lg {
    padding: 1.15rem 2.4rem;
    font-size: 1.08rem;
}

/* Floating Pill Centered Header Wrapper */
.header-fixed-wrapper {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1240px;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    z-index: 100;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.header-fixed-wrapper > * {
    pointer-events: auto;
}

.header-fixed-wrapper.scrolled {
    top: 0.85rem;
}

.navbar {
    flex: 1;
    height: 58px;
    padding: 0 1.75rem;
    display: flex;
    align-items: center;
    background: var(--liquid-glass-bg);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-full);
    backdrop-filter: blur(30px) saturate(195%);
    -webkit-backdrop-filter: blur(30px) saturate(195%);
    box-shadow: var(--liquid-shadow-chromatic);
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
}

.navbar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 0%, rgba(0, 210, 255, 0.1) 0%, rgba(38, 103, 255, 0.05) 50%, transparent 75%);
    pointer-events: none;
    mix-blend-mode: screen;
    animation: glassRefractPulse 8s infinite alternate ease-in-out;
}

@keyframes glassRefractPulse {
    0% { transform: translate(-1%, -1%) scale(1); opacity: 0.7; }
    100% { transform: translate(1%, 1%) scale(1.05); opacity: 1; }
}

.navbar.scrolled {
    height: 52px;
    padding: 0 1.5rem;
    background: rgba(12, 9, 38, 0.92);
    box-shadow: var(--liquid-shadow-chromatic-hover);
}

/* Standalone Blue Primary Painel Button Floating at Top Right */
.standalone-panel-btn {
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.75rem;
    font-family: var(--font-rounded-bold);
    font-size: 0.925rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    background: linear-gradient(270deg, #3B26CC, #2667FF, #00D2FF, #2667FF);
    background-size: 300% 300%;
    animation: gradientMove 5s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: var(--liquid-shadow-chromatic);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    color: #ffffff;
    white-space: nowrap;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.standalone-panel-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--liquid-shadow-chromatic-hover);
    border-color: rgba(255, 255, 255, 0.75);
}

.standalone-panel-btn.scrolled {
    height: 52px;
    padding: 0 1.5rem;
}

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.brand-logo-img {
    height: 36px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
    filter: drop-shadow(0 2px 8px rgba(0, 210, 255, 0.3));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-rounded-bold);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-body);
    transition: var(--transition-fast);
    padding: 0.2rem 0;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 20px rgba(0, 210, 255, 0.4);
}

.nav-links a.nav-specialist-tab {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(38, 103, 255, 0.35) 0%, rgba(0, 210, 255, 0.2) 100%);
    border: 1px solid rgba(0, 210, 255, 0.4);
    padding: 0.35rem 0.95rem;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.875rem;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.5), 0 0 15px rgba(38, 103, 255, 0.3);
}

.nav-links a.nav-specialist-tab:hover {
    background: linear-gradient(135deg, rgba(38, 103, 255, 0.6) 0%, rgba(0, 210, 255, 0.4) 100%);
    border-color: rgba(255, 255, 255, 0.75);
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.7), 0 0 25px rgba(0, 210, 255, 0.5);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-actions .btn {
    padding: 0.75rem 1.65rem;
    font-size: 0.95rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-heading);
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: rgba(12, 9, 38, 0.94);
    backdrop-filter: blur(30px) saturate(190%);
    -webkit-backdrop-filter: blur(30px) saturate(190%);
    z-index: 105;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: var(--transition-smooth);
    border-left: var(--liquid-border-bright);
    box-shadow: -10px 0 50px rgba(0,0,0,0.9);
}

.mobile-drawer.active {
    right: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-drawer-close {
    background: none;
    border: none;
    color: var(--text-heading);
    font-size: 1.85rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-links a {
    font-family: var(--font-rounded-bold);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-heading);
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 104;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    padding-top: 9.5rem;
    padding-bottom: 5.5rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-simulator-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.crm-sim-card {
    width: 100%;
    max-width: 550px;
    background: var(--liquid-glass-card);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--liquid-shadow-hover);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 1.35rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(38, 103, 255, 0.2) 100%);
    border: var(--liquid-border-bright);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 8px 25px rgba(59, 40, 204, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-full);
    color: #ffffff;
    font-family: var(--font-rounded-bold);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.7rem, 5.4vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2.75rem;
    padding-top: 2.25rem;
    border-top: var(--liquid-border);
}

.stat-item strong {
    display: block;
    font-family: var(--font-rounded-bold);
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--text-heading);
    text-shadow: 0 0 15px rgba(38, 103, 255, 0.5);
}

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

/* CRM AI Conversation Live Simulator Card */
.crm-sim-card {
    background: var(--liquid-glass-card);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--liquid-shadow-hover);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
    transition: var(--transition-smooth);
}

.crm-sim-header {
    background: rgba(18, 13, 50, 0.92);
    padding: 1.1rem 1.45rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: var(--liquid-border);
}

.crm-sim-lead-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.crm-lead-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--rich-blue), var(--solid-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 0 15px rgba(59, 40, 204, 0.6);
}

.crm-lead-details h4 {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.crm-lead-details p {
    font-size: 0.775rem;
    color: var(--text-muted);
}

.crm-badge-ai-live {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, rgba(38, 103, 255, 0.25) 0%, rgba(0, 210, 255, 0.15) 100%);
    border: 1px solid rgba(38, 103, 255, 0.4);
    border-radius: var(--radius-full);
    color: #ffffff;
    font-family: var(--font-rounded-bold);
    font-size: 0.775rem;
    font-weight: 800;
}

.crm-live-pulse-dot {
    width: 8px;
    height: 8px;
    background: #00D2FF;
    border-radius: 50%;
    box-shadow: 0 0 10px #00D2FF;
    animation: crmPulse 1.8s infinite ease-in-out;
}

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

.crm-chat-body {
    height: 380px;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: radial-gradient(circle at center, rgba(16, 12, 45, 0.7) 0%, rgba(6, 4, 22, 0.9) 100%);
    scroll-behavior: smooth;
}

.chat-bubble {
    max-width: 84%;
    padding: 0.95rem 1.2rem;
    border-radius: 20px;
    font-size: 0.925rem;
    line-height: 1.5;
    position: relative;
    animation: fadeInBubble 0.4s ease forwards;
}

@keyframes fadeInBubble {
    from { opacity: 0; transform: translateY(10px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-bubble.client {
    align-self: flex-start;
    background: rgba(30, 23, 80, 0.85);
    color: #f1f5f9;
    border: var(--liquid-border);
    backdrop-filter: blur(12px);
    border-bottom-left-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.chat-bubble.ai-agent {
    align-self: flex-end;
    background: var(--solid-blue);
    color: #ffffff;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 18px rgba(38, 103, 255, 0.4);
}

.chat-bubble-badge-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.85;
    margin-bottom: 0.35rem;
}

.chat-time {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.35rem;
    text-align: right;
}

.typing-indicator {
    align-self: flex-end;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.8rem 1.1rem;
    background: var(--solid-blue);
    border-radius: 20px;
    border-bottom-right-radius: 4px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.crm-sim-controls {
    padding: 1rem 1.25rem;
    background: rgba(18, 13, 50, 0.92);
    border-top: var(--liquid-border);
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.crm-prompt-btn {
    padding: 0.55rem 1rem;
    background: var(--liquid-glass-bg);
    border: var(--liquid-border);
    border-radius: var(--radius-full);
    color: var(--text-body);
    font-family: var(--font-rounded-bold);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition-fast);
}

.crm-prompt-btn:hover {
    background: var(--solid-blue);
    border-color: var(--solid-blue);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(38, 103, 255, 0.4);
}

/* Trusted Partner Companies Infinite Slide Marquee */
.trusted-by {
    padding: 3.5rem 0 2rem 0;
    border-top: var(--liquid-border);
    border-bottom: var(--liquid-border);
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
}

.partner-logos-marquee {
    overflow: hidden;
    position: relative;
    padding: 0.5rem 0;
    width: 100%;
    user-select: none;
}

.partner-logos-marquee::before,
.partner-logos-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 160px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

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

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

.marquee-track {
    display: flex;
    align-items: center;
    gap: 1.85rem;
    width: max-content;
    animation: infiniteLogoSlide 26s linear infinite;
}

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

@keyframes infiniteLogoSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.65rem;
    background: var(--liquid-glass-bg);
    border: var(--liquid-border-bright);
    box-shadow: var(--liquid-shadow-chromatic);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    border-radius: var(--radius-full);
    color: var(--text-heading);
    font-family: var(--font-rounded-bold);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-logo-pill:hover {
    border-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--liquid-shadow-chromatic-hover);
}

.partner-icon {
    font-size: 1.15rem;
}

/* Marketing Showcase Platform Laptop Section */
.platform-demo-section {
    padding: 6rem 0 7.5rem 0;
    position: relative;
}

.laptop-showcase-container {
    max-width: 1020px;
    margin: 0 auto 5rem auto;
    perspective: 1500px;
}

.laptop-mockup-frame {
    width: 100%;
    position: relative;
    transform: rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.laptop-mockup-frame:hover {
    transform: rotateX(0deg) translateY(-8px);
}

/* Laptop Screen Display Frame */
.laptop-screen {
    background: #09061c;
    border: 12px solid #1e1b38;
    border-bottom: 2px solid #1e1b38;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(38, 103, 255, 0.4);
    overflow: hidden;
    position: relative;
}

.laptop-screen-header {
    background: #13102d;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.laptop-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

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

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

.browser-address {
    font-family: monospace;
    font-size: 0.775rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.2rem 1.2rem;
    border-radius: var(--radius-full);
}

.laptop-screen-content {
    position: relative;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.platform-screen-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Hotspot Callouts on Screen */
.hotspot-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(12, 9, 38, 0.92);
    border: 1px solid rgba(0, 210, 255, 0.6);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.6), 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 210, 255, 0.5);
    border-radius: var(--radius-full);
    backdrop-filter: blur(16px);
    color: #ffffff;
    font-family: var(--font-rounded-bold);
    font-size: 0.825rem;
    font-weight: 800;
    z-index: 10;
    transition: var(--transition-fast);
}

.hotspot-badge:hover {
    transform: scale(1.08);
    border-color: #ffffff;
}

.hotspot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00D2FF;
    box-shadow: 0 0 10px #00D2FF;
    animation: hotspotPulse 1.8s infinite ease-in-out;
}

@keyframes hotspotPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}

.h-1 { top: 22%; left: 4%; }
.h-2 { top: 12%; right: 18%; }
.h-3 { bottom: 18%; right: 5%; }

/* Laptop Base Deck */
.laptop-base {
    height: 20px;
    background: linear-gradient(180deg, #2b274c 0%, #15122e 100%);
    border-radius: 0 0 24px 24px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(38, 103, 255, 0.3);
}

.laptop-notch {
    width: 140px;
    height: 6px;
    background: #110e28;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

/* Marketing Grid Side-by-Side */
.platform-marketing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.marketing-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--liquid-border-bright);
    box-shadow: var(--liquid-shadow-chromatic);
    backdrop-filter: blur(24px);
}

.marketing-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.marketing-image-card:hover .marketing-photo {
    transform: scale(1.05);
}

.marketing-card-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2rem 1.75rem 1.5rem 1.75rem;
    background: linear-gradient(0deg, rgba(8, 6, 26, 0.95) 0%, rgba(8, 6, 26, 0.6) 70%, transparent 100%);
}

.marketing-card-overlay h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.marketing-card-overlay p {
    font-size: 0.875rem;
    color: var(--text-body);
}

.marketing-features-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mkt-feature-box {
    background: var(--liquid-glass-card);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    box-shadow: var(--liquid-shadow-chromatic);
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.mkt-feature-box:hover {
    border-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-4px);
    box-shadow: var(--liquid-shadow-chromatic-hover);
}

.mkt-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(38, 103, 255, 0.3), rgba(0, 210, 255, 0.2));
    border: 1px solid rgba(0, 210, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.mkt-feature-box h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.mkt-feature-box p {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.5;
}

@media (max-width: 992px) {
    .platform-marketing-grid {
        grid-template-columns: 1fr;
    }

    .hotspot-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
}

/* 3D Smartphone Device Mockup System */
.phone-mockup-frame {
    width: 270px;
    height: 550px;
    background: #09061c;
    border: 10px solid #1e1b38;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 210, 255, 0.4), inset 0 0 2px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-speaker-bar {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #2a254c;
    border-radius: 4px;
    z-index: 20;
}

.phone-camera-lens {
    position: absolute;
    top: 10px;
    right: 75px;
    width: 8px;
    height: 8px;
    background: #110d2d;
    border-radius: 50%;
    border: 1px solid #332d5c;
    z-index: 20;
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    scrollbar-width: none;
}

.phone-screen::-webkit-scrollbar {
    display: none;
}

.phone-screen-img {
    width: 100%;
    height: auto;
    display: block;
}

.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
    z-index: 20;
}

/* Floating Phone Mockup inside Laptop Showcase */
.laptop-showcase-container {
    position: relative;
}

.hero-floating-phone {
    position: absolute;
    bottom: -30px;
    right: -20px;
    z-index: 15;
    transform: rotate(6deg) scale(0.92);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-floating-phone:hover {
    transform: rotate(0deg) scale(1) translateY(-10px);
}

/* Mobile CRM Showcase Section */
.mobile-demo-section {
    padding: 5rem 0 7.5rem 0;
    position: relative;
}

.mobile-showcase-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.main-phone-view {
    width: 290px;
    height: 580px;
}

.main-phone-view:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.95), 0 0 50px rgba(0, 210, 255, 0.6);
}

.mobile-info-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-mkt-card {
    height: 240px;
}

.mobile-mkt-card .marketing-photo {
    height: 240px;
}

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

@media (max-width: 992px) {
    .hero-floating-phone {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 2rem;
        transform: none;
    }

    .mobile-showcase-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .main-phone-view {
        margin: 0 auto;
    }
}

/* Features Grid Section */
.features-section {
    padding: 7.5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.25rem;
}

.feature-card {
    background: var(--liquid-glass-card);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2.25rem;
    box-shadow: var(--liquid-shadow-chromatic);
    backdrop-filter: blur(28px) saturate(200%) contrast(105%);
    -webkit-backdrop-filter: blur(28px) saturate(200%) contrast(105%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, rgba(0, 210, 255, 0.2) 70%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.feature-card:hover::before {
    left: 160%;
}

.feature-card:hover {
    background: var(--liquid-glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--liquid-shadow-chromatic-hover);
}

.feature-icon-box {
    width: 62px;
    height: 62px;
    background: var(--liquid-glass-bg);
    border: var(--liquid-border-bright);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 8px 20px rgba(59, 40, 204, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--solid-blue);
    font-size: 1.6rem;
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
    background: var(--solid-blue);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(38, 103, 255, 0.7);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
}

.feature-card p {
    color: var(--text-body);
    font-size: 0.975rem;
    line-height: 1.65;
}

/* Showcase Section */
.showcase-section {
    padding: 7rem 0;
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.showcase-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.showcase-content h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}

.showcase-content p {
    font-size: 1.15rem;
    color: var(--text-body);
    margin-bottom: 2.25rem;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2.5rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 1.02rem;
    color: var(--text-heading);
}

.check-list-icon {
    width: 26px;
    height: 26px;
    background: var(--solid-blue);
    box-shadow: 0 0 12px rgba(38, 103, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 800;
    font-size: 0.85rem;
}

/* Interactive Drag and Drop Kanban Board Component */
.kanban-interactive-wrapper {
    background: var(--liquid-glass-card);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--liquid-shadow);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
}

.kanban-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: var(--liquid-border);
}

.kanban-title-text {
    font-family: var(--font-rounded-bold);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kanban-action-btn {
    padding: 0.45rem 1rem;
    background: var(--solid-blue);
    border: none;
    border-radius: var(--radius-full);
    color: #ffffff;
    font-family: var(--font-rounded-bold);
    font-size: 0.825rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.kanban-action-btn:hover {
    background: #1a56e8;
    box-shadow: 0 4px 15px rgba(38, 103, 255, 0.5);
}

.kanban-cols-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.kanban-column {
    background: rgba(14, 10, 42, 0.7);
    border-radius: 18px;
    padding: 1.1rem;
    border: var(--liquid-border);
    min-height: 280px;
    transition: var(--transition-fast);
}

.kanban-column.drag-over {
    border-color: var(--solid-blue);
    background: rgba(38, 103, 255, 0.15);
    box-shadow: inset 0 0 20px rgba(38, 103, 255, 0.2);
}

.kanban-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-family: var(--font-rounded-bold);
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--text-heading);
}

.kanban-badge-count {
    padding: 0.2rem 0.6rem;
    background: var(--solid-blue);
    border-radius: 10px;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 800;
}

.kanban-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-height: 200px;
}

.kanban-item {
    background: rgba(30, 22, 85, 0.85);
    border: var(--liquid-border);
    border-radius: 14px;
    padding: 1rem;
    font-size: 0.825rem;
    cursor: grab;
    user-select: none;
    transition: var(--transition-fast);
}

.kanban-item:active {
    cursor: grabbing;
}

.kanban-item.dragging {
    opacity: 0.4;
    transform: scale(0.96);
}

.kanban-item:hover {
    border-color: var(--solid-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(38, 103, 255, 0.35);
}

.kanban-item-title {
    font-family: var(--font-rounded-bold);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kanban-item-val {
    color: var(--solid-blue);
    font-weight: 800;
    font-size: 0.9rem;
}

.kanban-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.65rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.kanban-move-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-heading);
    padding: 0.15rem 0.4rem;
    font-size: 0.7rem;
    cursor: pointer;
}

.kanban-move-btn:hover {
    background: var(--solid-blue);
    border-color: var(--solid-blue);
}

/* Interactive AI Node Canvas Flow Builder (Spline Grid Dark Mode) */
.ai-flow-builder-card.canvas-mode {
    background: var(--liquid-glass-card);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: var(--liquid-shadow-hover);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
}

.canvas-topbar {
    background: rgba(14, 10, 42, 0.95);
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: var(--liquid-border);
    flex-wrap: wrap;
    gap: 1rem;
}

.canvas-title-group {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.canvas-back-btn {
    font-size: 1.25rem;
    color: var(--text-heading);
    cursor: pointer;
}

.canvas-title-group h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-heading);
}

.canvas-title-group small {
    font-size: 0.775rem;
    color: var(--text-muted);
}

.canvas-top-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.canvas-top-pill {
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    border: var(--liquid-border);
    border-radius: var(--radius-full);
    font-family: var(--font-rounded-bold);
    font-size: 0.775rem;
    font-weight: 700;
    color: var(--text-body);
}

.canvas-workspace {
    position: relative;
    background-color: rgba(7, 5, 22, 0.96);
    background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1.2px, transparent 1.2px);
    background-size: 22px 22px;
    padding: 2.5rem 1.5rem 4.5rem 1.5rem;
    overflow-x: auto;
    min-height: 420px;
}

.canvas-svg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.canvas-spline-path {
    fill: none;
    stroke: #2667FF;
    stroke-width: 2.8px;
    stroke-dasharray: 6, 6;
    filter: drop-shadow(0 0 10px rgba(38, 103, 255, 0.9));
    animation: splineDash 12s linear infinite;
    transition: d 0.3s ease;
}

.canvas-spline-path.active-signal {
    stroke: #00D2FF;
    stroke-width: 3.5px;
    stroke-dasharray: none;
    filter: drop-shadow(0 0 16px #00D2FF);
}

@keyframes splineDash {
    from { stroke-dashoffset: 200; }
    to { stroke-dashoffset: 0; }
}

.nodes-stream-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 3;
    width: 100%;
}

@media (max-width: 1024px) {
    .nodes-stream-grid {
        grid-template-columns: repeat(4, minmax(220px, 1fr));
        min-width: 940px;
    }
}

.ai-flow-highlights-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-top: 1rem;
}

.flow-highlight-item {
    background: var(--liquid-glass-card);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.6rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: var(--liquid-shadow);
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.flow-highlight-item:hover {
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-4px);
    box-shadow: var(--liquid-shadow-hover);
}

.flow-highlight-item strong {
    display: block;
    font-family: var(--font-rounded-bold);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.flow-highlight-item p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
}

.grid-node-card {
    background: rgba(18, 13, 50, 0.92);
    border: var(--liquid-border-bright);
    border-radius: 18px;
    padding: 1.1rem;
    box-shadow: var(--liquid-shadow-chromatic);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: relative;
    z-index: 5;
    cursor: grab;
    user-select: none;
    transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.grid-node-card:hover {
    border-color: rgba(0, 210, 255, 0.6);
    box-shadow: var(--liquid-shadow-chromatic-hover);
}

.grid-node-card.dragging-node {
    cursor: grabbing;
    z-index: 10;
    box-shadow: -3px 0 20px rgba(0, 210, 255, 0.6), 3px 0 20px rgba(255, 0, 165, 0.5), 0 25px 60px rgba(0,0,0,0.9);
    border-color: rgba(255, 255, 255, 0.85);
}

.grid-node-card.active-node {
    border-color: var(--solid-blue);
    box-shadow: 0 0 30px rgba(38, 103, 255, 0.6);
    background: rgba(32, 22, 100, 0.95);
    transform: translateY(-4px);
}

.node-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.node-card-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.node-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.badge-green { background: linear-gradient(135deg, #2667FF, #00D2FF); }
.badge-pink { background: linear-gradient(135deg, #e91e63, #ff4081); }
.badge-red { background: linear-gradient(135deg, #ff3d00, #ff6e40); }
.badge-green-light { background: linear-gradient(135deg, #3B26CC, #2667FF); }

.node-card-title small {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.node-card-title h4 {
    font-size: 0.925rem;
    font-weight: 800;
    color: var(--text-heading);
}

.node-tool-actions {
    display: flex;
    gap: 0.4rem;
    font-size: 0.8rem;
    opacity: 0.6;
    cursor: pointer;
}

.node-card-body {
    margin-bottom: 1.1rem;
    min-height: 54px;
    display: flex;
    align-items: center;
}

.node-tag-pill {
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.07);
    border: var(--liquid-border);
    border-radius: 10px;
    font-size: 0.775rem;
    color: var(--text-body);
}

.audio-widget-player {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, rgba(38, 103, 255, 0.3) 0%, rgba(0, 210, 255, 0.2) 100%);
    border: 1px solid rgba(38, 103, 255, 0.4);
    border-radius: 12px;
}

.audio-play-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--solid-blue);
    border: none;
    color: #fff;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.audio-wave-bars {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-grow: 1;
    height: 18px;
}

.audio-wave-bars span {
    width: 3px;
    height: 100%;
    background: #ffffff;
    border-radius: 3px;
    animation: waveAnim 1.2s infinite ease-in-out alternate;
}

.audio-wave-bars span:nth-child(2n) { animation-delay: -0.4s; height: 60%; }
.audio-wave-bars span:nth-child(3n) { animation-delay: -0.8s; height: 80%; }

@keyframes waveAnim {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}

.video-widget-box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: var(--liquid-border);
    border-radius: 12px;
    font-size: 0.775rem;
}

.video-play-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
}

.question-widget-box {
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: var(--liquid-border);
    border-radius: 12px;
    font-size: 0.775rem;
    line-height: 1.4;
}

.node-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.65rem;
    border-top: var(--liquid-border);
    position: relative;
}

.node-handle-text {
    font-size: 0.775rem;
    font-weight: 700;
    color: var(--text-muted);
}

.node-port {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #2667FF;
    background: #050414;
    box-shadow: 0 0 10px #2667FF;
    transition: var(--transition-fast);
}

.node-port:hover {
    transform: scale(1.3);
    background: #2667FF;
}

.canvas-bottom-controls {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 4;
}

.zoom-pill {
    padding: 0.4rem 0.9rem;
    background: rgba(14, 10, 42, 0.9);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-full);
    font-family: var(--font-rounded-bold);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.zoom-btn {
    background: none;
    border: none;
    color: var(--text-heading);
    cursor: pointer;
    font-weight: 800;
}

.canvas-fab-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--solid-blue);
    border: var(--liquid-border-bright);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(38, 103, 255, 0.7);
    pointer-events: auto;
    transition: var(--transition-fast);
}

.canvas-fab-btn:hover {
    transform: scale(1.1);
}

/* Live WhatsApp Flow Simulation Modal */
.flow-sim-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 2, 12, 0.85);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    z-index: 120;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.flow-sim-modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.flow-sim-modal-card {
    width: 100%;
    max-width: 450px;
    background: rgba(16, 12, 48, 0.96);
    border: var(--liquid-border-bright);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--liquid-shadow-chromatic-hover);
    backdrop-filter: blur(32px) saturate(210%);
    -webkit-backdrop-filter: blur(32px) saturate(210%);
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-smooth);
}

.flow-sim-modal-backdrop.active .flow-sim-modal-card {
    transform: scale(1) translateY(0);
}

.flow-sim-header {
    background: rgba(14, 10, 42, 0.98);
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: var(--liquid-border);
}

.sim-user-info {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.sim-user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rich-blue), var(--solid-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 0 15px rgba(38, 103, 255, 0.6);
}

.sim-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sim-user-info h4 {
    font-size: 0.975rem;
    font-weight: 800;
    color: var(--text-heading);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sim-user-info h4 span {
    font-size: 0.775rem;
    color: var(--text-muted);
    font-weight: 600;
}

.sim-user-info small {
    font-size: 0.75rem;
    color: #00D2FF;
    font-weight: 700;
}

.flow-sim-close-btn {
    background: none;
    border: none;
    color: var(--text-heading);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.flow-sim-close-btn:hover {
    color: var(--solid-blue);
    transform: scale(1.15);
}

.flow-sim-chat-body {
    height: 390px;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: radial-gradient(circle at center, rgba(16, 12, 45, 0.85) 0%, rgba(6, 4, 22, 0.95) 100%);
    scroll-behavior: smooth;
}

.flow-sim-footer {
    padding: 0.75rem 1.25rem;
    background: rgba(14, 10, 42, 0.95);
    border-top: var(--liquid-border);
    text-align: center;
    font-size: 0.775rem;
    color: var(--text-muted);
}

/* Interactive ROI Calculator Liquid Glass */
.roi-calculator-section {
    padding: 7rem 0;
    position: relative;
}

.roi-card-box {
    background: var(--liquid-glass-card);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: var(--liquid-shadow-chromatic);
    backdrop-filter: blur(30px) saturate(210%) contrast(108%);
    -webkit-backdrop-filter: blur(30px) saturate(210%) contrast(108%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.roi-card-box:hover {
    box-shadow: var(--liquid-shadow-chromatic-hover);
}

.roi-inputs-side h3 {
    font-size: 1.65rem;
    margin-bottom: 1.75rem;
}

.roi-field {
    margin-bottom: 1.85rem;
}

.roi-field-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.65rem;
    font-family: var(--font-rounded-bold);
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--text-heading);
}

.roi-field-val {
    color: var(--solid-blue);
    font-weight: 800;
}

.roi-slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
    accent-color: var(--solid-blue);
    cursor: pointer;
}

.roi-results-side {
    background: rgba(14, 10, 42, 0.85);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: var(--liquid-border-bright);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.roi-highlight-stat label {
    font-family: var(--font-rounded-bold);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.roi-big-val {
    font-family: var(--font-rounded-bold);
    font-size: clamp(2.6rem, 4.2vw, 3.8rem);
    font-weight: 800;
    color: var(--solid-blue);
    line-height: 1.1;
    margin-top: 0.35rem;
    text-shadow: 0 0 25px rgba(38, 103, 255, 0.5);
}

.roi-sub-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
    padding-top: 1.75rem;
    border-top: var(--liquid-border);
}

.roi-sub-item small {
    display: block;
    color: var(--text-muted);
    font-size: 0.825rem;
}

.roi-sub-item span {
    font-family: var(--font-rounded-bold);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-heading);
}

/* White Label Section Liquid Glass */
.white-label-section {
    padding: 7.5rem 0;
}

.wl-setup-box {
    background: linear-gradient(135deg, rgba(38, 26, 120, 0.9) 0%, rgba(18, 14, 54, 0.96) 100%);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-lg);
    padding: 2.75rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--liquid-shadow-chromatic-hover);
    backdrop-filter: blur(30px) saturate(210%);
    -webkit-backdrop-filter: blur(30px) saturate(210%);
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.wl-setup-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, rgba(0, 210, 255, 0.25) 75%, transparent 100%);
    transform: skewX(-20deg);
    animation: glassChromSheen 7s infinite ease-in-out;
    pointer-events: none;
}

@keyframes glassChromSheen {
    0% { left: -120%; }
    40% { left: 160%; }
    100% { left: 160%; }
}

.wl-setup-info small {
    display: block;
    font-family: var(--font-rounded-bold);
    font-size: 0.825rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.wl-setup-price {
    font-family: var(--font-rounded-bold);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    color: var(--solid-blue);
    text-shadow: 0 0 25px rgba(38, 103, 255, 0.6);
    margin: 0.2rem 0;
    line-height: 1.1;
}

.wl-setup-info span {
    font-size: 0.95rem;
    color: var(--text-body);
}

.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-label {
    font-family: var(--font-rounded-bold);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-body);
    cursor: pointer;
}

.toggle-label.active {
    color: var(--text-heading);
}

.switch-toggle {
    width: 64px;
    height: 34px;
    background: var(--liquid-glass-bg);
    border: var(--liquid-border-bright);
    border-radius: 20px;
    padding: 4px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
}

.switch-toggle.active {
    background: var(--solid-blue);
}

.switch-circle {
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.switch-toggle.active .switch-circle {
    transform: translateX(30px);
}

.save-badge {
    padding: 0.35rem 0.85rem;
    background: var(--liquid-glass-bg);
    border: 1px solid rgba(38, 103, 255, 0.4);
    border-radius: var(--radius-full);
    color: var(--solid-blue);
    font-family: var(--font-rounded-bold);
    font-size: 0.85rem;
    font-weight: 800;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--liquid-glass-card);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--liquid-shadow-chromatic);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, rgba(0, 210, 255, 0.2) 70%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.pricing-card:hover::before {
    left: 160%;
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(38, 26, 120, 0.88) 0%, rgba(59, 40, 204, 0.65) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: var(--liquid-shadow-chromatic-hover);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: var(--liquid-shadow-chromatic-hover);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.45rem 1.4rem;
    background: linear-gradient(135deg, #3B26CC 0%, #2667FF 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-full);
    color: #ffffff;
    font-family: var(--font-rounded-bold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: 0 6px 20px rgba(59, 40, 204, 0.6);
}

.plan-name {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    min-height: 42px;
}

.price-val {
    font-family: var(--font-rounded-bold);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-heading);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features-list li {
    font-size: 0.925rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.plan-features-list svg {
    color: var(--solid-blue);
    flex-shrink: 0;
}

/* Integrations Grid */
.integrations-section {
    padding: 6.5rem 0;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.integration-card {
    background: var(--liquid-glass-card);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: var(--liquid-shadow);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: var(--transition-smooth);
}

.integration-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-6px);
    box-shadow: var(--liquid-shadow-hover);
}

.integration-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    margin: 0 auto 1.35rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* FAQ Accordion Liquid Glass */
.faq-section {
    padding: 6.5rem 0;
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.faq-item {
    background: var(--liquid-glass-card);
    border: var(--liquid-border-bright);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: var(--liquid-shadow);
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    padding: 1.45rem 1.85rem;
    background: none;
    border: none;
    color: var(--text-heading);
    font-family: var(--font-rounded-bold);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-chevron {
    transition: var(--transition-fast);
    color: var(--text-muted);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--solid-blue);
}

.faq-answer {
    padding: 0 1.85rem 1.6rem 1.85rem;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.65;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA Banner Liquid Glass Animated Gradient */
.final-cta-section {
    padding: 7rem 0;
}

.final-cta-card {
    background: linear-gradient(270deg, rgba(59, 40, 204, 0.8) 0%, rgba(38, 103, 255, 0.6) 50%, rgba(0, 210, 255, 0.4) 100%);
    background-size: 300% 300%;
    animation: gradientMove 8s ease infinite;
    border: var(--liquid-border-bright);
    border-radius: 36px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--liquid-shadow-hover);
    backdrop-filter: blur(30px) saturate(190%);
    -webkit-backdrop-filter: blur(30px) saturate(190%);
}

.final-cta-card h2 {
    font-size: clamp(2.3rem, 4.2vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 1.35rem;
}

.final-cta-card p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.75rem auto;
}

/* Footer */
.footer {
    background: rgba(4, 3, 14, 0.95);
    border-top: var(--liquid-border);
    padding: 5rem 0 2rem 0;
}

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 1.25rem 0 1.75rem 0;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-rounded-bold);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col a {
    color: var(--text-body);
    font-size: 0.925rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255,255,255,0.7);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: var(--liquid-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Breakpoints & Header Refinement */
@media (max-width: 1200px) {
    .header-fixed-wrapper {
        max-width: 100%;
        padding: 0 1.25rem;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }
}

@media (max-width: 1024px) {
    .hero-grid, .showcase-grid, .roi-card-box {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

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

@media (max-width: 768px) {
    .header-fixed-wrapper {
        top: 0.85rem;
        padding: 0 0.85rem;
        gap: 0.5rem;
    }

    .navbar {
        height: 48px;
        padding: 0 1rem;
    }

    .brand-logo-img {
        height: 28px;
    }

    .standalone-panel-btn {
        height: 48px;
        padding: 0 1.15rem;
        font-size: 0.825rem;
    }

    .hero {
        padding-top: 8rem;
    }

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

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

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

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

    .hotspot-badge {
        display: none;
    }
}

/* Glass Edge Specular Glare & Bloom Light Engine */
.feature-card:hover,
.pricing-card:hover,
.crm-sim-card:hover,
.wl-setup-box:hover,
.partner-logo-pill:hover,
.standalone-panel-btn:hover,
.navbar:hover,
.roi-card-box:hover,
.flow-sim-modal-card:hover,
.grid-node-card:hover,
.flow-highlight-item:hover,
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: var(--liquid-shadow-chromatic-hover) !important;
}

/* Specular Laser Rim Glare Beam Sweeper */
.feature-card::after,
.pricing-card::after,
.crm-sim-card::after,
.wl-setup-box::after,
.roi-card-box::after,
.flow-sim-modal-card::after,
.grid-node-card::after,
.partner-logo-pill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 2.5px;
    background: linear-gradient(90deg, transparent 0%, #00D2FF 30%, #ffffff 50%, #00D2FF 70%, transparent 100%);
    filter: drop-shadow(0 0 8px #00D2FF) drop-shadow(0 0 16px #ffffff);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 15;
}

.feature-card:hover::after,
.pricing-card:hover::after,
.crm-sim-card:hover::after,
.wl-setup-box:hover::after,
.roi-card-box:hover::after,
.flow-sim-modal-card:hover::after,
.grid-node-card:hover::after,
.partner-logo-pill:hover::after {
    opacity: 1;
    animation: glassRimGlareBeam 1.3s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}

@keyframes glassRimGlareBeam {
    0% { left: -60%; opacity: 0.2; }
    50% { opacity: 1; }
    100% { left: 100%; opacity: 0.2; }
}
