/* ===== Performance Marketing Page Styles ===== */

:root {
    --growth-green: #00ff9d;
    --data-blue: #00b8ff;
    --deep-bg: #030305;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.02);
}

body.marketing-page {
    background-color: var(--deep-bg);
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
}

/* --- Hero Section: Trading Terminal Vibe --- */
.marketing-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.marketing-hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(0, 255, 157, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 184, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    animation: gridFlow 15s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gridFlow {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(40px) translateZ(-200px);
    }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.1) 0%, rgba(0, 184, 255, 0.05) 40%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.marketing-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
}

.roi-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--growth-green);
    background: rgba(0, 255, 157, 0.05);
    color: var(--growth-green);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 32px;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.2);
}

.impact-text {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.text-highlight {
    background: linear-gradient(90deg, var(--growth-green), var(--data-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Channel Cards (Assets) --- */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.channel-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 32px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.channel-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 157, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 157, 0.1);
}

.channel-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    color: var(--growth-green);
    filter: drop-shadow(0 0 8px rgba(0, 255, 157, 0.4));
}

.channel-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.channel-card p {
    font-size: 15px;
    color: #8892b0;
    line-height: 1.6;
}

/* --- Data Section --- */
.data-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.005);
}

.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.metric-card {
    background: rgba(0, 255, 157, 0.03);
    border: 1px solid rgba(0, 255, 157, 0.1);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: white;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 14px;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Buttons --- */
.btn-growth {
    background: transparent;
    border: 1px solid var(--growth-green);
    color: var(--growth-green);
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.2);
    text-decoration: none;
    display: inline-block;
}

.btn-growth:hover {
    background: var(--growth-green);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 157, 0.6);
}

/* --- Consultation Section --- */
.consult-card-marketing {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, #0a0c10, #050505);
    border: 1px solid rgba(0, 184, 255, 0.3);
    border-radius: 32px;
    padding: 80px 40px;
    position: relative;
    box-shadow: 0 0 60px rgba(0, 184, 255, 0.1);
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .impact-text {
        font-size: 48px;
    }

    .channel-grid {
        grid-template-columns: 1fr;
    }

    .data-grid {
        grid-template-columns: 1fr;
    }
}