/* ═══════════════════════════════════════════════════════════════════
   ABOUT-DASHBOARD.CSS — Premium SaaS / AI / Enterprise Landing Page Hero
   Exact replica of the Wilx About Hero Section
   ═══════════════════════════════════════════════════════════════════ */

/* ─── VARIABLES ─────────────────────────────────────────────────── */
:root {
    --ab-bg-1: #07101F;
    --ab-bg-2: #091828;
    --ab-bg-3: #0D1E35;
    
    --ab-gold-1: #D4AF37;
    --ab-gold-2: #F0D98A;
    --ab-gold-3: #B8860B;
    
    --ab-blue-1: #4FC3F7;
    --ab-blue-2: #00D4FF;
    --ab-blue-3: #64B5F6;
    
    --ab-purple-1: #D16BFF;
    --ab-purple-2: #A855F7;
    
    --ab-glass-bg: rgba(255,255,255,0.03);
    --ab-glass-blur: blur(20px);
    --ab-glass-border: rgba(255,255,255,0.08);
    --ab-glass-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* ─── HERO DASHBOARD WRAPPER ────────────────────────────────────── */
.about-hero-dashboard {
    position: relative;
    background: radial-gradient(circle at 70% 50%, var(--ab-bg-2) 0%, var(--ab-bg-1) 100%);
    overflow: hidden; /* Desktop keeps hidden */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* ─── BASE RESET & VARIABLES ──────────────────────────────────────── */
body {
    background-color: var(--ab-bg-color);
    color: var(--ab-text-color);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* CRITICAL: Prevent any absolute positioned glow from triggering a horizontal scrollbar */
}

/* ─── BACKGROUND EFFECTS ────────────────────────────────────────── */
.about-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Grid Lines */
.about-bg-grid {
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(1000px) rotateX(60deg) translateY(-100px);
    opacity: 0.5;
}

/* Diagonal Network Lines */
.about-bg-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 100px,
        rgba(255,255,255,0.01) 100px,
        rgba(255,255,255,0.01) 101px
    );
    transform: translate(-25%, -25%);
}

/* Radial Light Bloom */
.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    will-change: transform, opacity;
}
.about-glow-gold { background: var(--ab-gold-1); width: 600px; height: 600px; top: 30%; right: 10%; }
.about-glow-blue { background: var(--ab-blue-2); width: 500px; height: 500px; bottom: 0%; right: 40%; opacity: 0.1; }
.about-glow-purple { background: var(--ab-purple-1); width: 400px; height: 400px; top: 10%; right: 30%; opacity: 0.1; }

/* Noise Texture */
.about-bg-noise {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.025;
    mix-blend-mode: overlay;
}

/* ─── HERO INNER LAYOUT ────────────────────────────────────────── */
.about-hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 100px 40px 40px;
    display: flex;
    align-items: center;
    min-height: 50rem;
}

/* ─── LEFT COLUMN ───────────────────────────────────────────────── */
.about-left-col {
    flex: 0 0 42%;
    padding-right: 40px;
    z-index: 20;
}

/* Badge */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4px 14px 4px 4px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
}
.about-badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ab-gold-2), var(--ab-gold-1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.7rem;
}
.about-badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--ab-gold-2);
}
.about-badge-line {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--ab-gold-1), transparent);
}

/* Heading */
.about-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 3.5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 20px;
}
.about-heading-gold {
    background: linear-gradient(135deg, #F0E68C, var(--ab-gold-1), #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.about-desc {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
}

.about-stats-card {
    display: flex;
    align-items: stretch; /* Force all stat columns to be identical height */
    justify-content: space-between;
    width: 100%;
    max-width: 580px; /* Matched the max-width we use in media queries */
    height: auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px; /* Slightly rounder for a premium look */
    padding: 36px 40px; /* Dramatically increased vertical breathing room */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(212,175,55,0.05);
}
.about-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content within identical height columns */
    align-items: flex-start; /* Force first column to strictly align left */
    padding-top: 12px; /* Optical compensation for Outfit font's high ascender */
}
.about-stat.text-center { text-align: center; align-items: center; }
.about-stat.text-right { text-align: right; align-items: flex-end; }

.about-stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
}
.about-stat-value.gold { color: var(--ab-gold-1); text-shadow: 0 0 15px rgba(212,175,55,0.2); }
.about-stat-value.blue { color: var(--ab-blue-2); text-shadow: 0 0 15px rgba(0,212,255,0.2); }
.about-stat-prefix, .about-stat-suffix {
    font-size: 1.2rem;
    font-weight: 600;
}
.about-stat-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    text-transform: uppercase;
}
.about-stat-sep {
    width: 1px;
    height: 70px; /* Taller separator to match the new spacious card */
    background: rgba(255,255,255,0.08);
    margin: 0 15px;
    align-self: center; /* Keep separator centered vertically */
}

/* ─── RIGHT COLUMN: DASHBOARD ECOSYSTEM ─────────────────────────── */
.about-right-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2500px;
    z-index: 10;
    /* Dimensions are now controlled strictly by JS to prevent flex overflow */
}

.about-ecosystem-scaler {
    width: 1600px;
    height: 1200px;
    /* Positioned absolute by JS to prevent layout blowout */
}

.about-ecosystem {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

/* ─── DATA HIGHWAYS (SVG) ───────────────────────────────────────── */
.about-highways {
    position: absolute;
    top: 0;
    left: 0;
    width: 1600px;
    height: 1200px;
    pointer-events: none;
    z-index: 1;
}
.highway-path {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}
.highway-path.blue { stroke: rgba(0, 212, 255, 0.2); }
.highway-path.orange { stroke: rgba(255, 140, 0, 0.2); }

.highway-glow {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    filter: blur(4px);
}
.highway-glow.blue { stroke: #00D4FF; }
.highway-glow.orange { stroke: #FF8C00; }
.highway-glow.purple { stroke: #D16BFF; }
.highway-glow.green { stroke: #00FF66; }

/* ─── CENTER PLATFORM (ISOMETRIC 3D) ────────────────────────────── */
.about-center-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(60deg) rotateZ(-45deg);
    transform-style: preserve-3d;
    z-index: 5;
    width: 200px;
    height: 200px;
}

/* Base Dark Platform */
.core-base {
    position: absolute;
    inset: -20px;
    background: rgba(10, 14, 24, 0.9);
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateZ(0);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}
.core-base::before, .core-base::after { 
    content: ''; position: absolute; background: rgba(5, 8, 15, 0.9);
}
.core-base::before { width: 100%; height: 20px; top: 100%; left: 0; transform-origin: top; transform: rotateX(-90deg); }
.core-base::after { width: 20px; height: 100%; top: 0; left: 100%; transform-origin: left; transform: rotateY(90deg); }

/* Neon Blue Platform */
.core-blue {
    position: absolute;
    inset: 10px;
    background: linear-gradient(135deg, #00D4FF, #0088AA);
    transform: translateZ(20px);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.5), 0 0 40px rgba(0,212,255,0.6);
}
.core-blue::before {
    content: ''; position: absolute; width: 100%; height: 10px; top: 100%; left: 0; transform-origin: top; transform: rotateX(-90deg);
    background: linear-gradient(to right, #0088AA, #005577);
}
.core-blue::after {
    content: ''; position: absolute; width: 10px; height: 100%; top: 0; left: 100%; transform-origin: left; transform: rotateY(90deg);
    background: linear-gradient(to bottom, #00D4FF, #0088AA);
}

/* Floating Store Cube (Corrected Math) */
.core-cube {
    position: absolute;
    inset: 50px; /* Makes the face 100x100 */
    transform-style: preserve-3d;
    transform: translateZ(70px); /* 20px gold layer + 50px local origin = exactly touching the gold */
}
.cube-face {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(209,107,255,0.15);
    border: 2px solid rgba(209,107,255,1);
    /* backdrop-filter removed to fix 3D clipping bug */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 40px rgba(209,107,255,0.5), 0 0 15px rgba(209,107,255,0.4);
}

/* Correct Cube math for a Z-up isometric container */
.cube-top    { transform: translateZ(50px); background: rgba(209,107,255,0.35); box-shadow: inset 0 0 50px rgba(209,107,255,0.7), 0 0 25px rgba(209,107,255,0.6); }
.cube-bottom { transform: translateZ(-50px) rotateY(180deg); }
.cube-front  { transform: translateY(50px) rotateX(90deg); }
.cube-back   { transform: translateY(-50px) rotateX(-90deg); }
.cube-right  { transform: translateX(50px) rotateY(90deg); }
.cube-left   { transform: translateX(-50px) rotateY(-90deg); }

.cube-icon { display: none; }

/* Core Text Label */
/* Cube Display Text (Printed on faces) */
.cube-face-text {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 1;
    text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(209,107,255,0.8);
    transform: rotateZ(180deg); /* Text orientation correction depending on face */
}

/* Specific face corrections for perfect Z-up isometric display */
.cube-front .cube-face-text { transform: rotateZ(180deg) rotateY(180deg); }
.cube-right .cube-face-text { transform: rotateZ(180deg) rotateX(180deg); }
.cube-left .cube-face-text { transform: rotateZ(180deg) rotateX(180deg); }
.cube-top .cube-face-text { transform: rotateZ(-45deg); }

.cube-text-intel { font-size: 12px; letter-spacing: 1px; }
.cube-text-brand { font-size: 16px; letter-spacing: 2px; }
.cube-text-core { font-size: 24px; letter-spacing: 4px; }

/* ─── DASHBOARD CARDS (GLASSMORPHISM) ───────────────────────────── */
.about-dash-card {
    position: absolute;
    background: var(--ab-glass-bg);
    backdrop-filter: var(--ab-glass-blur);
    -webkit-backdrop-filter: var(--ab-glass-blur);
    border: var(--ab-glass-border);
    box-shadow: var(--ab-glass-shadow);
    border-radius: 16px;
    padding: 24px;
    z-index: 10;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transform: translateY(0) translateZ(0);
    backface-visibility: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-dash-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 30px rgba(0,212,255,0.1);
}

.dash-header {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Card 1: Marketplace Operations (Top Left Quadrant) */
.card-marketplace {
    top: 20px;
    left: 20px;
    width: 550px;
    padding: 30px;
}
.card-marketplace .dash-header { color: var(--ab-blue-2); border-color: rgba(0,212,255,0.2); }
.card-marketplace .chart-canvas-wrap { height: 110px; } /* Increase chart height to stretch card diagonally */

.grid-icons { display: flex; gap: 10px; margin-bottom: 20px; }
.grid-icon-btn {
    flex: 1;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}
.grid-icon-btn i { color: var(--ab-blue-2); margin-right: 6px; }

.chart-box {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}
.chart-title {
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}
.live-badge {
    background: rgba(0,212,255,0.15);
    color: var(--ab-blue-2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 9px;
}
.chart-canvas-wrap { height: 80px; width: 100%; position: relative; }

/* Card 2: AI Studio Hub (Bottom Left Quadrant) */
.card-ai {
    top: 650px;
    left: 25px;
    width: 560px;
    padding: 30px;
}
.card-ai .dash-header { color: var(--ab-purple-1); border-color: rgba(209,107,255,0.2); }

.ai-icons { display: flex; gap: 12px; margin-bottom: 20px; }
.ai-icon-box {
    flex: 1;
    background: rgba(209,107,255,0.08);
    border: 1px solid rgba(209,107,255,0.2);
    border-radius: 10px;
    padding: 16px 10px;
    text-align: center;
    color: var(--ab-purple-1);
}
.ai-icon-box i { font-size: 24px; margin-bottom: 8px; }
.ai-icon-box span { display: block; font-size: 11px; font-weight: 600; color: #fff; }

.insight-list { display: flex; flex-direction: column; gap: 12px; }
.insight-item {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}
.insight-item i { color: var(--ab-gold-2); font-size: 14px; margin-top: 2px; }

/* Card 3: Digital Solutions (Right Quadrant) */
.card-digital {
    top: 300px;
    left: 1025px;
    width: 550px;
    padding: 30px;
}
.card-digital .dash-header { color: var(--ab-purple-2); border-color: rgba(168,85,247,0.2); }

.ds-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.ds-icons { display: flex; gap: 10px; }
.ds-icon-box {
    background: rgba(168,85,247,0.08);
    border: 1px solid rgba(168,85,247,0.2);
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--ab-purple-2); font-size: 1.2rem;
}
.ds-metric { text-align: right; }
.ds-metric-lbl { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }
.ds-metric-val { font-size: 30px; font-weight: 800; font-family: 'Outfit'; }

.funnel-container { display: flex; flex-direction: column; gap: 12px; }
.funnel-row { display: flex; align-items: center; gap: 12px; }
.funnel-meta { width: 60px; flex-shrink: 0; }
.funnel-pct { font-size: 14px; font-weight: 800; }
.funnel-lbl { font-size: 10px; color: rgba(255,255,255,0.4); }
.funnel-bar-bg { flex: 1; height: 16px; background: rgba(0,0,0,0.3); border-radius: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }
.funnel-bar-fill { height: 100%; border-radius: 8px; }

/* ─── FLOATING CODE PANELS ──────────────────────────────────────── */
.code-panel {
    position: absolute;
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.code-blue { color: var(--ab-blue-2); }
.code-gold { color: var(--ab-gold-2); }
.code-purple { color: var(--ab-purple-1); }

.code-1 { 
    top: 150px; 
    left: 1100px; 
    border-color: rgba(209,107,255,0.3); 
    font-size: 18px; 
    padding: 24px 30px; 
}
.code-2 { 
    top: 1000px; 
    left: 1050px; 
    border-color: rgba(212,175,55,0.3); 
    font-size: 18px; 
    padding: 24px 30px; 
}
.code-3 { 
    top: -10px; 
    left: 650px; 
    border-color: rgba(0,212,255,0.3); 
    font-size: 18px; 
    padding: 24px 30px; 
}

/* ─── RESPONSIVE DESIGN ─────────────────────────────────────────── */
@media (max-width: 1440px) {
    .about-hero-inner { max-width: 100%; padding: 100px 40px 40px; }
    .about-heading { font-size: 3.5rem; }
    .about-stats-card { width: 100%; padding: 0 24px; }
    .about-stat-value { font-size: 2.2rem; }
}

@media (max-width: 1280px) {
    /* Handled by JS scaling */
}

@media (max-width: 1024px) {
    .about-hero-dashboard {
        overflow: hidden; /* Fit strictly inside hero */
        align-items: center; /* Vertically center the entire block */
    }
    .about-hero-inner { flex-direction: column; padding-top: 100px; padding-bottom: 20px; min-height: auto; }
    .about-left-col { flex: none; width: 100%; max-width: 800px; padding-right: 0; text-align: center; margin-bottom: 0px; }
    .about-desc { margin: 0 auto 30px; }
    .about-stats-card { margin: 0 auto; width: 100%; max-width: 580px; }
    
    .about-right-col { 
        flex: none; 
        display: block; 
        margin: 40px auto 0 auto; /* Closer to stats */
    }
}

@media (max-width: 768px) {
    .about-heading { font-size: 2.5rem; margin-bottom: 15px; }
}

@media (max-width: 575px) {
    .about-hero-inner { padding: 80px 20px 20px; }
    .about-heading { font-size: 2.1rem; margin-bottom: 12px; }
    .about-desc { font-size: 15px; margin-bottom: 20px; }
    
    /* Ultra-compact Stats Card for mobile */
    .about-stats-card { flex-direction: column; height: auto; padding: 16px 20px; gap: 12px; border-radius: 12px; }
    .about-stat.text-center, .about-stat.text-right { text-align: center; align-items: center; }
    .about-stat-sep { width: 100%; height: 1px; margin: 0; }
    .about-stat-value { font-size: 1.8rem; margin-bottom: 2px; }
    .about-stat-prefix, .about-stat-suffix { font-size: 1.1rem; }
    .about-stat-label { font-size: 0.6rem; letter-spacing: 1px; }
    
    .about-right-col { 
        margin: 20px auto 0 auto; /* Bring ecosystem directly under stats */
    }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE - LOWER SECTIONS UI (Glassmorphism & Cyber Aesthetics)
   ═══════════════════════════════════════════════════════════════════ */

/* Global Section Styling */
.about-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    /* Deep dynamic gradient transition */
    background: linear-gradient(180deg, #07101F 0%, #091828 50%, #07101F 100%);
    z-index: 1;
}

.about-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.about-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-section-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* ─── 1. WHAT WE DO (GLASS GRID) ────────────────────────────────── */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.glass-card {
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px 40px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}
.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.card-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}
.glass-card:hover .card-gradient {
    opacity: 1;
    transform: scale(1);
}
.card-gradient.cyan { background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.15) 0%, transparent 60%); }
.card-gradient.gold { background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15) 0%, transparent 60%); }
.card-gradient.purple { background: radial-gradient(circle at top right, rgba(209, 107, 255, 0.15) 0%, transparent 60%); }
.card-gradient.magenta { background: radial-gradient(circle at top right, rgba(255, 42, 133, 0.15) 0%, transparent 60%); }

.glass-icon {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}
.glass-card:hover .glass-icon {
    transform: scale(1.1);
}
.glass-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.glass-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ─── 2. DIGITAL SOLUTIONS (HOLOGRAPHIC SHOWCASE) ────────────────── */
.holo-layout {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
}
.holo-tabs {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.holo-tab {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
    background: transparent;
}
.holo-tab:hover {
    background: rgba(255, 255, 255, 0.02);
}
.holo-tab.active {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), inset 4px 0 0 var(--ab-gold-1);
}
.tab-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}
.holo-tab.active .tab-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--ab-gold-1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}
.tab-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 5px;
    transition: color 0.4s ease;
}
.holo-tab.active .tab-text h5 {
    color: #fff;
}
.tab-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.holo-monitor {
    flex: 1;
    height: 500px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(15, 23, 42, 0.6));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.monitor-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}
.monitor-content {
    position: absolute;
    inset: 0;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.monitor-content.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Mock UIs inside Monitor */
.mock-browser {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}
.mock-top {
    height: 30px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 8px;
}
.mock-top span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); }
.mock-body { padding: 20px; }
.mock-hero { height: 100px; border-radius: 8px; margin-bottom: 20px; }
.gradient-purple { background: linear-gradient(135deg, rgba(209, 107, 255, 0.2), transparent); border: 1px solid rgba(209, 107, 255, 0.3); }
.mock-grid { display: flex; gap: 15px; }
.mock-box { flex: 1; height: 80px; background: rgba(255, 255, 255, 0.03); border-radius: 8px; }

.mock-dashboard {
    width: 100%;
    max-width: 500px;
    height: 300px;
    display: flex;
    gap: 20px;
}
.mock-sidebar {
    width: 80px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}
.mock-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mock-chart-large {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    gap: 15px;
}
.mock-chart-large .bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px 4px 0 0;
}
.mock-chart-large .bar.h-40 { height: 40%; }
.mock-chart-large .bar.h-60 { height: 60%; }
.mock-chart-large .bar.h-70 { height: 70%; }
.mock-chart-large .bar.gold { background: linear-gradient(180deg, var(--ab-gold-2), transparent); border: 1px solid var(--ab-gold-1); box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); border-bottom: none; }
.mock-stats { display: flex; gap: 15px; height: 60px; }
.mock-stats span { flex: 1; background: rgba(255, 255, 255, 0.02); border-radius: 12px; }

.mock-automation {
    text-align: center;
}
.gear-spinner {
    font-size: 5rem;
    color: rgba(0, 212, 255, 0.3);
    animation: spin 10s linear infinite;
    margin-bottom: 30px;
}
.flow-lines .line {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin: 15px auto;
}
.line.l1 { width: 100px; } .line.l2 { width: 200px; background: rgba(0, 212, 255, 0.2); box-shadow: 0 0 10px rgba(0, 212, 255, 0.4); } .line.l3 { width: 150px; }

.mock-utility {
    display: flex;
    align-items: center;
    gap: 30px;
}
.api-node, .db-node {
    width: 80px; height: 80px;
    background: rgba(255, 42, 133, 0.1);
    border: 1px solid rgba(255, 42, 133, 0.3);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #FF2A85; font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 42, 133, 0.2);
}
.db-node { background: rgba(0, 212, 255, 0.1); border-color: rgba(0, 212, 255, 0.3); color: #00D4FF; box-shadow: 0 0 30px rgba(0, 212, 255, 0.2); }
.api-connectors { display: flex; gap: 10px; }
.api-connectors .dot { width: 8px; height: 8px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; animation: pulse 1.5s infinite alternate; }
.api-connectors .dot:nth-child(2) { animation-delay: 0.2s; } .api-connectors .dot:nth-child(3) { animation-delay: 0.4s; }


/* ─── 3. AI STUDIO (NEURAL NETWORK) ─────────────────────────────── */
.premium-neural-net {
    position: relative;
    padding: 100px 0;
}
.neural-core-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite alternate;
}
.neural-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
    z-index: 2;
}
.neural-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.neural-card:hover {
    transform: translateY(-5px);
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.1), inset 0 0 30px rgba(0, 212, 255, 0.05);
}
.neural-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00D4FF;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    transition: all 0.5s ease;
}
.neural-card:hover .neural-ring {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    transform: scale(1.1);
}
.neural-card h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}
.neural-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}
.ai-footer-text {
    text-align: center; max-width: 700px; margin: 0 auto; color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1.6;
}

/* ─── 4. OUR APPROACH (HORIZON STRIPS) ───────────────────────────── */
.horizon-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.horizon-strip {
    position: relative;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.horizon-strip:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.strip-light {
    position: absolute;
    top: 0; left: 0; bottom: 0; width: 4px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
}
.horizon-strip:hover .strip-light { width: 100%; opacity: 0.05; }
.strip-light.cyan { background: #00D4FF; }
.strip-light.gold { background: var(--ab-gold-2); }
.strip-light.purple { background: #D16BFF; }
.strip-light.magenta { background: #FF2A85; }

.strip-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    transition: color 0.4s ease;
    z-index: 1;
}
.horizon-strip:hover .strip-num { color: #fff; }

.strip-text {
    flex: 1;
    z-index: 1;
}
.strip-text h4 {
    font-size: 1.6rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
    transition: color 0.4s ease;
}
.horizon-strip:hover .strip-text h4 { color: var(--ab-gold-1); }
.strip-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    overflow: hidden;
}
.horizon-strip:hover .strip-text p {
    max-height: 100px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px;
}

.strip-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 1;
}
.horizon-strip:hover .strip-arrow {
    color: #fff;
    transform: translateX(10px);
}

/* Premium CTA */
.about-closing-text { font-size: 1.3rem; color: rgba(255,255,255,0.6); max-width: 700px; margin: 0 auto 40px; line-height: 1.6; }
.premium-cta-btn { position: relative; display: inline-flex; padding: 20px 50px; background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.3); border-radius: 40px; text-decoration: none; overflow: hidden; transition: all 0.4s ease; }
.btn-text { position: relative; z-index: 2; font-size: 1.2rem; font-weight: 700; color: var(--ab-gold-1); display: flex; align-items: center; gap: 12px; transition: color 0.4s ease; }
.btn-glow { position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent); transform: translateX(-100%); transition: transform 0.6s ease; z-index: 1; }
.premium-cta-btn:hover { background: rgba(212,175,55,0.15); border-color: var(--ab-gold-2); box-shadow: 0 0 30px rgba(212,175,55,0.2); }
.premium-cta-btn:hover .btn-glow { transform: translateX(100%); }
.premium-cta-btn:hover .btn-text { color: #fff; }
.premium-cta-btn:hover i { transform: translateX(5px); }
.premium-cta-btn i { transition: transform 0.3s ease; }

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }
@keyframes pulse { 0% { transform: scale(0.9); opacity: 0.8; } 100% { transform: scale(1.1); opacity: 1; } }

/* ─── RESPONSIVE MEDIA QUERIES FOR NEW SECTIONS ──────────────────── */
@media (max-width: 1024px) {
    .glass-grid { grid-template-columns: repeat(2, 1fr); }
    .holo-layout { flex-direction: column; }
    .holo-tabs { flex: none; width: 100%; display: grid; grid-template-columns: repeat(2, 1fr); }
    .neural-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .glass-grid { grid-template-columns: 1fr; }
    .holo-tabs { grid-template-columns: 1fr; }
    .holo-monitor { height: 400px; }
    .neural-grid { grid-template-columns: 1fr; }
    .horizon-strip { flex-direction: column; text-align: center; gap: 20px; }
    .horizon-strip:hover .strip-text p { max-height: 200px; }
    .strip-arrow { display: none; }
    .strip-light { top: auto; bottom: 0; width: 100%; height: 4px; }
    .horizon-strip:hover .strip-light { height: 100%; opacity: 0.05; }
}
