/* ===================================
   OPERIX AI - FUTURISTIC SALES PLATFORM
   Black Glassmorphism Theme
   =================================== */

/* CSS Variables */
:root {
    /* Colors - Teal & Coral Theme */
    --bg-primary: #0D2B2B;
    --bg-secondary: #0A2424;
    --bg-tertiary: #122F2F;
    
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-hover: rgba(255, 255, 255, 0.08);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-muted: rgba(255, 255, 255, 0.45);
    
    /* Accent Colors */
    --accent-coral: #E87B5C;
    --accent-orange: #E59A6F;
    --accent-teal: #2D5A5A;
    --accent-teal-light: #3D7A7A;
    --accent-cream: #F5F0E8;
    --accent-green: #4CAF7D;
    --accent-red: #E57373;
    --accent-yellow: #F5C26B;
    
    --gradient-primary: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-orange) 100%);
    --gradient-teal: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-teal-light) 100%);
    --gradient-glow: radial-gradient(circle, rgba(232, 123, 92, 0.15) 0%, transparent 70%);
    
    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --container-max: 1400px;
    --section-padding: 120px;
    
    /* Effects */
    --blur-glass: 20px;
    --blur-heavy: 40px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background: var(--accent-coral);
    color: var(--bg-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-coral);
}

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

/* ===================================
   ANIMATED BACKGROUND
   =================================== */

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -3;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: -2;
    animation: floatGlow 20s infinite ease-in-out;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 123, 92, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 90, 90, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: -150px;
    animation-delay: -7s;
}

.bg-glow-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 154, 111, 0.12) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: -14s;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.05); }
}

.floating-orbs {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.4;
    filter: blur(1px);
    animation: floatOrb 15s infinite ease-in-out;
}

.orb-1 {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 4px;
    height: 4px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.orb-3 {
    width: 8px;
    height: 8px;
    bottom: 30%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.4; }
    25% { transform: translateY(-40px) translateX(20px); opacity: 0.8; }
    50% { transform: translateY(-20px) translateX(-30px); opacity: 0.5; }
    75% { transform: translateY(30px) translateX(10px); opacity: 0.7; }
}

/* ===================================
   GLASSMORPHISM UTILITIES
   =================================== */

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.glass-subtle {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: var(--container-max);
    z-index: 1000;
    padding: 14px 28px;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-ai {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
    background: var(--glass-hover);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(232, 123, 92, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: var(--glass-hover);
}

.btn-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.play-icon {
    width: 24px;
    height: 24px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: auto;
    height: 100vh;
    max-height: 900px;
    padding: 100px 30px 40px 25px;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 30px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    margin-left: 20px;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-coral);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-cta {
    display: none;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 8px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.stat-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-orange);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

.hero-stats-cta {
    margin-left: auto;
}

/* Hero Workflow Automation */
.hero-workflow {
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: 14px;
    overflow-x: auto;
}

.workflow-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

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

.hero-workflow-flow {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    min-width: max-content;
}

.hw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 75px;
}

.hw-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

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

.hw-icon.ai {
    background: linear-gradient(135deg, var(--accent-coral), var(--accent-orange));
    color: white;
    box-shadow: 0 4px 15px rgba(232, 123, 92, 0.4);
}

.hw-icon.human {
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-teal-light));
    color: white;
    box-shadow: 0 4px 15px rgba(61, 122, 122, 0.4);
}

.hw-icon.success {
    background: linear-gradient(135deg, #4CAF7D, #2D8B5C);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 125, 0.4);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(76, 175, 125, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(76, 175, 125, 0.6); }
}

.hw-step:hover .hw-icon {
    transform: translateY(-4px) scale(1.05);
}

.hw-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    white-space: nowrap;
}

.hw-badge {
    font-size: 0.55rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.hw-badge.ai {
    background: rgba(232, 123, 92, 0.2);
    color: var(--accent-coral);
}

.hw-badge.human {
    background: rgba(61, 122, 122, 0.2);
    color: var(--accent-teal-light);
}

.hw-badge.success {
    background: rgba(76, 175, 125, 0.2);
    color: var(--accent-green);
}

.hw-connector {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0 2px;
}

.hw-line {
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-coral), var(--accent-orange));
    position: relative;
    overflow: hidden;
}

.hw-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: flowLine 2s linear infinite;
}

@keyframes flowLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hw-arrow {
    font-size: 0.9rem;
    color: var(--accent-coral);
    font-weight: bold;
}

.hw-step.final .hw-label {
    color: var(--accent-green);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-workflow {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-workflow {
        padding: 16px;
        margin-top: 24px;
    }
    
    .hw-icon {
        width: 40px;
        height: 40px;
    }
    
    .hw-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .hw-step {
        min-width: 65px;
    }
    
    .hw-label {
        font-size: 0.6rem;
    }
    
    .hw-line {
        width: 12px;
    }
}

/* Hero Visual - Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    display: flex;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(232, 123, 92, 0.15);
    animation: floatDashboard 6s ease-in-out infinite;
    height: clamp(500px, 70vh, 620px);
}

.dashboard-preview.no-sidebar {
    display: block;
}

.dashboard-preview.no-sidebar .dash-main-full {
    width: 100%;
}

/* Collapsed Sidebar */
.dashboard-preview.with-collapsed-sidebar {
    display: flex;
}

.dash-sidebar-collapsed {
    width: 56px;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.collapsed-logo {
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collapsed-logo svg {
    width: 28px;
    height: 28px;
}

.collapsed-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
}

.collapsed-nav-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
}

.collapsed-nav-item svg {
    width: 20px;
    height: 20px;
}

.collapsed-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.collapsed-nav-item.active {
    background: var(--accent-coral);
    color: white;
}

.collapsed-divider {
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 10px 0;
}

.dashboard-preview.with-collapsed-sidebar .dash-main-full {
    flex: 1;
}

@keyframes floatDashboard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(0.3deg); }
}

/* Full Sidebar */
.dash-sidebar-full {
    width: 175px;
    background: #FAFAFA;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-header {
    padding: 14px;
    border-bottom: 1px solid #eee;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.sidebar-logo svg {
    width: 22px;
    height: 22px;
}

.sidebar-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.72rem;
    color: #999;
}

.sidebar-search svg {
    width: 12px;
    height: 12px;
    color: #999;
}

.sidebar-nav {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 0.78rem;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 3px;
    transition: var(--transition-fast);
}

.nav-item svg {
    width: 16px;
    height: 16px;
    color: #888;
}

.nav-item:hover {
    background: #f0f0f0;
}

.nav-item.active {
    background: var(--accent-coral);
    color: white;
}

.nav-item.active svg {
    color: white;
}

.nav-section {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.nav-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #333;
}

.nav-section-title svg {
    width: 15px;
    height: 15px;
    color: #666;
}

.nav-subitem {
    display: block;
    padding: 6px 12px 6px 34px;
    font-size: 0.72rem;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
}

.nav-subitem:hover {
    background: #f5f5f5;
    color: #333;
}

/* Main Content Full */
.dash-main-full {
    flex: 1;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dash-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: white;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    color: #888;
}

.breadcrumb .current {
    color: #333;
    font-weight: 500;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.refresh-time {
    font-size: 0.6rem;
    color: #999;
}

.user-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent-coral), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: white;
}

.dash-page-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: white;
}

.dash-page-title h2 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.title-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-badge {
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 0.6rem;
    color: #555;
}

.edit-btn {
    padding: 6px 14px;
    background: var(--accent-coral);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 500;
    cursor: pointer;
}

/* Metrics Row */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    padding: 0 16px;
    margin-top: 12px;
}

.metric-box {
    background: white;
    padding: 12px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border-left: 3px solid var(--accent-coral);
}

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

.metric-val {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}

.metric-lbl {
    font-size: 0.55rem;
    color: #888;
}

/* Charts Grid */
.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px 16px;
}

.chart-panel {
    background: white;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.chart-panel-header {
    margin-bottom: 12px;
}

.chart-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: #333;
}

/* Line Chart */
.line-chart {
    display: flex;
    gap: 10px;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.55rem;
    color: #999;
    text-align: right;
    padding: 4px 0;
}

.chart-area-line {
    flex: 1;
    height: 75px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.chart-area-line svg {
    width: 100%;
    height: 100%;
}

.x-axis {
    display: flex;
    justify-content: space-between;
    font-size: 0.55rem;
    color: #999;
    padding-left: 30px;
    margin-top: 5px;
}

/* Vertical Bar Chart */
.vertical-bar-chart {
    height: 90px;
    padding-top: 12px;
}

.vbar-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 100%;
    padding: 0 12px;
}

.vbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 40px;
}

.vbar-fill {
    width: 30px;
    height: var(--h);
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

.vbar-fill.google { background: var(--accent-coral); }
.vbar-fill.linkedin { background: #0A66C2; }
.vbar-fill.direct { background: var(--accent-teal); }
.vbar-fill.referral { background: #E59A6F; }

.vbar-label {
    font-size: 0.52rem;
    color: #888;
}

/* Workflow Automation Panel */
.workflow-panel {
    margin: 0 16px;
    background: white;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

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

.workflow-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: #333;
}

.workflow-badge {
    font-size: 0.55rem;
    padding: 4px 10px;
    background: rgba(76, 175, 125, 0.15);
    color: var(--accent-green);
    border-radius: 10px;
    font-weight: 500;
}

.workflow-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.workflow-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 3px solid var(--accent-coral);
}

.workflow-flow {
    display: flex;
    align-items: center;
    gap: 3px;
}

.flow-node {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.52rem;
    font-weight: 500;
    white-space: nowrap;
}

.flow-node.trigger {
    background: rgba(232, 123, 92, 0.15);
    color: var(--accent-coral);
}

.flow-node.action {
    background: rgba(61, 122, 122, 0.12);
    color: var(--accent-teal);
}

.flow-node.success {
    background: rgba(76, 175, 125, 0.15);
    color: var(--accent-green);
}

.flow-connector {
    display: flex;
    align-items: center;
    width: 16px;
}

.flow-line {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.flow-dot {
    width: 4px;
    height: 4px;
    background: var(--accent-coral);
    border-radius: 50%;
    animation: flowPulse 1.5s ease-in-out infinite;
}

.flow-connector:nth-child(2) .flow-dot { animation-delay: 0s; }
.flow-connector:nth-child(4) .flow-dot { animation-delay: 0.3s; }
.flow-connector:nth-child(6) .flow-dot { animation-delay: 0.6s; }

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

.workflow-stats {
    font-size: 0.55rem;
    color: #888;
}

.workflow-stats strong {
    color: var(--accent-coral);
    font-weight: 600;
}

/* Data Table */
.data-table-panel {
    margin: 0 16px 12px;
    background: white;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    overflow: hidden;
}

.table-header {
    margin-bottom: 10px;
}

.table-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: #333;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.6rem;
}

.data-table th {
    text-align: left;
    padding: 8px 10px;
    background: #f9f9f9;
    color: #666;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.data-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #f5f5f5;
    color: #333;
}

.data-table td.positive {
    color: var(--accent-green);
    font-weight: 600;
}

.data-table td.neutral {
    color: #888;
}

/* ===================================
   SECTIONS COMMON
   =================================== */

section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-orange);
    margin-bottom: 16px;
    background: rgba(232, 123, 92, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   PROBLEMS SECTION
   =================================== */

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

.problem-card {
    padding: 24px;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-5px);
    background: var(--glass-hover);
}

.problem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--accent-coral);
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.problem-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===================================
   PLATFORM ARCHITECTURE
   =================================== */

.architecture-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.arch-core {
    padding: 40px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.arch-core::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(232, 123, 92, 0.1), transparent 70%);
    animation: corePulse 3s infinite ease-in-out;
}

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

.core-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.core-logo svg {
    width: 100%;
    height: 100%;
}

.core-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.core-sublabel {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.arch-modules {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 1000px;
}

.module-item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.module-item:hover {
    background: var(--glass-hover);
    transform: translateY(-3px);
}

.module-item.highlight {
    background: rgba(232, 123, 92, 0.05);
    border-color: var(--accent-coral);
}

.module-icon {
    font-size: 1.5rem;
}

.module-icon-pro {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.module-icon-pro svg {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.module-item:hover .module-icon-pro svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(232, 123, 92, 0.3));
}

.module-icon-pro.copilot-icon svg {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(232, 123, 92, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(232, 123, 92, 0.7));
    }
}

.module-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.arch-connector {
    width: 100%;
    max-width: 400px;
    height: 40px;
    opacity: 0.5;
}

.connector-path {
    stroke-dasharray: 4 4;
    animation: flowDash 2s linear infinite;
}

@keyframes flowDash {
    to { stroke-dashoffset: -8; }
}

/* ===================================
   FEATURES SECTION
   =================================== */

/* Sales Funnel Stages */
.funnel-stages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 80px;
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow-x: auto;
}

.funnel-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: var(--transition-smooth);
    min-width: 100px;
}

.funnel-stage:hover {
    background: var(--glass-hover);
    transform: translateY(-4px);
    border-color: var(--accent-coral);
}

.funnel-stage.active {
    background: rgba(232, 123, 92, 0.1);
    border-color: var(--accent-coral);
}

.stage-indicator {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--bg-primary);
}

.funnel-stage span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

.funnel-stage.active span {
    color: var(--accent-coral);
    font-weight: 500;
}

.funnel-arrow {
    color: var(--accent-coral);
    font-size: 1.25rem;
    opacity: 0.5;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-block:last-child {
    margin-bottom: 0;
}

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

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

.feature-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 16px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
    margin-bottom: 28px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.feature-check {
    color: var(--accent-coral);
    font-weight: 600;
}

.ai-callout {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
}

.ai-badge {
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.ai-callout p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
}

/* Feature Infographics */
.feature-visual {
    position: relative;
}

/* Lead Infographic */
.infographic-lead {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.lead-sources {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.source-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.source-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1.25rem;
}

.source-icon.linkedin {
    background: rgba(10, 102, 194, 0.2);
    color: #0A66C2;
}

.source-flow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-coral), transparent);
    animation: flowDown 1.5s infinite;
}

@keyframes flowDown {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; transform: scaleY(1); }
}

.enrichment-engine {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

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

.engine-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.enriched-data {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.data-point {
    padding: 12px 20px;
    text-align: center;
}

.data-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.data-value {
    font-family: var(--font-display);
    font-weight: 600;
}

.data-value.score {
    color: var(--accent-coral);
}

/* Routing Infographic */
.infographic-routing {
    padding: 32px;
}

.routing-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.lead-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lead-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--bg-primary);
}

.lead-input span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.routing-ai {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ai-process {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent-coral);
}

.process-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent-coral);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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

.rep-outputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rep-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.rep-card.selected {
    border-color: var(--accent-coral);
    background: rgba(232, 123, 92, 0.05);
}

.rep-avatar {
    width: 36px;
    height: 36px;
    background: var(--glass-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
}

.rep-info {
    display: flex;
    flex-direction: column;
}

.rep-name {
    font-size: 0.85rem;
    font-weight: 500;
}

.rep-match {
    font-size: 0.75rem;
    color: var(--accent-coral);
}

.routing-reasons {
    padding: 16px;
}

.reason-title {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

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

/* Outreach Infographic */
.infographic-outreach {
    padding: 24px;
}

/* AI Voice Agent Card */
.voice-agent-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(232, 123, 92, 0.3);
}

.voice-agent-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.agent-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-coral), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-avatar svg {
    width: 24px;
    height: 24px;
    color: white;
}

.pulse-ring {
    position: absolute;
    inset: -4px;
    border: 2px solid var(--accent-coral);
    border-radius: 50%;
    animation: pulseRing 1.5s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.agent-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.agent-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
}

.agent-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--accent-green);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.voice-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
    margin-bottom: 16px;
    padding: 0 10px;
}

.wave-bar {
    width: 4px;
    height: var(--h);
    background: linear-gradient(to top, var(--accent-coral), var(--accent-orange));
    border-radius: 2px;
    animation: waveAnim 0.8s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; }
.wave-bar:nth-child(9) { animation-delay: 0.8s; }
.wave-bar:nth-child(10) { animation-delay: 0.9s; }

@keyframes waveAnim {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.call-transcript {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 12px 16px;
    border-left: 3px solid var(--accent-coral);
}

.call-transcript p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

.channel-stats {
    display: flex;
    gap: 12px;
}

.channel-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
}

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

.channel-rate {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-coral);
}

.channel-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Demo Infographic */
.infographic-demo {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.demo-readiness {
    display: flex;
    justify-content: center;
}

.readiness-gauge {
    position: relative;
    width: 120px;
    height: 120px;
}

.readiness-gauge svg {
    transform: rotate(-90deg);
}

.gauge-value {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gauge-value .value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
}

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

.demo-actions {
    width: 100%;
    padding: 16px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
}

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

.action-item.priority {
    color: var(--accent-coral);
}

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

.action-time {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Deals Infographic */
.infographic-deals {
    padding: 32px;
}

.deal-pipeline {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.pipeline-stage {
    flex: 1;
    text-align: center;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.pipeline-stage.closing {
    border-color: var(--accent-coral);
    background: rgba(232, 123, 92, 0.05);
}

.stage-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.stage-deals {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
    min-height: 24px;
}

.mini-deal {
    width: 20px;
    height: 20px;
    background: var(--glass-hover);
    border-radius: 4px;
}

.mini-deal.at-risk {
    background: var(--accent-red);
}

.mini-deal.hot {
    background: var(--accent-coral);
}

.stage-value {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
}

.risk-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--accent-red);
}

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

.alert-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.alert-title {
    font-weight: 500;
    font-size: 0.9rem;
}

.alert-reason {
    font-size: 0.8rem;
    color: var(--accent-red);
}

/* Revenue Infographic */
.infographic-revenue {
    padding: 32px;
}

.revenue-chart {
    margin-bottom: 20px;
}

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

.chart-title {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.chart-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.revenue-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 100px;
}

.rev-bar {
    flex: 1;
    height: var(--h);
    background: linear-gradient(to top, rgba(232, 123, 92, 0.2), rgba(229, 154, 111, 0.2));
    border-radius: 4px 4px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 8px;
}

.rev-bar.current {
    background: var(--gradient-primary);
}

.rev-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.upsell-opportunity {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(229, 154, 111, 0.1);
    border-color: var(--accent-purple);
}

.opp-icon {
    font-size: 1.5rem;
}

.opp-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.opp-company {
    font-weight: 500;
}

.opp-value {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--accent-coral);
}

/* ===================================
   AI COPILOT SECTION
   =================================== */

.copilot-section {
    padding: var(--section-padding) 0;
}

.copilot-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.copilot-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(232, 123, 92, 0.08), transparent 50%);
    animation: rotateGlow 20s linear infinite;
}

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

.copilot-content {
    position: relative;
    z-index: 1;
}

.copilot-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.copilot-examples {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.example-prompt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.example-prompt:hover {
    background: var(--glass-hover);
    transform: translateX(8px);
}

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

.example-prompt span:last-child {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.copilot-visual {
    position: relative;
    z-index: 1;
}

.copilot-chat {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chat-message {
    margin-bottom: 16px;
}

.chat-message.user {
    align-self: flex-end;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    padding: 14px 20px;
    border-radius: 16px 16px 4px 16px;
    font-size: 0.95rem;
    max-width: 80%;
}

.chat-message.ai {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ai-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-coral);
}

.ai-avatar svg {
    width: 20px;
    height: 20px;
}

.ai-response {
    flex: 1;
}

.ai-response > p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.deal-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.deal-suggestion {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
}

.deal-priority {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.deal-priority.high {
    background: rgba(239, 68, 68, 0.2);
    color: var(--accent-red);
}

.deal-priority.medium {
    background: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
}

.deal-name {
    font-weight: 500;
}

.deal-reason {
    margin-left: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.chat-input {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-top: auto;
}

.chat-input input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.chat-input input::placeholder {
    color: var(--text-muted);
}

.send-btn {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.send-btn:hover {
    transform: scale(1.05);
}

.send-btn svg {
    width: 18px;
    height: 18px;
    color: var(--bg-primary);
}

/* ===================================
   DASHBOARDS SECTION
   =================================== */

.dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    background: var(--glass-hover);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--bg-primary);
}

.dashboard-panel {
    display: none;
}

.dashboard-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.panel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.panel-card {
    padding: 32px;
    text-align: center;
    transition: var(--transition-smooth);
}

.panel-card:hover {
    transform: translateY(-5px);
    background: var(--glass-hover);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.panel-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.panel-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* NLQ Demo */
.nlq-demo {
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
}

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

.nlq-icon {
    font-size: 1.5rem;
}

.nlq-title {
    font-family: var(--font-display);
    font-weight: 600;
}

.nlq-example {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.nlq-query {
    padding: 16px 20px;
    background: rgba(232, 123, 92, 0.1);
    border-bottom: 1px solid var(--glass-border);
    font-family: var(--font-body);
    color: var(--accent-coral);
}

.nlq-answer {
    padding: 20px;
}

.nlq-answer p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.nlq-answer ul {
    list-style: none;
}

.nlq-answer li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.nlq-answer li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-coral);
}

/* ===================================
   ARCHITECTURE SECTION
   =================================== */

.architecture-section {
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
}

.arch-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.arch-layer {
    width: 100%;
    padding: 32px;
    text-align: center;
}

.arch-layer.highlight {
    background: rgba(232, 123, 92, 0.05);
    border-color: rgba(232, 123, 92, 0.2);
}

.layer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.layer-items {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.layer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

.arch-arrow {
    width: 40px;
    height: 40px;
}

/* Knowledge Graph Visual */
.knowledge-visual {
    position: relative;
    height: 120px;
    width: 220px;
    margin: 0 auto;
}

.node {
    position: absolute;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.node.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-primary);
    color: var(--bg-primary);
    font-weight: 600;
}

.node.n1 { top: 0; left: 0; }
.node.n2 { top: 0; right: 0; }
.node.n3 { bottom: 0; left: 0; }
.node.n4 { bottom: 0; right: 0; }

.connections {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* AI Components */
.ai-components {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ai-component {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.ai-component:hover {
    border-color: var(--accent-coral);
    color: var(--text-primary);
}

.comp-icon {
    font-size: 1.1rem;
}

/* Experience Items */
.experience-items {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.exp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.exp-icon {
    font-size: 1.5rem;
}

.exp-item span:last-child {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===================================
   INTEGRATION SECTION
   =================================== */

.integration-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.integration-hub {
    position: relative;
    width: 400px;
    height: 400px;
}

.hub-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.hub-logo {
    width: 50px;
    height: 50px;
}

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

.integration-spokes {
    position: absolute;
    inset: 0;
}

.spoke {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.spoke::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, var(--glass-border), transparent);
}

.spoke-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.spoke-2 { top: 25%; right: 5%; }
.spoke-3 { bottom: 25%; right: 5%; }
.spoke-4 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.spoke-5 { bottom: 25%; left: 5%; }
.spoke-6 { top: 25%; left: 5%; }

.spoke-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.spoke-icon:hover {
    transform: scale(1.1);
    border-color: var(--accent-coral);
}

.spoke-icon.hubspot {
    border-color: #FF7A59;
    color: #FF7A59;
}

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

.integration-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 900px;
}

.int-feature {
    padding: 32px;
    text-align: center;
    transition: var(--transition-smooth);
}

.int-feature:hover {
    transform: translateY(-5px);
}

.int-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.int-feature h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.int-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===================================
   WHY SECTION
   =================================== */

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

.why-card {
    padding: 32px;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    background: var(--glass-hover);
}

.why-card:hover .why-icon-wrapper {
    transform: scale(1.1);
}

.why-card:hover .why-icon-wrapper svg {
    filter: drop-shadow(0 4px 12px rgba(232, 123, 92, 0.4));
}

.why-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    position: relative;
}

.why-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle, rgba(232, 123, 92, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon-wrapper::before {
    opacity: 1;
}

.why-icon-wrapper svg {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.why-icon-wrapper.brain-icon svg {
    animation: float 3s ease-in-out infinite;
}

.why-icon-wrapper.lightning-icon svg {
    animation: pulse 2s ease-in-out infinite;
}

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

.why-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: var(--section-padding) 0;
}

.cta-wrapper {
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 123, 92, 0.1), transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h5 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 28px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .dashboard-preview {
        max-width: 100%;
        height: 560px;
    }
    
    .dash-sidebar-full {
        width: 140px;
    }
    
    .metrics-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-block.reverse {
        direction: ltr;
    }
    
    .copilot-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .arch-modules {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .panel-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-features {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .navbar {
        width: calc(100% - 40px);
        top: 16px;
    }
    
    .hero {
        padding: 140px 24px 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metric-row {
        grid-template-columns: 1fr;
    }
    
    .funnel-stages {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .funnel-arrow {
        display: none;
    }
    
    .funnel-stage {
        min-width: calc(33% - 12px);
    }
    
    .cta-wrapper {
        padding: 40px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-hub {
        width: 280px;
        height: 280px;
    }
    
    .experience-items {
        flex-direction: column;
    }
    
    .dashboard-tabs {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    /* Dashboard responsive */
    .dash-sidebar-full {
        display: none;
    }
    
    .dashboard-preview {
        height: 500px;
    }
    
    .workflow-panel {
        display: none;
    }
    
    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .metric-box {
        padding: 8px;
    }
    
    .metric-val {
        font-size: 0.8rem;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .data-table-panel {
        display: none;
    }
    
    .dash-page-title h2 {
        font-size: 0.9rem;
    }
    
    .title-actions {
        display: none;
    }
    
    .lead-sources {
        flex-direction: column;
        align-items: center;
    }
    
    .enriched-data {
        flex-direction: column;
    }
    
    .channel-stats {
        flex-direction: column;
    }
    
    .deal-pipeline {
        flex-direction: column;
    }
    
    .pipeline-stage {
        width: 100%;
    }
    
    .routing-flow {
        flex-direction: column;
        gap: 20px;
    }
}

/* ===================================
   GOOGLE FORM MODAL STYLES
   =================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

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

.modal-container {
    width: 100%;
    max-width: 700px;
    height: 90vh;
    max-height: 800px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-glass));
    -webkit-backdrop-filter: blur(var(--blur-glass));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: var(--accent-red);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.modal-close:hover svg {
    color: var(--accent-red);
}

/* Trial Form Modal */
.trial-modal {
    max-width: 520px;
    height: auto;
    max-height: 90vh;
    padding: 0;
}

.trial-form-wrapper {
    padding: 40px;
    overflow-y: auto;
}

.trial-form-header {
    text-align: center;
    margin-bottom: 32px;
}

.trial-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.trial-logo svg {
    width: 100%;
    height: 100%;
}

.trial-form-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.trial-form-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.trial-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-coral);
    background: rgba(232, 123, 92, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--text-primary);
}

.checkbox-group {
    margin-top: 4px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--glass-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-coral);
    border-color: var(--accent-coral);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-label a {
    color: var(--accent-coral);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.trial-form-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.trial-form-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Success State */
.trial-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.trial-success h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.trial-success p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.trial-success .btn {
    padding: 14px 32px;
}

@media (max-width: 600px) {
    .trial-form-wrapper {
        padding: 28px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .trial-form-header h2 {
        font-size: 1.5rem;
    }
}

/* Loading state for iframe */
.google-form-wrapper::before {
    content: 'Loading form...';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 0.9rem;
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-container {
        max-width: 100%;
        height: 95vh;
        border-radius: 20px 20px 0 0;
        margin-top: auto;
    }
    
    .google-form-wrapper {
        border-radius: 20px 20px 0 0;
    }
    
    .google-form-wrapper iframe {
        border-radius: 20px 20px 0 0;
    }
}

/* ===================================
   ANIMATIONS ON SCROLL
   =================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

