/* ==========================================================================
   MENETALK AI OUTBOUND DIALER - MODERN HIGH-TECH DESIGN SYSTEM
   Theme: Luxury Cyber-Gold & Dark Glassmorphism with Smooth Micro-Animations
   ========================================================================== */

:root {
    --ob-gold: #F4DB00;
    --ob-orange: #FF9E00;
    --ob-emerald: #10B981;
    --ob-cyan: #06B6D4;
    --ob-purple: #8B5CF6;
    --ob-blue: #3B82F6;
    
    --ob-grad: linear-gradient(135deg, #F4DB00 0%, #FF9E00 100%);
    --ob-grad-subtle: linear-gradient(135deg, rgba(244, 219, 0, 0.12) 0%, rgba(255, 158, 0, 0.04) 100%);
    --ob-grad-emerald: linear-gradient(135deg, #10B981 0%, #059669 100%);
    
    --ob-dark-bg: #06080e;
    --ob-card-bg: rgba(13, 19, 33, 0.72);
    --ob-card-bg-hover: rgba(18, 26, 46, 0.88);
    --ob-card-border: rgba(244, 219, 0, 0.18);
    --ob-card-border-light: rgba(255, 255, 255, 0.08);
    --ob-glow: 0 0 35px rgba(244, 219, 0, 0.22);
    
    --ob-radius-xl: 24px;
    --ob-radius-lg: 18px;
    --ob-radius-md: 12px;
}

body {
    background-color: var(--ob-dark-bg);
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* ==========================================================================
   AMBIENT GLOWING ORBS (FLOATING BACKGROUND ATMOSPHERE)
   ========================================================================== */
.ob-ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.45;
}

.orb-1 {
    top: 5%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(244, 219, 0, 0.25) 0%, transparent 70%);
    animation: orbDrift1 12s ease-in-out infinite alternate;
}

.orb-2 {
    top: 25%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 158, 0, 0.2) 0%, transparent 70%);
    animation: orbDrift2 15s ease-in-out infinite alternate;
}

.orb-3 {
    top: 50%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    animation: orbDrift1 14s ease-in-out infinite alternate;
}

.orb-4 {
    top: 75%;
    right: 5%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(244, 219, 0, 0.18) 0%, transparent 70%);
    animation: orbDrift2 16s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 40px) scale(1.15); }
}

@keyframes orbDrift2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, -50px) scale(1.1); }
}

/* ==========================================================================
   GLOBAL SECTION STYLING & HEADERS
   ========================================================================== */
.ob-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 2;
}

.ob-section-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}

.ob-section-header h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.ob-header-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #94a3b8;
    margin: 0 auto;
}

/* BADGES */
.ob-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(244, 219, 0, 0.1);
    border: 1px solid rgba(244, 219, 0, 0.35);
    color: #F4DB00;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(244, 219, 0, 0.15);
    backdrop-filter: blur(8px);
}

.gradient-text {
    background: var(--ob-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* BUTTONS */
.ob-btn-primary {
    position: relative;
    background: var(--ob-grad) !important;
    color: #000000 !important;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 4px 25px rgba(244, 219, 0, 0.4);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.ob-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(244, 219, 0, 0.6);
    color: #000000 !important;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: btnShineAnim 4s infinite ease-in-out;
}

@keyframes btnShineAnim {
    0%, 70% { left: -100%; }
    100% { left: 200%; }
}

.ob-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    padding: 15px 28px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.ob-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(244, 219, 0, 0.5);
    transform: translateY(-2px);
    color: #ffffff !important;
}

.ob-btn-lg {
    padding: 18px 40px;
    font-size: 1.12rem;
    border-radius: 16px;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.ob-hero {
    position: relative;
    padding: 175px 0 110px;
    background: radial-gradient(circle at 50% 10%, rgba(244, 219, 0, 0.12) 0%, rgba(6, 8, 14, 0.98) 75%);
    overflow: hidden;
    border-bottom: 1px solid var(--ob-card-border);
}

.ob-hero-bg-grid {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(244, 219, 0, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 219, 0, 0.035) 1px, transparent 1px);
    background-size: 45px 45px;
    pointer-events: none;
    opacity: 0.7;
}

.ob-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.ob-live-ticker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    font-size: 0.82rem;
    color: #a7f3d0;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
    animation: livePulse 1.5s infinite;
}

.pulse-dot-sm {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px #10B981; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.ob-hero h1 {
    font-size: clamp(2.5rem, 4.4vw, 4rem);
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
}

.ob-hero-subtitle {
    font-size: 1.18rem;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 35px;
    max-width: 620px;
}

.ob-hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 45px;
}

.ob-hero-stats-row {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    flex-wrap: wrap;
}

.ob-stat-mini {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ob-stat-mini .stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(244, 219, 0, 0.1);
    border: 1px solid rgba(244, 219, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F4DB00;
    font-size: 1.1rem;
}

.ob-stat-mini strong {
    display: block;
    font-size: 1.6rem;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
}

.ob-stat-mini span {
    font-size: 0.82rem;
    color: #94a3b8;
    font-weight: 500;
}

/* ==========================================================================
   2. GRAPHICAL SIMULTANEOUS CALL MATRIX DASHBOARD (HERO RIGHT VISUAL)
   ========================================================================== */
.ob-graph-matrix-card {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(16, 22, 38, 0.96) 0%, rgba(9, 13, 24, 0.98) 100%);
    border: 1.5px solid rgba(244, 219, 0, 0.35);
    border-radius: 24px;
    padding: 24px 22px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.75), 0 0 40px rgba(244, 219, 0, 0.12);
    backdrop-filter: blur(16px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ob-graph-matrix-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 50px rgba(244, 219, 0, 0.18);
    border-color: rgba(244, 219, 0, 0.5);
}

/* 1. Top Dashboard Status Bar */
.matrix-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 12px;
}

.matrix-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.matrix-icon-dot {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(244, 219, 0, 0.12);
    border: 1px solid rgba(244, 219, 0, 0.35);
    color: #F4DB00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(244, 219, 0, 0.2);
}

.matrix-tag {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #F4DB00;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.matrix-title {
    font-size: 1.05rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.matrix-live-pill {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.matrix-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 8px #10B981;
    animation: livePulse 1.5s infinite;
}

/* 2. Graphical Flow Pipeline Strip */
.matrix-flow-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 18px;
}

.flow-node {
    text-align: center;
    flex: 1;
}

.fn-lbl {
    display: block;
    font-size: 0.68rem;
    color: #94a3b8;
    margin-bottom: 2px;
}

.fn-val {
    font-size: 0.88rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
}

.fn-gold { color: #F4DB00; }
.fn-green { color: #34d399; }

.flow-node.fn-active {
    background: rgba(244, 219, 0, 0.1);
    border: 1px solid rgba(244, 219, 0, 0.25);
    border-radius: 10px;
    padding: 4px 8px;
}

.flow-beam-arrow {
    color: rgba(244, 219, 0, 0.5);
    font-size: 0.8rem;
    padding: 0 6px;
    position: relative;
    animation: arrowFlow 2s infinite ease-in-out alternate;
}

@keyframes arrowFlow {
    0% { transform: translateX(-2px); opacity: 0.4; }
    100% { transform: translateX(2px); opacity: 1; color: #F4DB00; }
}

/* 3. Live Simultaneous Channels Grid */
.matrix-channels-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.matrix-channel-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease;
}

.matrix-channel-item:hover {
    background: rgba(244, 219, 0, 0.05);
    border-color: rgba(244, 219, 0, 0.35);
    transform: translateX(4px);
}

.ch-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.ch-avatar {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.av-green {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
}

.av-gold {
    background: rgba(244, 219, 0, 0.15);
    border: 1px solid rgba(244, 219, 0, 0.35);
    color: #F4DB00;
}

.av-purple {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.35);
    color: #c4b5fd;
}

.av-cyan {
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.35);
    color: #67e8f9;
}

.ch-info {
    min-width: 0;
}

.ch-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ch-role {
    font-size: 0.72rem;
    font-weight: 500;
    color: #94a3b8;
}

.ch-status {
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.status-booked { color: #34d399; }
.status-qualifying { color: #F4DB00; }
.status-crm { color: #c4b5fd; }
.status-transfer { color: #67e8f9; }

.ch-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.ch-timer {
    font-size: 0.78rem;
    font-weight: 700;
    color: #F4DB00;
    font-family: 'Space Grotesk', sans-serif;
}

.ch-wave {
    display: flex;
    align-items: center;
    gap: 2.5px;
    height: 14px;
}

.ch-wave span {
    width: 2.5px;
    height: 4px;
    background: var(--ob-grad);
    border-radius: 2px;
    animation: chWaveAnim 1.1s infinite ease-in-out alternate;
}

.ch-wave span:nth-child(2) { animation-delay: 0.2s; }
.ch-wave span:nth-child(3) { animation-delay: 0.4s; }
.ch-wave span:nth-child(4) { animation-delay: 0.6s; }

@keyframes chWaveAnim {
    0% { height: 3px; }
    100% { height: 13px; }
}

.ch-wave.done {
    color: #c4b5fd;
    font-size: 0.85rem;
}

/* 4. Graphical Bottom Telemetry Strip */
.matrix-footer-telemetry {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #cbd5e1;
    flex-wrap: wrap;
    gap: 8px;
}

.tele-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tele-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 6px #10B981;
}

.tele-divider {
    width: 1px;
    height: 12px;
    background: rgba(255, 255, 255, 0.12);
}

/* Mobile Adjustments for Matrix Card */
@media (max-width: 576px) {
    .ob-graph-matrix-card {
        padding: 16px 14px;
    }
    
    .matrix-title {
        font-size: 0.95rem;
    }
    
    .matrix-channel-item {
        padding: 8px 10px;
    }
    
    .ch-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .ch-name {
        font-size: 0.8rem;
    }
    
    .ch-status {
        font-size: 0.68rem;
    }
    
    .matrix-footer-telemetry {
        font-size: 0.7rem;
        padding: 8px 10px;
    }
    
    .tele-item:nth-child(3) {
        display: none;
    }
}

/* ==========================================================================
   2. PIPELINE & LEAD FLOW SECTION
   ========================================================================== */
.ob-pipeline-section {
    background: rgba(10, 14, 24, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ob-pipeline-wrapper {
    background: linear-gradient(180deg, rgba(14, 20, 34, 0.9) 0%, rgba(9, 13, 22, 0.95) 100%);
    border: 1px solid var(--ob-card-border);
    border-radius: var(--ob-radius-xl);
    padding: 35px 30px 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(244, 219, 0, 0.08);
}

.ob-pipeline-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 15px;
}

.pipe-bar-title {
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pipe-bar-title i {
    color: #F4DB00;
}

.pipe-bar-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #a7f3d0;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ob-pipeline-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
}

.ob-pipe-step {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 22px 14px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ob-pipe-step:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 219, 0, 0.45);
    background: rgba(244, 219, 0, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(244, 219, 0, 0.15);
}

.pipe-step-num {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.pipe-step-num.highlight-num {
    color: #000000;
    background: var(--ob-grad);
    font-weight: 900;
}

.ob-pipe-step.highlight-pipe {
    border-color: rgba(244, 219, 0, 0.55);
    background: linear-gradient(180deg, rgba(244, 219, 0, 0.12) 0%, rgba(255, 158, 0, 0.04) 100%);
    box-shadow: 0 10px 30px rgba(244, 219, 0, 0.18);
}

.ob-pipe-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(244, 219, 0, 0.12);
    color: #F4DB00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 12px;
    border: 1px solid rgba(244, 219, 0, 0.3);
    transition: transform 0.3s ease;
}

.ob-pipe-step:hover .ob-pipe-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--ob-grad);
    color: #000000;
}

.ob-pipe-step strong {
    display: block;
    color: #ffffff;
    font-size: 0.96rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.25;
}

.ob-pipe-step p {
    font-size: 0.76rem;
    color: #94a3b8;
    line-height: 1.45;
    margin-bottom: 12px;
    flex-grow: 1;
}

.pipe-tag {
    font-size: 0.68rem;
    font-weight: 700;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.pipe-tag.highlight-tag {
    background: rgba(244, 219, 0, 0.2);
    border: 1px solid rgba(244, 219, 0, 0.4);
    color: #F4DB00;
}

/* Pipeline Connectors & Flowing Particles */
.ob-pipe-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 32px;
    flex-shrink: 0;
    position: relative;
}

.pipe-line {
    width: 100%;
    height: 2px;
    background: rgba(244, 219, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.flow-particle {
    position: absolute;
    top: -2px;
    left: 0;
    width: 14px;
    height: 6px;
    background: #F4DB00;
    border-radius: 3px;
    box-shadow: 0 0 10px #F4DB00;
    animation: flowAcross 2.2s infinite linear;
}

@keyframes flowAcross {
    0% { left: -30%; opacity: 0; }
    30% { opacity: 1; }
    70% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.pipe-arrow-icon {
    color: #F4DB00;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 4px;
}

/* ==========================================================================
   3. HOW IT WORKS (5 STEPS GRID)
   ========================================================================== */
.ob-5steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ob-5step-card {
    background: var(--ob-card-bg);
    border: 1px solid var(--ob-card-border-light);
    border-radius: var(--ob-radius-xl);
    padding: 32px 24px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.ob-5step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 219, 0, 0.45);
    background: var(--ob-card-bg-hover);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(244, 219, 0, 0.15);
}

.ob-5step-card.highlight-step {
    border-color: rgba(244, 219, 0, 0.45);
    background: linear-gradient(180deg, rgba(20, 28, 48, 0.95) 0%, rgba(12, 18, 30, 0.95) 100%);
}

.ob-step-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ob-5step-num {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(244, 219, 0, 0.3);
    line-height: 1;
    transition: color 0.3s ease;
}

.ob-5step-card:hover .ob-5step-num {
    color: #F4DB00;
}

.ob-5step-num.highlight-num {
    color: #F4DB00;
}

.ob-step-pill {
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    padding: 3px 10px;
    border-radius: 50px;
}

.ob-step-pill.highlight-pill {
    background: rgba(244, 219, 0, 0.15);
    border: 1px solid rgba(244, 219, 0, 0.3);
    color: #F4DB00;
}

.ob-5step-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(244, 219, 0, 0.1);
    border: 1px solid rgba(244, 219, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #F4DB00;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.ob-5step-card:hover .ob-5step-icon {
    background: var(--ob-grad);
    color: #000000;
    transform: scale(1.08);
}

.ob-5step-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.25;
}

.ob-5step-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.ob-step-footer {
    font-size: 0.8rem;
    font-weight: 600;
    color: #34d399;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ob-step-footer.highlight-ftr {
    color: #F4DB00;
}

/* ==========================================================================
   4. ACTION FEATURES GRID (5 ACTION CARDS)
   ========================================================================== */
.ob-actions-section {
    background: rgba(10, 14, 24, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ob-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
}

.ob-action-card {
    background: var(--ob-card-bg);
    border: 1px solid var(--ob-card-border-light);
    border-radius: var(--ob-radius-xl);
    padding: 34px 28px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.ob-action-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--ob-grad);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ob-action-card:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 219, 0, 0.4);
    background: var(--ob-card-bg-hover);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(244, 219, 0, 0.12);
}

.ob-action-card:hover::before {
    opacity: 1;
}

.ob-act-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ob-act-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(244, 219, 0, 0.1);
    border: 1px solid rgba(244, 219, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #F4DB00;
    transition: all 0.3s ease;
}

.ob-action-card:hover .ob-act-icon {
    background: var(--ob-grad);
    color: #000000;
    transform: scale(1.08);
}

.ob-act-icon.highlight-icon {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.35);
    color: #34d399;
}

.act-micro-badge {
    font-size: 0.74rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    padding: 4px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.act-micro-badge.highlight-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
}

.ob-action-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.ob-action-card p {
    color: #94a3b8;
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.ob-act-preview {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.act-chip {
    font-size: 0.76rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.act-chip.success {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.act-chip.gold {
    background: rgba(244, 219, 0, 0.12);
    border-color: rgba(244, 219, 0, 0.3);
    color: #F4DB00;
}

.act-chip.blue {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

.act-chip.purple {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.3);
    color: #c4b5fd;
}

/* ==========================================================================
   5. SCALE YOUR CAMPAIGNS SECTION & METRICS DASHBOARD PREVIEW
   ========================================================================== */
.ob-scale-box {
    position: relative;
    background: linear-gradient(180deg, rgba(16, 24, 42, 0.95) 0%, rgba(9, 14, 24, 0.98) 100%);
    border: 1.5px solid var(--ob-card-border);
    border-radius: 32px;
    padding: 70px 45px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.65), 0 0 45px rgba(244, 219, 0, 0.15);
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
}

.ob-scale-glow-bg {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 150px;
    background: radial-gradient(ellipse at center, rgba(244, 219, 0, 0.2) 0%, transparent 75%);
    pointer-events: none;
}

.ob-scale-content h2 {
    font-size: clamp(2.2rem, 3.8vw, 2.9rem);
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.ob-scale-lead {
    font-size: 1.3rem;
    font-weight: 700;
    color: #F4DB00;
    margin-bottom: 16px;
}

.ob-scale-body {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.85;
    max-width: 760px;
    margin: 0 auto 40px;
}

.ob-scale-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 45px;
}

.scale-metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.scale-metric-card:hover {
    border-color: rgba(244, 219, 0, 0.4);
    background: rgba(244, 219, 0, 0.05);
    transform: translateY(-3px);
}

.metric-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.metric-num {
    font-size: 1.9rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
}

.metric-trend {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.metric-trend.up {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.metric-trend.instant {
    background: rgba(244, 219, 0, 0.15);
    color: #F4DB00;
}

.metric-lbl {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 14px;
}

.metric-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    overflow: hidden;
}

.metric-progress {
    height: 100%;
    border-radius: 5px;
}

.bar-1 { width: 92%; background: var(--ob-grad); }
.bar-2 { width: 100%; background: var(--ob-grad-emerald); }
.bar-3 { width: 98%; background: linear-gradient(90deg, #3B82F6, #06B6D4); }

/* Luxury Highlight Quote Callout */
.ob-tagline-callout {
    background: linear-gradient(135deg, rgba(244, 219, 0, 0.12) 0%, rgba(255, 158, 0, 0.06) 100%);
    border: 1.5px solid rgba(244, 219, 0, 0.45);
    border-radius: 20px;
    padding: 24px 35px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 30px rgba(244, 219, 0, 0.2);
    max-width: 820px;
}

.tagline-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ob-grad);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.tagline-text span {
    color: #ffffff;
    font-size: 1.22rem;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.2px;
    line-height: 1.35;
}

/* ==========================================================================
   6. FINAL CTA BANNER
   ========================================================================== */
.ob-final-cta-section {
    padding-top: 20px;
    padding-bottom: 110px;
}

.ob-final-cta-card {
    position: relative;
    background: radial-gradient(circle at 50% 20%, rgba(244, 219, 0, 0.18) 0%, rgba(13, 19, 33, 0.98) 75%);
    border: 1.5px solid var(--ob-card-border);
    border-radius: 32px;
    padding: 75px 40px 65px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), var(--ob-glow);
    overflow: hidden;
    max-width: 1040px;
    margin: 0 auto;
}

.cta-floating-glow {
    position: absolute;
    top: -50px; left: 50%;
    transform: translateX(-50%);
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(244, 219, 0, 0.25) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.ob-final-cta-card h2 {
    font-size: clamp(2.3rem, 4.2vw, 3.2rem);
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
}

.ob-final-cta-card p {
    color: #cbd5e1;
    font-size: 1.2rem;
    max-width: 680px;
    margin: 0 auto 35px;
    line-height: 1.75;
}

.final-cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 35px;
}

.ob-cta-trust-strip {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: #94a3b8;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ob-cta-trust-strip span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ob-cta-trust-strip i {
    color: #F4DB00;
}

/* ==========================================================================
   RESPONSIVE DESIGN & MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .ob-pipeline-grid {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .ob-pipe-connector {
        display: none;
    }
    
    .ob-pipe-step {
        flex: 1 1 calc(33.333% - 15px);
        min-width: 200px;
    }
}

@media (max-width: 992px) {
    .ob-hero {
        padding: 140px 0 80px;
    }
    
    .ob-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .ob-hero-subtitle {
        margin: 0 auto 35px;
    }
    
    .ob-hero-actions {
        justify-content: center;
    }
    
    .ob-hero-stats-row {
        justify-content: center;
        gap: 25px;
    }
    
    .ob-floating-badge.badge-top-left {
        left: 0;
        top: -15px;
    }
    
    .ob-floating-badge.badge-top-right {
        right: 0;
        top: -15px;
    }
    
    .ob-pipeline-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .ob-pipe-step {
        flex: unset;
        min-width: unset;
    }
    
    .ob-scale-box {
        padding: 50px 25px;
    }
    
    .ob-tagline-callout {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .ob-section {
        padding: 60px 0;
    }
    
    .ob-section-header {
        margin-bottom: 35px;
    }
    
    .ob-pipeline-grid {
        grid-template-columns: 1fr;
    }
    
    /* 2 in a row on mobile */
    .ob-5steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .ob-5step-card {
        padding: 22px 16px;
    }

    .ob-5step-card:nth-child(5) {
        grid-column: span 2;
    }
    
    .ob-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .ob-scale-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .ob-final-cta-card {
        padding: 45px 20px 35px;
    }
    
    .ob-floating-badge {
        padding: 8px 12px;
    }
    
    .ob-floating-badge.badge-top-left {
        left: 5px;
        top: 10px;
    }
    
    .ob-floating-badge.badge-top-right {
        right: 5px;
        top: 10px;
    }
    
    .ob-floating-badge.badge-bottom {
        bottom: -15px;
        font-size: 0.75rem;
    }
}

@media (max-width: 520px) {
    .ob-5steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ob-5step-card {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .ob-5step-card:nth-child(5) {
        grid-column: span 2;
    }

    .ob-5step-card h3 {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }

    .ob-5step-card p {
        font-size: 0.8rem;
        line-height: 1.45;
        margin-bottom: 12px;
    }

    .ob-5step-num {
        font-size: 1.4rem;
    }

    .ob-5step-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        margin-bottom: 12px;
        border-radius: 10px;
    }

    .ob-step-pill {
        font-size: 0.62rem;
        padding: 2px 6px;
    }

    .ob-step-footer {
        font-size: 0.7rem;
        padding-top: 8px;
    }
}

@media (max-width: 480px) {
    .ob-hero h1 {
        font-size: 2.1rem;
    }
    
    .ob-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .ob-btn-primary, .ob-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .ob-stat-mini {
        width: 100%;
        justify-content: center;
    }
    
    .ob-floating-badge.badge-bottom {
        display: none;
    }
}
