/**
 * SIGMIX QuantStack Technology Page Styles
 * /css/quant-stack.css
 */

/* ========================================
   HEADER SPACER
   ======================================== */
.header-spacer {
    height: 70px;
}

/* ========================================
   MEGA HERO SECTION
   ======================================== */
.mega-hero {
    position: relative;
    background: linear-gradient(135deg, #030014 0%, #0a0a1f 40%, #0f172a 100%);
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.mega-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 30%, black, transparent);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.mega-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: glowFloat 10s ease-in-out infinite;
}

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

.mega-bg-glow.g1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(7, 0, 120, 0.2) 0%, transparent 70%);
}

.mega-bg-glow.g2 {
    bottom: 30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    animation-delay: -5s;
}

.mega-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.mega-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--accent-light);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.5); }
}

.mega-badge i {
    font-size: 1rem;
    animation: spin 3s linear infinite;
}

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

.mega-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.mega-title .accent {
    background: linear-gradient(135deg, #10b981, #34d399, #6ee7b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mega-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.mega-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.25rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    text-decoration: none;
}

.btn-glow:hover,
.btn-glow:focus {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.6);
    color: var(--white);
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-glass:hover,
.btn-glass:focus {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    color: var(--white);
}

.mega-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.mega-stat-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.mega-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

.mega-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 4rem 0;
}

/* ========================================
   PIPELINE SECTION
   ======================================== */
.mega-pipeline {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.pipeline-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pipeline-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.pipeline-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 700px;
    margin: 0 auto;
}

.pipeline-track {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.pipeline-line {
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 4px;
    background: linear-gradient(90deg, #cd7f32, #a1a1aa, #fbbf24, #8b5cf6);
    border-radius: 2px;
    z-index: 0;
    overflow: hidden;
}

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

@keyframes flowLine {
    to { left: 100%; }
}

.pipeline-stage {
    flex: 1;
    max-width: 220px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stage-node {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    position: relative;
}

.stage-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.stage-ring.bronze { background: radial-gradient(circle, #cd7f32 0%, transparent 70%); animation-delay: 0s; }
.stage-ring.silver { background: radial-gradient(circle, #a1a1aa 0%, transparent 70%); animation-delay: 0.5s; }
.stage-ring.gold { background: radial-gradient(circle, #fbbf24 0%, transparent 70%); animation-delay: 1s; }
.stage-ring.platinum { background: radial-gradient(circle, #8b5cf6 0%, transparent 70%); animation-delay: 1.5s; }

.stage-inner {
    position: absolute;
    inset: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pipeline-stage:hover .stage-inner {
    background: rgba(255,255,255,0.08);
    transform: scale(1.05);
}

.stage-inner i {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.stage-inner i.bronze { color: #cd7f32; }
.stage-inner i.silver { color: #d4d4d8; }
.stage-inner i.gold { color: #fbbf24; }
.stage-inner i.platinum { color: #a78bfa; }

.stage-label {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-full);
}

.stage-label.bronze { background: #cd7f32; color: white; }
.stage-label.silver { background: #a1a1aa; color: #1a1a1a; }
.stage-label.gold { background: #fbbf24; color: #78350f; }
.stage-label.platinum { background: #8b5cf6; color: white; }

.stage-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.stage-desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

.data-sources {
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(205, 127, 50, 0.1);
    border: 1px solid rgba(205, 127, 50, 0.3);
    border-radius: var(--radius);
}

.data-sources-title {
    font-size: 0.7rem;
    color: #cd7f32;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.data-sources-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: center;
}

.data-source-tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.8);
}

/* ========================================
   INDICATORS SECTION
   ======================================== */
.mega-indicators {
    position: relative;
    z-index: 2;
}

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

.indicators-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.indicators-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.indicator-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.indicator-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
}

.indicator-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.indicator-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--white);
    flex-shrink: 0;
}

.indicator-icon.momentum { background: linear-gradient(135deg, #ef4444, #dc2626); }
.indicator-icon.volatility { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.indicator-icon.volume { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.indicator-icon.flow { background: linear-gradient(135deg, #ec4899, #db2777); }
.indicator-icon.saudi { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.indicator-icon.risk { background: linear-gradient(135deg, #f59e0b, #d97706); }
.indicator-icon.patterns { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.indicator-icon.ai { background: linear-gradient(135deg, #10b981, #059669); }

.indicator-info h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.1rem;
}

.indicator-count {
    font-size: 0.7rem;
    color: var(--accent-light);
    font-weight: 600;
}

.indicator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.indicator-tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.45rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.7);
}

.total-badge-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

.total-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
}

.total-badge i {
    color: var(--accent-light);
    font-size: 1.25rem;
}

/* ========================================
   SOCIAL INTELLIGENCE SECTION
   ======================================== */
.social-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 50%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite;
}

.social-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite reverse;
}

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

.social-floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: floatIcon 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; color: #1DA1F2; }
.floating-icon:nth-child(2) { top: 20%; right: 8%; animation-delay: 1s; color: #E4405F; }
.floating-icon:nth-child(3) { top: 60%; left: 3%; animation-delay: 2s; color: #0077B5; }
.floating-icon:nth-child(4) { top: 70%; right: 5%; animation-delay: 3s; color: #FF0000; }
.floating-icon:nth-child(5) { top: 40%; left: 8%; animation-delay: 4s; color: #25D366; }
.floating-icon:nth-child(6) { top: 85%; right: 10%; animation-delay: 5s; color: #1DA1F2; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.2; }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
}

.social-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.social-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.social-feature:hover::before {
    transform: scaleY(1);
}

.social-feature:hover {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
    transform: translateX(8px);
}

.social-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-feature:hover .social-feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.social-feature h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.social-feature p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Flow Diagram Social */
.flow-diagram-social {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.flow-diagram-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1DA1F2, #10b981, #8b5cf6);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease-in-out infinite;
}

@keyframes gradientSlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.flow-title-social {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.flow-steps-social {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.flow-steps-social::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 35px;
    bottom: 35px;
    width: 3px;
    background: linear-gradient(180deg, #1DA1F2, #10b981, #8b5cf6, #f59e0b, #ef4444);
    border-radius: 2px;
    z-index: 0;
}

.flow-step-social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
    animation: stepSlideIn 0.6s ease-out backwards;
}

.flow-step-social:nth-child(1) { animation-delay: 0.1s; }
.flow-step-social:nth-child(2) { animation-delay: 0.2s; }
.flow-step-social:nth-child(3) { animation-delay: 0.3s; }
.flow-step-social:nth-child(4) { animation-delay: 0.4s; }
.flow-step-social:nth-child(5) { animation-delay: 0.5s; }

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

.flow-step-icon-social {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.flow-step-icon-social.twitter { background: linear-gradient(135deg, #1DA1F2, #0d8ecf); }
.flow-step-icon-social.nlp { background: linear-gradient(135deg, #10b981, #059669); }
.flow-step-icon-social.tag { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.flow-step-icon-social.chart { background: linear-gradient(135deg, #f59e0b, #d97706); }
.flow-step-icon-social.signal { background: linear-gradient(135deg, #ef4444, #dc2626); }

.flow-step-content-social {
    flex: 1;
    background: var(--off-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.flow-step-social:hover .flow-step-content-social {
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
    transform: translateX(5px);
}

.flow-step-label-social {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.flow-step-desc-social {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

.flow-outputs-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--gray-200);
}

.flow-outputs-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.flow-outputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.flow-output-social {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.flow-output-social:hover {
    border-color: var(--accent);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.flow-output-social i {
    color: var(--accent);
    font-size: 1rem;
}

/* ========================================
   BROADCAST SECTION
   ======================================== */
.broadcast-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #fef2f2, #fff);
    position: relative;
    overflow: hidden;
}

.broadcast-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite reverse;
}

.broadcast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.broadcast-image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(239, 68, 68, 0.15);
}

.broadcast-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    z-index: 2;
}

.broadcast-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.broadcast-image-container:hover img {
    transform: scale(1.03);
}

.broadcast-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.broadcast-image-overlay h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.broadcast-image-overlay p {
    font-size: 0.8rem;
    opacity: 0.9;
}

.broadcast-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.broadcast-content > p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.broadcast-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.broadcast-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark);
}

.broadcast-feature i {
    color: var(--accent);
    font-size: 0.75rem;
}

.publisher-ranking {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.publisher-ranking-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.publisher-ranking-title i {
    color: #ef4444;
}

.publisher-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.publisher-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.8rem;
    background: var(--off-white);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.publisher-item:hover {
    background: #fee2e2;
    transform: translateX(3px);
}

.publisher-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.publisher-score {
    font-size: 0.75rem;
    color: #ef4444;
    font-weight: 700;
}

/* ========================================
   AI CHAT SECTION
   ======================================== */
.ai-chat-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.ai-chat-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatSlow 12s ease-in-out infinite;
}

.ai-chat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ai-chat-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.ai-chat-content > p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ai-chat-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.ai-chat-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.ai-chat-feature:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.ai-chat-feature i {
    color: var(--accent-light);
    font-size: 1rem;
    margin-top: 0.1rem;
}

.ai-chat-feature h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.ai-chat-feature p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}

.ai-chat-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-white:hover,
.btn-white:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
    color: var(--primary);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

/* AI Data Fusion Diagram */
.ai-fusion-diagram {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
}

.ai-fusion-title {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.data-streams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.data-stream {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.data-stream::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
    animation: dataFlow 2s linear infinite;
}

.data-stream:nth-child(1)::after { animation-delay: 0s; }
.data-stream:nth-child(2)::after { animation-delay: 0.3s; }
.data-stream:nth-child(3)::after { animation-delay: 0.6s; }
.data-stream:nth-child(4)::after { animation-delay: 0.9s; }
.data-stream:nth-child(5)::after { animation-delay: 1.2s; }
.data-stream:nth-child(6)::after { animation-delay: 1.5s; }

@keyframes dataFlow {
    to { left: 100%; }
}

.data-stream:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--accent);
    transform: scale(1.02);
}

.data-stream i {
    color: var(--accent-light);
    font-size: 1rem;
}

.data-stream span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.ai-brain-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
    position: relative;
}

.ai-brain {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--accent), #059669);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 60px rgba(16, 185, 129, 0.5);
    animation: brainPulse 2s ease-in-out infinite;
}

@keyframes brainPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 70px rgba(16, 185, 129, 0.6); }
}

.ai-brain::before,
.ai-brain::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: orbit 4s linear infinite;
}

.ai-brain::before {
    width: 180px;
    height: 180px;
    animation-duration: 6s;
}

.ai-brain::after {
    width: 220px;
    height: 220px;
    animation-duration: 8s;
    animation-direction: reverse;
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ai-brain-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.25rem;
    animation: brainFloat 3s ease-in-out infinite;
}

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

.ai-brain-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-brain-sublabel {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.1rem;
}

.ai-output-container {
    display: flex;
    justify-content: center;
}

.ai-output-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.ai-output-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.ai-output-text strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

.ai-output-text span {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ========================================
   CORRELATION SECTION
   ======================================== */
.correlation-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.correlation-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 15s ease-in-out infinite;
}

.correlation-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.correlation-header .section-badge {
    background: linear-gradient(135deg, #fbbf24, #d97706);
}

.correlation-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.correlation-header p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.correlation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.correlation-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.correlation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.correlation-card:hover::before {
    transform: scaleX(1);
}

.correlation-card.oil::before { background: linear-gradient(90deg, #000, #1a1a1a); }
.correlation-card.gold::before { background: linear-gradient(90deg, #fbbf24, #d97706); }
.correlation-card.forex::before { background: linear-gradient(90deg, #10b981, #059669); }
.correlation-card.indices::before { background: linear-gradient(90deg, #3b82f6, #1d4ed8); }

.correlation-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.correlation-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
}

.correlation-card.oil .correlation-icon { background: linear-gradient(135deg, #1a1a1a, #333); }
.correlation-card.gold .correlation-icon { background: linear-gradient(135deg, #fbbf24, #d97706); }
.correlation-card.forex .correlation-icon { background: linear-gradient(135deg, #10b981, #059669); }
.correlation-card.indices .correlation-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }

.correlation-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.correlation-card > p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.correlation-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.correlation-item {
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* ========================================
   ALPHA SECTION
   ======================================== */
.alpha-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.alpha-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.alpha-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.alpha-card:hover::before {
    transform: scaleX(1);
}

.alpha-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.alpha-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.alpha-icon.green { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.alpha-icon.gold { background: linear-gradient(135deg, #fbbf24, #d97706); }
.alpha-icon.purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }

.alpha-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.alpha-card > p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.alpha-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.alpha-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    color: var(--dark);
    background: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
}

.alpha-tag i {
    color: var(--accent);
    font-size: 0.55rem;
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-section {
    padding: 6rem 0;
    background: var(--off-white);
}

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

.trust-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-xl);
    transition: all 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
}

.trust-card.cma {
    background: linear-gradient(135deg, #fef2f2, #fff);
    border: 1px solid #fecaca;
}

.trust-card.academic {
    background: linear-gradient(135deg, #f0fdf4, #fff);
    border: 1px solid #bbf7d0;
}

.trust-card.transparent {
    background: linear-gradient(135deg, #eff6ff, #fff);
    border: 1px solid #bfdbfe;
}

.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

.trust-card.cma .trust-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.trust-card.academic .trust-icon { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.trust-card.transparent .trust-icon { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }

.trust-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ========================================
   OUTPUT SECTION
   ======================================== */
.output-section {
    padding: 6rem 0;
    background: var(--white);
}

.output-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.output-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    text-align: center;
    transition: all 0.4s ease;
}

.output-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.output-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
    transition: transform 0.4s ease;
}

.output-card:hover .output-icon {
    transform: scale(1.1) rotate(-5deg);
}

.output-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.output-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e1b4b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.25rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn.primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}

.cta-btn.primary:hover,
.cta-btn.primary:focus {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
    color: var(--primary);
}

.cta-btn.secondary {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover,
.cta-btn.secondary:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-4px);
    color: var(--white);
}

.cta-btn.accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.cta-btn.accent:hover,
.cta-btn.accent:focus {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    color: var(--white);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.active > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.active > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-children.active > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.active > *:nth-child(4) { transition-delay: 0.25s; }
.stagger-children.active > *:nth-child(5) { transition-delay: 0.3s; }
.stagger-children.active > *:nth-child(6) { transition-delay: 0.35s; }
.stagger-children.active > *:nth-child(7) { transition-delay: 0.4s; }
.stagger-children.active > *:nth-child(8) { transition-delay: 0.45s; }

.stagger-children.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
    .indicators-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alpha-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .output-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .correlation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .pipeline-track {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .pipeline-line { display: none; }

    .pipeline-stage {
        flex: 0 0 45%;
    }

    .social-showcase,
    .broadcast-grid,
    .ai-chat-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .flow-diagram-social,
    .broadcast-image-container {
        order: -1;
    }

    .ai-fusion-diagram {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .flow-outputs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mega-hero {
        padding: 7rem 0 4rem;
    }

    .mega-stats {
        gap: 2rem;
    }

    .mega-stat-value {
        font-size: 2.25rem;
    }

    .pipeline-stage {
        flex: 0 0 100%;
        max-width: 240px;
    }

    .indicators-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .data-streams {
        grid-template-columns: 1fr;
    }

    .ai-chat-features {
        grid-template-columns: 1fr;
    }

    .broadcast-features {
        grid-template-columns: 1fr;
    }

    .output-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }

    .correlation-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .social-section,
    .broadcast-section,
    .ai-chat-section,
    .correlation-section,
    .alpha-section,
    .trust-section,
    .output-section,
    .cta-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .mega-cta {
        flex-direction: column;
        align-items: center;
    }

    .mega-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .ai-chat-cta {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .btn-glow,
    .btn-glass,
    .btn-white,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .mega-hero::before,
    .mega-bg-grid,
    .mega-bg-glow,
    .social-floating-icons,
    .cta-section::before {
        display: none;
    }
    
    .reveal,
    .reveal-left,
    .reveal-right,
    .stagger-children > * {
        opacity: 1;
        transform: none;
    }
    
    .mega-hero {
        background: #070078;
        padding: 3rem 0;
    }
}