/* ==========================================================================
   menetalk CRM - FUTURISTIC UI STYLES
   ========================================================================== */

:root {
    --crm-black: #050505;
    --crm-dark: #0a0a0c;
    --crm-dark-glass: rgba(15, 15, 20, 0.7);
    --crm-yellow: #FFD400;
    --crm-yellow-glow: rgba(255, 212, 0, 0.3);
    --crm-yellow-intense: rgba(255, 212, 0, 0.6);
    --crm-white: #FFFFFF;
    --crm-gray: #a0a0b0;
    --crm-border: rgba(255, 255, 255, 0.08);
    --crm-border-hover: rgba(255, 212, 0, 0.4);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body.crm-page {
    background-color: var(--crm-black);
    color: var(--crm-white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

.gradient-yellow {
    background: linear-gradient(90deg, #FFD400, #ffaa00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   COMMON COMPONENTS
   ========================================================================== */
.crm-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-desc {
    color: var(--crm-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.center-max {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.align-center {
    align-items: center;
}

.mt-4 {
    margin-top: 2rem;
}

.neon-btn {
    background-color: var(--crm-yellow);
    color: var(--crm-black);
    border: none;
    box-shadow: 0 0 15px var(--crm-yellow-glow);
    transition: all 0.3s ease;
    font-weight: 600;
}

.neon-btn:hover {
    box-shadow: 0 0 25px var(--crm-yellow-intense);
    transform: translateY(-2px);
    background-color: #fff04d;
}

.neon-btn-outline {
    border: 1px solid var(--crm-yellow);
    color: var(--crm-yellow);
    background: transparent;
    transition: all 0.3s ease;
}

.neon-btn-outline:hover {
    background: var(--crm-yellow-glow);
    box-shadow: 0 0 15px var(--crm-yellow-glow);
}

.neon-btn-outline.dark {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}
.neon-btn-outline.dark:hover {
    border-color: var(--crm-yellow);
    color: var(--crm-yellow);
}

.neon-bullets {
    list-style: none;
    padding: 0;
}
.neon-bullets li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.neon-bullets li i {
    color: var(--crm-yellow);
    margin-right: 12px;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px var(--crm-yellow-glow));
}

/* Glass Card Base */
.glass-card {
    background: var(--crm-dark-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--crm-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.glass-card:hover {
    border-color: var(--crm-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.glass-card .hover-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--crm-yellow-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    top: -75px;
    right: -75px;
    border-radius: 50%;
}
.glass-card:hover .hover-glow {
    opacity: 1;
}

/* ==========================================================================
   SECTION 1: HERO
   ========================================================================== */
.crm-hero {
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    display: flex;
    align-items: center;
}

.crm-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
#hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: floatOrb 10s infinite alternate ease-in-out;
}
.orb-yellow {
    width: 400px;
    height: 400px;
    background: var(--crm-yellow-glow);
    top: 20%;
    right: 10%;
}
.orb-white {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    bottom: 10%;
    left: 20%;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, -50px); }
}

.crm-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: center;
}

.crm-hero-content .eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 212, 0, 0.1);
    color: var(--crm-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 212, 0, 0.2);
}

.crm-hero-content .main-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.crm-hero-content .subheading {
    font-size: 1.15rem;
    color: var(--crm-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 3rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.feature-tags span {
    font-size: 0.85rem;
    color: #ccc;
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.feature-tags span i {
    color: var(--crm-yellow);
}

.hologram-dashboard {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.dash-panel {
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    position: absolute;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), inset 0 0 20px rgba(255,212,0,0.05);
    transform-style: preserve-3d;
}

.panel-1 {
    width: 250px;
    top: 50px;
    left: 20px;
    transform: rotateY(15deg) rotateX(5deg);
    animation: float1 6s infinite alternate ease-in-out;
}

.panel-2 {
    width: 300px;
    top: 150px;
    right: 0;
    transform: rotateY(-10deg) rotateX(-5deg) translateZ(50px);
    animation: float2 7s infinite alternate ease-in-out;
}

.panel-3 {
    width: 260px;
    bottom: 50px;
    left: 80px;
    transform: rotateY(5deg) rotateX(15deg) translateZ(80px);
    animation: float3 5s infinite alternate ease-in-out;
    border-color: rgba(255, 212, 0, 0.3);
}

.dash-header {
    font-size: 0.85rem;
    color: var(--crm-gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.dash-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.trend.up {
    font-size: 0.9rem;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.ai-pulse {
    box-shadow: 0 0 20px var(--crm-yellow-glow);
}
.ai-pulse .dash-header i {
    color: var(--crm-yellow);
    margin-right: 8px;
}

/* Animations for Dashboard */
@keyframes float1 { 0% { transform: rotateY(15deg) rotateX(5deg) translateY(0); } 100% { transform: rotateY(15deg) rotateX(5deg) translateY(-20px); } }
@keyframes float2 { 0% { transform: rotateY(-10deg) rotateX(-5deg) translateZ(50px) translateY(0); } 100% { transform: rotateY(-10deg) rotateX(-5deg) translateZ(50px) translateY(15px); } }
@keyframes float3 { 0% { transform: rotateY(5deg) rotateX(15deg) translateZ(80px) translateY(0); } 100% { transform: rotateY(5deg) rotateX(15deg) translateZ(80px) translateY(-10px); } }

/* Mini Pipeline UI in Panel 2 */
.dash-pipeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}
.pipe-node {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.pipe-node.active { background: var(--crm-yellow); box-shadow: 0 0 10px var(--crm-yellow); }
.pipe-line {
    height: 2px;
    flex-grow: 1;
    background: rgba(255,255,255,0.1);
    margin: 0 5px;
}
.pipe-line.active { background: var(--crm-yellow); }

/* ==========================================================================
   SECTION 2: WHAT IS CRM
   ========================================================================== */
.crm-sync-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.center-node {
    width: 100px;
    height: 100px;
    background: var(--crm-dark);
    border: 2px solid var(--crm-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--crm-yellow);
    z-index: 5;
    box-shadow: 0 0 30px var(--crm-yellow-glow);
}
.pulse-glow {
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px var(--crm-yellow-glow); }
    50% { box-shadow: 0 0 40px var(--crm-yellow-intense); }
    100% { box-shadow: 0 0 10px var(--crm-yellow-glow); }
}

.orbiting-nodes {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}
.orbit-node {
    width: 50px;
    height: 50px;
    background: var(--crm-dark-glass);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    /* Counter spin so icons stay upright */
    animation: counterSpin 20s linear infinite;
}
.orbit-node.n1 { top: -25px; left: 125px; }
.orbit-node.n2 { bottom: -25px; left: 125px; }
.orbit-node.n3 { left: -25px; top: 125px; }
.orbit-node.n4 { right: -25px; top: 125px; }

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes counterSpin { 100% { transform: rotate(-360deg); } }

.floating-customer-card {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid var(--crm-yellow-glow);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float1 4s infinite alternate;
}
.mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.floating-customer-card h4 { margin: 0; font-size: 0.95rem; }
.floating-customer-card p { margin: 0; font-size: 0.8rem; color: #00ff88; }

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.5rem 0;
}
.grid-tag {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: 0.3s;
}
.grid-tag:hover {
    border-color: var(--crm-yellow);
    color: var(--crm-yellow);
    box-shadow: 0 0 10px var(--crm-yellow-glow);
}


/* ==========================================================================
   SECTION 3: WHY menetalk CRM
   ========================================================================== */
.glass-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.card-icon {
    font-size: 2.5rem;
    color: var(--crm-yellow);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px var(--crm-yellow-glow));
}
.glass-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}
.glass-card p {
    color: var(--crm-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   SECTION 4: SALES PIPELINE
   ========================================================================== */
.pipeline-ui {
    background: var(--crm-dark-glass);
    border: 1px solid var(--crm-border);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.pipe-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.stage-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--crm-gray);
}
.pipe-body {
    position: relative;
    height: 300px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}
.lane {
    border-right: 1px dashed rgba(255,255,255,0.05);
}
.lane:last-child { border-right: none; }

.deal-card {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--crm-yellow);
    padding: 12px;
    border-radius: 6px;
    position: absolute;
    width: 18%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.deal-card h5 { margin: 0 0 5px 0; font-size: 0.9rem; }
.deal-card span { font-size: 0.8rem; color: #00ff88; }

.moving-deal.c-1 {
    top: 20px; left: 0%;
    animation: moveDeal 12s infinite linear;
}
.moving-deal.c-2 {
    top: 90px; left: 20%;
    border-left-color: #00ff88;
    animation: moveDeal2 15s infinite linear;
}

@keyframes moveDeal {
    0% { left: 0%; opacity: 0; }
    5% { left: 2%; opacity: 1; }
    20% { left: 20%; }
    40% { left: 40%; }
    60% { left: 60%; }
    80% { left: 80%; }
    95% { opacity: 1; }
    100% { left: 90%; opacity: 0; }
}
@keyframes moveDeal2 {
    0% { left: 20%; opacity: 0; }
    5% { opacity: 1; }
    30% { left: 40%; }
    60% { left: 60%; }
    90% { left: 80%; }
    95% { opacity: 1; }
    100% { left: 90%; opacity: 0; }
}

.ai-score-pulse {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--crm-yellow);
    color: black;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 0 15px var(--crm-yellow-glow);
    animation: float1 3s infinite alternate;
}

/* ==========================================================================
   SECTION 5: COMMUNICATION HUB
   ========================================================================== */
.crm-communication {
    position: relative;
}
.comm-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(255,212,0,0.03) 0%, transparent 60%);
    z-index: 0;
}
.comm-dashboard-ui {
    display: flex;
    background: var(--crm-dark-glass);
    border: 1px solid var(--crm-border);
    border-radius: 16px;
    height: 500px;
    margin-top: 40px;
    overflow: hidden;
}
.comm-sidebar {
    width: 250px;
    border-right: 1px solid var(--crm-border);
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
}
.comm-channel {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--crm-gray);
    cursor: pointer;
    transition: 0.2s;
    border-left: 3px solid transparent;
}
.comm-channel:hover {
    background: rgba(255,255,255,0.02);
    color: white;
}
.comm-channel.active {
    background: rgba(255,212,0,0.05);
    color: var(--crm-yellow);
    border-left-color: var(--crm-yellow);
}
.comm-channel i { font-size: 1.1rem; }

.comm-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--crm-border);
}
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.user-avatar {
    width: 40px; height: 40px;
    background: #444;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
}
.user-info h5 { margin: 0; font-size: 1rem; }
.user-info span { font-size: 0.8rem; color: #00ff88; }
.actions i {
    margin-left: 15px;
    color: var(--crm-gray);
    cursor: pointer;
}
.actions i:hover { color: var(--crm-yellow); }

.chat-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.msg {
    max-width: 70%;
    padding: 12px 18px;
    border-radius: 12px;
    position: relative;
}
.msg p { margin: 0; font-size: 0.95rem; }
.msg .time { font-size: 0.7rem; opacity: 0.6; display: block; margin-top: 5px; }

.incoming {
    background: rgba(255,255,255,0.05);
    align-self: flex-start;
    border-bottom-left-radius: 0;
}
.outgoing {
    background: var(--crm-yellow-glow);
    border: 1px solid rgba(255,212,0,0.2);
    align-self: flex-end;
    border-bottom-right-radius: 0;
}
.ai-assisted i { color: var(--crm-yellow); margin-left: 5px; }

.typing { display: flex; gap: 5px; align-items: center; padding: 15px 18px;}
.dot {
    width: 6px; height: 6px; background: white; border-radius: 50%;
    animation: blink 1.4s infinite both;
}
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes blink { 0%, 100% { opacity: 0.2; } 20% { opacity: 1; } }


/* ==========================================================================
   SECTION 6: FEATURES GRID
   ========================================================================== */
.features-flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}
.feature-pill {
    background: var(--crm-dark-glass);
    border: 1px solid var(--crm-border);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    cursor: default;
}
.feature-pill i { color: var(--crm-yellow); }
.feature-pill:hover {
    border-color: var(--crm-yellow);
    box-shadow: 0 0 15px var(--crm-yellow-glow);
    transform: translateY(-2px);
}


/* ==========================================================================
   SECTION 7: AUTOMATION
   ========================================================================== */
.automation-engine-ui {
    background: var(--crm-dark-glass);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--crm-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.trigger-node, .action-node {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--crm-border);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}
.trigger-node { border-color: #00ff88; color: #00ff88; }
.ai-action {
    background: rgba(255,212,0,0.1);
    border-color: var(--crm-yellow);
    color: var(--crm-yellow);
}
.pulse-ring {
    position: absolute; inset: -5px; border-radius: 10px;
    border: 1px solid var(--crm-yellow);
    animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.flow-line {
    width: 2px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    position: relative;
}
.flow-line.active::after {
    content: '';
    position: absolute;
    top: 0; left: -1px; width: 4px; height: 10px;
    background: var(--crm-yellow);
    box-shadow: 0 0 10px var(--crm-yellow);
    animation: flowDown 2s infinite linear;
}
.flow-line.active.delay::after { animation-delay: 1s; }
@keyframes flowDown {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.flow-split {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 40px;
    position: relative;
}
.flow-split::before {
    content: '';
    position: absolute;
    top: 0;
    width: 140px;
    height: 2px;
    background: rgba(255,255,255,0.1);
}
.split-left, .split-right { display: flex; flex-direction: column; align-items: center; }
.action-node.sub { font-size: 0.85rem; padding: 10px 15px; }

.automation-examples { margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
.auto-ex {
    display: flex; align-items: center; gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 12px 20px; border-radius: 8px;
    border-left: 2px solid var(--crm-yellow);
}
.auto-ex i { color: var(--crm-gray); width: 20px; text-align: center; }


/* ==========================================================================
   SECTION 8: ANALYTICS
   ========================================================================== */
.analytics-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.analytics-card {
    background: var(--crm-dark-glass);
    border: 1px solid var(--crm-border);
    border-radius: 12px;
    padding: 25px;
}
.analytics-card .card-title {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--crm-gray);
}
.analytics-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.analytics-card.mini { padding: 20px; }
.metric { font-size: 2rem; font-weight: 700; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: center;}
.metric .trend { font-size: 0.9rem; }
.progress-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.progress-bar .fill { height: 100%; background: var(--crm-yellow); box-shadow: 0 0 10px var(--crm-yellow); }

.donut-chart-mockup {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: conic-gradient(var(--crm-yellow) 0% 45%, #00ff88 45% 75%, #ff4d4d 75% 100%);
    margin: 0 auto;
    position: relative;
}
.donut-chart-mockup::after {
    content: ''; position: absolute; inset: 20px;
    background: var(--crm-dark-glass); border-radius: 50%;
}
.legend { margin-top: 20px; display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--crm-gray); }
.legend span { display: flex; align-items: center; gap: 5px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.d1 { background: var(--crm-yellow); }
.d2 { background: #00ff88; }
.d3 { background: #ff4d4d; }

.analytics-features {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 40px; color: var(--crm-gray); font-size: 0.95rem;
}
.analytics-features span::before { content: '•'; color: var(--crm-yellow); margin-right: 8px; }


/* ==========================================================================
   SECTION 9: HOW IT WORKS
   ========================================================================== */
.timeline-container {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
    padding: 20px 0;
}
.timeline-line {
    position: absolute;
    top: 0; bottom: 0; left: 50%; width: 2px;
    background: linear-gradient(to bottom, transparent, var(--crm-yellow-glow), var(--crm-yellow), var(--crm-yellow-glow), transparent);
    transform: translateX(-50%);
}
.timeline-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}
.timeline-step:nth-child(even) { flex-direction: row-reverse; }
.step-node {
    width: 60px; height: 60px;
    background: var(--crm-black);
    border: 2px solid var(--crm-yellow);
    border-radius: 50%;
    position: absolute;
    left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--crm-yellow);
    box-shadow: 0 0 15px var(--crm-yellow-glow);
    z-index: 2;
}
.step-content {
    width: 42%;
    background: var(--crm-dark-glass);
    padding: 20px; border-radius: 12px;
    border: 1px solid var(--crm-border);
    transition: 0.3s;
}
.step-content:hover {
    border-color: var(--crm-yellow);
    box-shadow: 0 0 20px var(--crm-yellow-glow);
}
.step-content h4 { margin: 0 0 10px; font-size: 1.1rem; }
.step-content p { margin: 0; color: var(--crm-gray); font-size: 0.9rem; }


/* ==========================================================================
   SECTION 10: FAQ
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}
.faq-item {
    background: var(--crm-dark-glass);
    border: 1px solid var(--crm-border);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}
.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: 0.3s;
}
.faq-question:hover { color: var(--crm-yellow); }
.faq-question i { transition: transform 0.3s; }
.faq-item.active { border-color: var(--crm-yellow); box-shadow: 0 0 15px var(--crm-yellow-glow); }
.faq-item.active .faq-question { color: var(--crm-yellow); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    color: var(--crm-gray);
    line-height: 1.6;
    transition: max-height 0.3s ease-out, padding 0.3s;
}


/* ==========================================================================
   SECTION 11: FINAL CTA
   ========================================================================== */
.crm-final-cta {
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.animated-mesh-bg {
    position: absolute; inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,212,0,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,212,0,0.05) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: gradientMove 10s ease infinite;
    z-index: 0;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.cta-content-wrapper {
    max-width: 700px; margin: 0 auto;
    position: relative;
}
.hologram-overlay {
    font-size: 4rem; color: rgba(255,212,0,0.1); margin-bottom: 20px;
    animation: float1 4s infinite alternate;
}
.crm-final-cta .section-title { font-size: 3rem; margin-bottom: 20px; }
.crm-final-cta .section-desc { font-size: 1.2rem; margin-bottom: 40px; }
.center { justify-content: center; }

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 991px) {
    .crm-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons, .feature-tags { justify-content: center; }
    .hologram-dashboard { margin-top: 50px; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
    .reverse-mobile { flex-direction: column-reverse; display: flex; }
    .analytics-showcase { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    .pipe-body { height: 400px; }
    .timeline-line { left: 30px; }
    .step-node { left: 30px; }
    .timeline-step:nth-child(even), .timeline-step { flex-direction: row; justify-content: flex-end; }
    .step-content { width: calc(100% - 80px); }
}

@media (max-width: 768px) {
    .crm-hero-content .main-heading { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .glass-card-grid { grid-template-columns: 1fr; }
    .comm-dashboard-ui { flex-direction: column; height: auto; }
    .comm-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--crm-border); display: flex; overflow-x: auto; padding: 10px; }
    .comm-channel { padding: 10px 15px; white-space: nowrap; border-left: none; border-bottom: 3px solid transparent; }
    .comm-channel.active { border-bottom-color: var(--crm-yellow); }
    .chat-body { height: 400px; }
    
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .hologram-dashboard { height: 400px; }
    .crm-final-cta .section-title { font-size: 2rem; }
    .panel-1, .panel-2, .panel-3 { position: relative; width: 100%; top: auto; left: auto; right: auto; bottom: auto; transform: none; animation: none; margin-bottom: 1rem; }
    .hologram-dashboard { height: auto; display: flex; flex-direction: column; perspective: none; }
}

@media (max-width: 480px) {
    .crm-hero-content .main-heading { font-size: 2rem; line-height: 1.2; }
    .section-title { font-size: 1.6rem; }
    .crm-hero-content .subheading { font-size: 1rem; }
    .section-desc { font-size: 0.95rem; }

    .crm-hero-grid { padding: 0 1rem; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 0.75rem; }
    .hero-buttons .btn { width: 100%; text-align: center; padding: 0.875rem 1rem; }
    .feature-tags { gap: 8px; }
    .feature-tags span { font-size: 0.8rem; padding: 5px 10px; }

    .hologram-dashboard { height: auto; display: flex; flex-direction: column; gap: 1rem; perspective: none; }
    .panel-1, .panel-2, .panel-3 { position: relative; width: 100%; top: auto; left: auto; right: auto; bottom: auto; transform: none; animation: none; }

    .glass-card-grid { grid-template-columns: 1fr; }
    .glass-card { padding: 1.25rem; }

    .pipeline-ui { overflow-x: auto; }
    .pipe-header, .pipe-body { min-width: 400px; }

    .comm-dashboard-ui { height: auto; }
    .chat-body { height: 280px; }

    .crm-final-cta .section-title { font-size: 1.6rem; }
    .crm-final-cta .section-desc { font-size: 0.95rem; }
    .crm-final-cta { padding: 60px 1rem; }
    .hero-buttons.center { flex-direction: column; width: 100%; align-items: stretch; }
    .hero-buttons.center .btn { width: 100%; text-align: center; }

    .timeline-container { padding: 1rem; }
    .step-content { width: calc(100% - 60px); padding: 15px; }

    .faq-accordion { margin: 20px 0 0; }
    .faq-question { font-size: 0.95rem; padding: 15px; }
}

/* Utilities */
.relative { position: relative; }
.z-10 { z-index: 10; }
