/* ============================================
   AI SECTIONS STYLES
   Matching phylo-tau.vercel.app/ai
   ============================================ */

/* ============================================
   ANIMATED SALES PITCH VIDEO
   ============================================ */

.sales-pitch-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #03040a, #0a0d14, #050810);
    position: relative;
    overflow: hidden;
}

.pitch-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.pitch-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pitch-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 9999px;
    font-size: 0.8rem;
    color: #a78bfa;
    margin-bottom: 1rem;
}

.pitch-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
}

.pitch-player {
    background: rgba(10, 10, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.pitch-screen {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

/* Scene Styles */
.pitch-scene {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    opacity: 0;
    transform: translateX(50px);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pitch-scene.scene-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.pitch-scene.scene-exit {
    opacity: 0;
    transform: translateX(-50px);
}

.scene-content {
    text-align: center;
    max-width: 600px;
}

.scene-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounceIn 0.5s ease-out;
}

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

.scene-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.scene-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.scene-content .highlight {
    color: #a78bfa;
    font-weight: 600;
}

.scene-subtitle {
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-style: italic;
}

/* Scene Visual Elements */
.scene-visual {
    margin: 1.5rem 0;
}

/* Scene 1: System Icons */
.system-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.sys-icon {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 0.5s ease-out backwards;
}

.sys-icon:nth-child(1) { animation-delay: 0.1s; }
.sys-icon:nth-child(2) { animation-delay: 0.15s; }
.sys-icon:nth-child(3) { animation-delay: 0.2s; }
.sys-icon:nth-child(4) { animation-delay: 0.25s; }
.sys-icon:nth-child(5) { animation-delay: 0.3s; }
.sys-icon:nth-child(6) { animation-delay: 0.35s; }
.sys-icon:nth-child(7) { animation-delay: 0.4s; }
.sys-icon:nth-child(8) { animation-delay: 0.45s; }

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

/* Scene 2: Plug Animation */
.plug-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.existing-stack {
    text-align: center;
}

.existing-stack span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 0.5rem;
}

.stack-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stack-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.plug-connector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plug-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.3), rgba(124, 58, 237, 1));
    animation: pulseLine 1.5s ease-in-out infinite;
}

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

.plug-icon {
    font-size: 1.5rem;
    animation: pulse 1s ease-in-out infinite;
}

.phylo-badge {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 0.75rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

/* Scene 3: Unification Visual */
.unification-visual {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.data-streams {
    position: absolute;
    inset: 0;
}

.stream {
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, rgba(124, 58, 237, 0), rgba(124, 58, 237, 1));
    animation: streamFlow 2s ease-in-out infinite;
}

.stream-1 { left: 20%; top: 0; height: 50%; transform-origin: bottom center; animation-delay: 0s; }
.stream-2 { right: 20%; top: 0; height: 50%; transform-origin: bottom center; animation-delay: 0.5s; }
.stream-3 { left: 0; top: 40%; width: 50%; height: 3px; transform-origin: right center; animation-delay: 0.25s; }
.stream-4 { right: 0; top: 40%; width: 50%; height: 3px; transform-origin: left center; animation-delay: 0.75s; }

@keyframes streamFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.unified-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.5);
    animation: corePulse 2s ease-in-out infinite;
}

@keyframes corePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 60px rgba(124, 58, 237, 0.5); }
    50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 80px rgba(124, 58, 237, 0.7); }
}

/* Scene 4: Dashboard Preview */
.dashboard-preview {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    min-width: 120px;
    text-align: left;
    animation: fadeInUp 0.5s ease-out backwards;
}

.kpi-card.kpi-1 { animation-delay: 0.1s; }
.kpi-card.kpi-2 { animation-delay: 0.2s; }
.kpi-card.kpi-3 { animation-delay: 0.3s; }

.kpi-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.kpi-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.kpi-trend {
    display: block;
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

.kpi-trend.positive { color: #22c55e; }
.kpi-trend.negative { color: #ef4444; }

/* Scene 5: Insight Bubbles */
.insight-bubbles {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

.insight-bubble {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    text-align: left;
    animation: slideInRight 0.5s ease-out backwards;
}

.bubble-1 { animation-delay: 0.1s; }
.bubble-2 { animation-delay: 0.3s; }
.bubble-3 { animation-delay: 0.5s; }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.bubble-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.insight-bubble span:last-child {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Scene 6: Co-Pilot Alerts */
.copilot-alerts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 350px;
    margin: 0 auto;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    animation: fadeInUp 0.5s ease-out backwards;
}

.alert-1 { background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.3); animation-delay: 0.1s; }
.alert-2 { background: rgba(251, 191, 36, 0.15); border: 1px solid rgba(251, 191, 36, 0.3); animation-delay: 0.3s; }
.alert-3 { background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.3); animation-delay: 0.5s; }

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

.alert-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Scene 7: CTA */
.scene-cta {
    padding: 2rem 0;
}

.scene-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.pitch-btn-primary {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.pitch-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.pitch-btn-secondary {
    padding: 0.875rem 2rem;
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pitch-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Pitch Controls */
.pitch-controls {
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pitch-progress {
    flex: 1;
}

.progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #a855f7);
    width: 14.28%;
    transition: width 0.3s ease;
}

.progress-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

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

.progress-dot.active {
    background: #a78bfa;
    transform: scale(1.2);
}

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

.pitch-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pitch-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pitch-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.pitch-play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pitch-play-btn:hover {
    transform: scale(1.1);
}

.pitch-play-btn .pause-icon {
    display: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.pitch-play-btn.playing .play-icon {
    display: none;
}

.pitch-play-btn.playing .pause-icon {
    display: block;
}

/* Responsive */
@media (max-width: 640px) {
    .pitch-screen {
        min-height: 450px;
    }
    
    .pitch-scene {
        padding: 2rem 1.5rem;
    }
    
    .scene-icon {
        font-size: 2.5rem;
    }
    
    .scene-content h3 {
        font-size: 1.4rem;
    }
    
    .scene-content p {
        font-size: 1rem;
    }
    
    .system-icons {
        gap: 0.5rem;
    }
    
    .sys-icon {
        font-size: 0.65rem;
        padding: 0.4rem 0.6rem;
    }
    
    .plug-animation {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .plug-connector {
        transform: rotate(90deg);
    }
    
    .dashboard-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .kpi-card {
        width: 100%;
        max-width: 200px;
    }
    
    .pitch-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pitch-progress {
        width: 100%;
    }
}

/* Section 1: Value Proposition */
.value-prop-section {
    padding: 12rem 0;
    background: linear-gradient(to bottom, #070a0f, #0d1120, #070a0f);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.scroll-highlight-text {
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 400;
}

.scroll-highlight-text .highlight-word {
    display: inline-block;
    margin: 0 0.15em;
    color: rgba(156, 163, 175, 0.35);
    transition: color 0.15s ease-out, opacity 0.15s ease-out;
    will-change: color, opacity;
}

.scroll-highlight-text .highlight-word.active {
    color: #ffffff;
    opacity: 1;
}

/* Section 2: Immersive Experience */
.immersive-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #03040a, #070a12, #06030f);
}

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

.immersive-bg::before {
    content: '';
    position: absolute;
    top: -10rem;
    left: 50%;
    transform: translateX(-50%);
    width: 38rem;
    height: 38rem;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.45), transparent 60%);
    filter: blur(48px);
}

.immersive-bg::after {
    content: '';
    position: absolute;
    bottom: -18rem;
    right: -12rem;
    width: 32rem;
    height: 32rem;
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.35), transparent 65%);
    filter: blur(48px);
}

.immersive-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.immersive-header h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.immersive-header p {
    font-size: 1.125rem;
    color: rgba(212, 212, 216, 0.85);
}

.immersive-visual {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.mockup-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 38rem;
    height: 38rem;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.45), transparent 70%);
    filter: blur(48px);
    z-index: 0;
}

.ai-mockup-container {
    position: relative;
    z-index: 1;
}

.ai-mockup-placeholder {
    width: min(92vw, 560px);
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.mockup-icon {
    font-size: 4rem;
}

.ai-mockup-placeholder p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Immersive Visual Container - Desktop Layout */
.immersive-visual-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 700px;
    margin: 0 auto;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    z-index: 10;
}

.phone-frame {
    width: 280px;
    background: linear-gradient(145deg, #1a1a2e, #16162a);
    border-radius: 2.5rem;
    padding: 0.75rem;
    border: 3px solid #2a2a40;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-notch {
    width: 100px;
    height: 25px;
    background: #0a0a0f;
    border-radius: 0 0 1rem 1rem;
    margin: 0 auto 0.5rem;
}

.phone-screen {
    background: linear-gradient(180deg, #0d1b2a, #1b263b);
    border-radius: 1.75rem;
    padding: 1rem;
    min-height: 480px;
}

.phone-screen-centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Phone Logo Animation */
.phone-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
}

.phone-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    z-index: 10;
    text-shadow: 0 0 30px rgba(14, 165, 233, 0.5);
}

.phone-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(14, 165, 233, 0.3);
    animation: pulse-ring 3s ease-out infinite;
}

.phone-ring-1 {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.phone-ring-2 {
    width: 130px;
    height: 130px;
    animation-delay: 0.5s;
}

.phone-ring-3 {
    width: 180px;
    height: 180px;
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
        border-color: rgba(14, 165, 233, 0.6);
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
        border-color: rgba(14, 165, 233, 0);
    }
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.phone-menu {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
}

.phone-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phone-roi-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    position: relative;
}

.roi-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0.25rem;
}

.roi-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.roi-avatar {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    background: #06b6d4;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-insight {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.875rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.insight-heading {
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem;
}

.insight-highlights {
    margin: 0.75rem 0 0.5rem;
    font-weight: 500;
}

.phone-insight ul {
    margin: 0;
    padding-left: 1rem;
}

.phone-insight li {
    margin-bottom: 0.25rem;
}

.phone-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.75rem 1rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.send-icon {
    color: #06b6d4;
}

/* Positioned Alert Cards - overlapping phone */
.immersive-card {
    position: absolute;
    max-width: 340px;
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.85;
}

.immersive-card:hover {
    opacity: 1;
}

.card-top-left {
    top: 8%;
    left: 8%;
    transform: translateX(0);
}

.card-top-right {
    top: 5%;
    right: 8%;
    transform: translateX(0);
}

.card-bottom-left {
    bottom: 20%;
    left: 5%;
    transform: translateX(0);
}

.card-bottom-right {
    bottom: 8%;
    right: 5%;
    transform: translateX(0);
}

/* Card Animation Highlight Effect */
.immersive-card.highlight {
    transform: scale(1.08);
    z-index: 20;
    opacity: 1;
}

.immersive-card.highlight[data-card="sales"] {
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 1), 0 0 40px rgba(14, 165, 233, 0.4), 0 0 80px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 1);
}

.immersive-card.highlight[data-card="marketing"] {
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 1), 0 0 40px rgba(34, 197, 94, 0.4), 0 0 80px rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 1);
}

.immersive-card.highlight[data-card="finance"] {
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 1), 0 0 40px rgba(251, 191, 36, 0.4), 0 0 80px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 1);
}

.immersive-card.highlight[data-card="ops"] {
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 1), 0 0 40px rgba(249, 115, 22, 0.4), 0 0 80px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 1);
}

/* Smart Alerts Grid - Mobile (hidden on desktop, shown on mobile <1100px) */
.smart-alerts-mobile {
    display: none !important;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.smart-alert-card {
    display: flex;
    gap: 0;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.smart-alert-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
}

.alert-bar {
    width: 6px;
    flex-shrink: 0;
}

.alert-bar.bg-sky { background: #38bdf8; }
.alert-bar.bg-green { background: #22c55e; }
.alert-bar.bg-yellow { background: #fbbf24; }
.alert-bar.bg-orange { background: #fb923c; }

.alert-content {
    flex: 1;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.alert-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.alert-text {
    flex: 1;
}

.alert-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 0.375rem;
}

.alert-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.alert-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.alert-cta:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.alert-cta span {
    color: rgba(255, 255, 255, 0.6);
}

/* Section 3: Deep Ops */
.deep-ops-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background: #080020;
}

.deep-ops-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #0a1628, #0d1b35, #0a1628);
}

.deep-ops-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15), transparent 50%);
}

.deep-ops-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.deep-ops-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
}

.text-blue {
    color: #60a5fa;
}

/* Tabs */
.ops-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.ops-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ops-tab:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.ops-tab.active {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Ops Content */
.ops-content {
    position: relative;
    z-index: 1;
}

.ops-panel {
    display: none;
}

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

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

.ops-panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ops-icon {
    font-size: 2rem;
}

.ops-panel-header h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
}

.ops-subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.ops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ops-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(16px);
}

.ops-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.ops-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ops-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.ops-card ul li::before {
    content: '•';
    color: #60a5fa;
    font-weight: bold;
    margin-top: 0.1em;
}

.ops-insight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(16px);
}

.insight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.insight-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-bottom: 0.5rem;
}

.ops-insight p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Section 4: Smart Insights */
.smart-insights-new-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #090d16, #080a12, #05070c);
}

.smart-insights-bg {
    position: absolute;
    inset: 0;
}

.smart-insights-bg::before {
    content: '';
    position: absolute;
    top: -9rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26rem;
    height: 26rem;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.35), transparent 60%);
    filter: blur(48px);
}

.section-header.centered {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.header-icon span {
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.6));
}

.header-icon h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.section-header.centered p {
    color: rgba(212, 212, 216, 0.85);
    font-size: 1.125rem;
}

/* Infinite Scroll */
.insights-scroll-container {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
}

.insights-scroll-track {
    display: flex;
    gap: 1rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

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

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

.insight-card-new {
    flex-shrink: 0;
    width: 320px;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(16px);
    cursor: pointer;
    transition: all 0.3s ease;
}

.insight-card-new:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.insight-emoji {
    font-size: 1.875rem;
    flex-shrink: 0;
}

.insight-card-new p {
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Section 5: System Integrations */
.system-integrations-section {
    position: relative;
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.integrations-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #0a0a0f, #0d0d15, #0a0a0f);
}

.integrations-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 50%;
    filter: blur(48px);
}

.integrations-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 50%;
    filter: blur(48px);
}

.system-integrations-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.system-integrations-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.system-integrations-section .section-header p {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
}

.integrations-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.integration-category-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.integration-category-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.integration-category-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.integration-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.integration-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.integration-icon-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    transform: scale(1.05);
}

.icon-box {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.integration-icon-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.icon-box span {
    font-size: 1.5rem;
}

.integration-icon-card h4 {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 0;
    transition: color 0.3s ease;
}

.integration-icon-card:hover h4 {
    color: #ffffff;
}

/* Section 6: What-If Scenarios */
.what-if-new-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.what-if-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #0a0e1a, #0d1120, #0f1525, #0a0e1a);
}

.what-if-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.4), rgba(13, 17, 32, 0.6), rgba(10, 22, 40, 0.5), rgba(15, 26, 46, 0.4));
}

.what-if-bg::after {
    content: '';
    position: absolute;
    top: -9rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26rem;
    height: 26rem;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.4), transparent 60%);
    filter: blur(48px);
}

.what-if-new-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.target-icon {
    font-size: 2rem;
}

.what-if-new-section .section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.what-if-new-section .section-header p {
    color: rgba(212, 212, 216, 0.85);
    font-size: 1rem;
    max-width: 700px;
    margin: 1rem auto 0;
}

.scenarios-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.scenario-card-new {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(16px);
    transition: all 0.5s ease;
    cursor: pointer;
}

.scenario-card-new:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.scenario-card-new::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.scenario-card-new:hover::before {
    opacity: 0.2;
}

.scenario-card-new.price-impact::before { background: linear-gradient(135deg, #f97316, #f43f5e, #8b5cf6); }
.scenario-card-new.operations::before { background: linear-gradient(135deg, #f97316, #f43f5e, #8b5cf6); }
.scenario-card-new.weather::before { background: linear-gradient(135deg, #22d3ee, #0ea5e9, #818cf8); }
.scenario-card-new.growth::before { background: linear-gradient(135deg, #7c3aed, #6366f1, #06b6d4); }
.scenario-card-new.risk::before { background: linear-gradient(135deg, #f472b6, #a855f7, #6366f1); }
.scenario-card-new.efficiency::before { background: linear-gradient(135deg, #34d399, #10b981, #22d3ee); }
.scenario-card-new.revenue::before { background: linear-gradient(135deg, #34d399, #10b981, #22d3ee); }
.scenario-card-new.demand::before { background: linear-gradient(135deg, #f472b6, #a855f7, #6366f1); }

.scenario-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.scenario-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.scenario-emoji {
    font-size: 1.5rem;
}

.scenario-card-new h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.scenario-card-new p {
    font-size: 0.875rem;
    color: rgba(212, 212, 216, 0.85);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Section 7: Bottom Line CTA */
.bottom-line-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.bottom-line-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #070a0f, #0d1120, #070a0f);
}

.bottom-line-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40rem;
    height: 40rem;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.2), transparent 60%);
    filter: blur(80px);
}

.bottom-line-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.bottom-line-content h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 1rem;
}

/* Margin Impact Chart */
.margin-impact-chart {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.chart-container {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(16px);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.chart-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.chart-legend {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.legend-color {
    width: 12px;
    height: 3px;
    border-radius: 2px;
}

.legend-color.sales {
    background: #3b82f6;
}

.legend-color.costs {
    background: #ef4444;
}

.legend-color.margin {
    background: #22c55e;
    height: 4px;
}

.chart-area {
    position: relative;
}

.chart-lines {
    height: 250px;
    position: relative;
    overflow: visible;
}

.grid-lines {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grid-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.inflection-marker {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    z-index: 10;
}

.inflection-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(124, 58, 237, 0), rgba(124, 58, 237, 1), rgba(124, 58, 237, 0));
    animation: pulseInflection 2s ease-in-out infinite;
}

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

.inflection-label {
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    padding: 0.4rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.inflection-icon {
    font-size: 0.8rem;
}

.chart-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.line-sales {
    stroke: #3b82f6;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
    animation-delay: 0.3s;
}

.line-costs {
    stroke: #ef4444;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
    animation-delay: 0.5s;
}

.line-margin {
    stroke: #22c55e;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2.5s ease-out forwards;
    animation-delay: 0.7s;
}

.area-margin {
    opacity: 0;
    animation: fadeInArea 1s ease-out forwards;
    animation-delay: 2s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInArea {
    to {
        opacity: 1;
    }
}

.x-axis {
    display: none;
}

.chart-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

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

.stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-positive .stat-value {
    color: #22c55e;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive for chart */
@media (max-width: 640px) {
    .chart-container {
        padding: 1.25rem;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chart-legend {
        gap: 1rem;
    }
    
    .chart-lines {
        height: 200px;
    }
    
    .y-axis {
        font-size: 0.6rem;
        min-width: 30px;
    }
    
    .inflection-label {
        font-size: 0.6rem;
        padding: 0.3rem 0.5rem;
    }
    
    .chart-stats {
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

.final-cta-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    backdrop-filter: blur(16px);
    position: relative;
    z-index: 1;
}

.final-cta-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.final-cta-section p {
    color: rgba(212, 212, 216, 0.85);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons-new {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: #ffffff;
    color: #000000;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #f4f4f5;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Desktop: Show visual container with phone and positioned cards */
/* Mobile: Show stacked cards */
@media (min-width: 1100px) {
    .immersive-visual-container {
        display: flex !important;
    }
    
    .smart-alerts-mobile {
        display: none !important;
    }
}

@media (max-width: 1099px) {
    .immersive-visual-container {
        display: none !important;
    }
    
    .smart-alerts-mobile {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .ops-tabs {
        gap: 0.5rem;
    }
    
    .ops-tab {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .ops-panel-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .scenarios-grid-new {
        grid-template-columns: 1fr;
    }
    
    .integrations-grid-new {
        grid-template-columns: 1fr;
    }
    
    .integration-icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .phone-frame {
        width: 240px;
    }
    
    .phone-screen {
        min-height: 400px;
    }
}

