/* 
    7Digit Premium Modules CSS 
    Consolidated Glassmorphism, Bento Grid, and Nexus Scene Styles
*/

/* --- 1. Base Glassmorphism --- */
.glass-widget {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- 2. Bento Grid System --- */
.feature-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
}
.bento-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.bento-large { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

/* 7Digit Index Page Styles */
.hero-thumb.style2 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    z-index: 1;
}

.crystal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 25px;
}

.crystal-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 40px 30px;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
    width: 100%;
}

.crystal-card h3 { 
    font-size: clamp(20px, 2.5vw, 28px); 
    font-weight: 700; 
    color: #fff; 
    margin-bottom: 12px; 
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.crystal-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .crystal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .crystal-grid { 
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    .crystal-card { 
        width: 100% !important;
        min-height: auto !important;
        padding: 30px 20px !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
}

.crystal-nebula { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; pointer-events: none; opacity: 0.6; }
.nebula-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: rgba(123, 47, 247, 0.3); }
.nebula-2 { bottom: -10%; right: -10%; width: 600px; height: 600px; background: rgba(0, 198, 255, 0.2); }

.zenith-glow { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent); opacity: 0.3; transition: opacity 0.4s; }
.crystal-card:hover .zenith-glow { opacity: 1; }

.liquid-light { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.1), transparent 60%); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.crystal-card:hover .liquid-light { opacity: 1; }

.crystal-icon-wrap { font-size: 40px; margin-bottom: 25px; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.crystal-card:hover .crystal-icon-wrap { transform: translateY(-10px) scale(1.1); }

.crystal-action { font-family: 'Space Mono', monospace !important; font-size: 13px !important; color: rgba(255,255,255,0.5) !important; text-transform: uppercase !important; letter-spacing: 2px !important; font-weight: 600 !important; display: inline-flex !important; align-items: center !important; transition: all 0.3s ease !important; }
.crystal-action i { margin-left: 10px !important; font-size: 14px !important; transition: transform 0.3s !important; color: inherit !important; }
.crystal-card:hover .crystal-action { color: #fff !important; }
.crystal-card:hover .crystal-action i { transform: translateX(5px) !important; }

/* Ecosystem Animations */
.orbit-item {
    transition: transform 0.2s cubic-bezier(0.1, 0.5, 0.2, 1), box-shadow 0.3s ease;
    cursor: pointer;
}
.orbit-item:hover {
    box-shadow: 0 0 30px rgba(123, 47, 247, 0.4);
    z-index: 100;
    border-color: rgba(15, 240, 252, 0.6) !important;
}
.orbit-center {
    background: radial-gradient(circle, #7b2ff7, #0a0514);
    box-shadow: 0 0 40px rgba(123, 47, 247, 0.6);
    animation: centerPulse 4s infinite ease-in-out;
}
@keyframes centerPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(123, 47, 247, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(15, 240, 252, 0.4); }
}
.ecosystem-console {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}
.data-line-glow {
    stroke: #0ff0fc;
    stroke-width: 2;
    filter: drop-shadow(0 0 5px #0ff0fc);
    stroke-dasharray: 10;
    animation: flowGlow 2s linear infinite;
}
/* WhatsApp Page Styles */
.features-hero {
    padding: 150px 0 80px; 
    text-align: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}
.features-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(37, 211, 102, 0.2), transparent 70%);
}
.features-hero .badge-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    color: #25D366;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.features-hero h1 { font-size: 48px; font-weight: 800; }
.stats-bar { display: flex; justify-content: center; gap: 60px; padding: 50px 0; border-bottom: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.stat-number { font-size: 36px; font-weight: 800; background: linear-gradient(135deg, #25D366, #128C7E); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* WhatsApp Feature Cards */
.w-feature-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px; padding: 0 20px; max-width: 1200px; margin: 0 auto;
}
.w-feature-card {
    background: rgba(11, 20, 26, 0.7); border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(15px);
    border-radius: 16px; padding: 32px 28px; transition: all 0.4s;
    opacity: 0; transform: translateY(30px);
}
.w-feature-card.visible { opacity: 1; transform: translateY(0); }
.w-feature-card:hover { transform: translateY(-12px); border-color: rgba(37, 211, 102, 0.4); }

.wa-msg { max-width: 85%; padding: 6px 10px 8px 12px; border-radius: 8px; position: relative; font-size: 14px; line-height: 1.4; animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; opacity: 0; transform: scale(0.9); transform-origin: top left; text-align: left; }
.wa-msg.in { background: #202c33; color: #e9edef; align-self: flex-start; border-top-left-radius: 0; }
.wa-msg.out { background: #005c4b; color: #e9edef; align-self: flex-end; border-top-right-radius: 0; }
@keyframes popIn { to { opacity: 1; transform: scale(1); } }

/* WhatsApp API Tables */
.api-table-wrapper { 
    max-width: 1000px; margin: 40px auto; background: rgba(11, 20, 26, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 24px; 
    overflow: hidden; backdrop-filter: blur(20px); position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.api-table { width: 100%; border-collapse: collapse; position: relative; z-index: 1; }
.api-table th { text-align: left; padding: 20px 24px; font-size: 13px; font-weight: 700; color: #fff; background: rgba(255, 255, 255, 0.03); border-bottom: 1px solid rgba(255,255,255,0.1); }
.api-table td { padding: 18px 24px; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); transition: all 0.3s ease; }
.shimmer-text { background: linear-gradient(90deg, #fff 0%, #25D366 50%, #fff 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: shimmer 3s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }

/* Services Page Styles */
.premium-service-hero {
    position: relative; padding: 0; min-height: 800px;
    background: #05010d; overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.nexus-hero-wrap { position: relative; display: flex; align-items: center; background: radial-gradient(circle at 60% 50%, rgba(123, 47, 247, 0.12) 0%, transparent 50%); }
.digital-grid-floor { position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background-image: linear-gradient(rgba(15, 240, 252, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 240, 252, 0.08) 1px, transparent 1px); background-size: 60px 60px; transform: perspective(600px) rotateX(65deg); transform-origin: bottom; z-index: 1; mask-image: linear-gradient(to top, black, transparent); pointer-events: none; }
.neural-core-container { position: relative; width: 100%; height: 600px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.neural-core { position: relative; width: 180px; height: 180px; background: radial-gradient(circle at 30% 30%, #a271ff, #7b2ff7 40%, #00c6ff); border-radius: 50%; box-shadow: 0 0 40px rgba(123, 47, 247, 0.8), 0 0 100px rgba(123, 47, 247, 0.4), inset 0 0 40px rgba(255, 255, 255, 0.2); z-index: 5; transition: transform 0.2s ease-out; animation: coreInternalPulse 4s infinite alternate ease-in-out; }
@keyframes coreInternalPulse { 0% { transform: scale(1); filter: brightness(1) drop-shadow(0 0 10px #7b2ff7); } 100% { transform: scale(1.08); filter: brightness(1.3) drop-shadow(0 0 30px #7b2ff7); } }

/* Tactical Shards */
.tactical-service-shard {
    background: rgba(15, 240, 252, 0.03); border: 1px solid rgba(15, 240, 252, 0.15);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 50px 40px; height: 100%; display: flex; flex-direction: column;
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
    position: relative; transition: all 0.5s ease; overflow: hidden;
}
.tactical-shard-wrap:hover .tactical-service-shard { background: rgba(15, 240, 252, 0.08); border-color: #0ff0fc; transform: translateY(-15px); }

.lcd-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06)); background-size: 100% 4px, 3px 100%; z-index: 1000; pointer-events: none; opacity: 0.15; }
.energy-arc-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.arc-path { fill: none; stroke: rgba(15, 240, 252, 0.12); stroke-width: 1.5; stroke-dasharray: 4 6; }
.signal-pulse { fill: #0ff0fc; filter: blur(2px) drop-shadow(0 0 5px #0ff0fc); }

/* Premium Blog Infographic Components */
.premium-summary {
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.05), rgba(123, 47, 247, 0.05));
    border: 1px solid rgba(123, 47, 247, 0.2);
    border-radius: 24px; padding: 40px; position: relative; overflow: hidden;
}
.summary-badge {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    background: #7b2ff7; color: #fff; padding: 8px 24px; border-radius: 50px;
    font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
}

.premium-flowchart {
    display: flex; flex-direction: column; gap: 40px; margin: 60px 0; position: relative;
}
.premium-flowchart::before {
    content: ''; position: absolute; left: 40px; top: 0; bottom: 0; width: 2px;
    background: dashed rgba(123, 47, 247, 0.3); z-index: 0;
}
.flow-step {
    display: flex; gap: 30px; align-items: flex-start; position: relative; z-index: 1;
}
.flow-icon {
    width: 80px; height: 80px; background: #0b141a; border: 2px solid #7b2ff7;
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 28px; color: #7b2ff7; flex-shrink: 0; transition: 0.4s;
    box-shadow: 0 0 20px rgba(123, 47, 247, 0.2);
}
.flow-step:hover .flow-icon { transform: scale(1.1) rotate(5deg); background: #7b2ff7; color: #fff; }
.flow-content h4 { color: #fff; margin-bottom: 10px; font-weight: 800; }
.flow-content p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; }

.vs-compare-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 50px 0;
}
.vs-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px; padding: 35px; transition: 0.3s;
}
.vs-card.p-pros { border-color: rgba(63, 185, 80, 0.3); background: rgba(63, 185, 80, 0.02); }
.vs-card.p-cons { border-color: rgba(248, 81, 73, 0.3); background: rgba(248, 81, 73, 0.02); }
.vs-header { font-size: 20px; font-weight: 800; margin-bottom: 25px; display: flex; align-items: center; gap: 12px; }

.status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.status-item {
    padding: 15px 20px; border-radius: 12px; background: rgba(255,255,255,0.03);
    display: flex; align-items: center; gap: 15px; font-size: 14px;
}
.status-item.s-do { border-left: 4px solid #3fb950; }
.status-item.s-dont { border-left: 4px solid #f85149; }
.status-item i { font-size: 16px; }
.s-do i { color: #3fb950; }
.s-dont i { color: #f85149; }

@media (max-width: 768px) {
    .vs-compare-grid, .status-grid { grid-template-columns: 1fr; }
    .premium-flowchart::before { left: 30px; }
    .flow-icon { width: 60px; height: 60px; font-size: 22px; }
}

/* --- RECONSTRUCTED NEURAL NEXUS AESTHETICS --- */
/* Decorative Edges & Hubs */
.hub-corner { position: absolute; width: 40px; height: 40px; border: 2px solid rgba(15, 240, 252, 0.4); z-index: 2; pointer-events: none; }
.hc-tl { top: 30px; left: 30px; border-right: none; border-bottom: none; }
.hc-br { bottom: 30px; right: 30px; border-left: none; border-top: none; }

.bitstream-edge {
    position: absolute;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: rgba(15, 240, 252, 0.4);
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    z-index: 2;
    pointer-events: none;
}
.be-left { top: 15%; left: 15px; }
.be-right { bottom: 15%; right: 15px; transform: rotate(180deg); }

/* Typography & Glows */
.glow-heading { color: #fff; font-weight: 800; text-shadow: 0 0 25px rgba(15, 240, 252, 0.3); }
.glow-text-cyan { color: #0ff0fc; text-shadow: 0 0 15px rgba(15, 240, 252, 0.6); }

.telemetry-label { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 1.5px; color: #0ff0fc; text-transform: uppercase; }
.telemetry-bar { height: 2px; background: linear-gradient(90deg, #0ff0fc, transparent); width: 100%; margin-top: 5px; opacity: 0.5; }

/* Cube HUD overlays */
.cube-telemetry {
    position: absolute; font-family: 'Space Mono', monospace; font-size: 10px;
    color: rgba(255, 255, 255, 0.8); background: rgba(15, 240, 252, 0.05);
    border: 1px solid rgba(15, 240, 252, 0.2); padding: 8px 12px;
    backdrop-filter: blur(5px); z-index: 10; line-height: 1.5;
}
.ct-1 { top: 20%; right: 10%; }
.ct-2 { bottom: 20%; left: 0%; }

/* Service Card Typography updates */
.premium-service-title { color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 15px; }
.premium-service-desc { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; }
.premium-service-link { font-family: 'Space Mono', monospace; font-size: 12px; color: #0ff0fc; font-weight: 700; text-decoration: none; transition: 0.3s; }
.premium-service-link:hover { color: #fff; text-shadow: 0 0 10px #0ff0fc; }
.hollow-icon { position: absolute; top: 30px; right: 30px; font-size: 100px; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.05); z-index: 0; }

/* Tactical Shard Inner Details */
.diagnostic-scanner { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: #0ff0fc; box-shadow: 0 0 10px #0ff0fc; opacity: 0.5; animation: scan 4s linear infinite; z-index: 0; }
@keyframes scan { 0% { top: 0; opacity: 0; } 10% { opacity: 0.5; } 90% { opacity: 0.5; } 100% { top: 100%; opacity: 0; } }

.shard-bracket { position: absolute; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,0.2); z-index: 1; }
.shard-bracket.b-tl { top: 15px; left: 15px; border-right: none; border-bottom: none; }
.shard-bracket.b-br { bottom: 15px; right: 15px; border-left: none; border-top: none; }

/* =========================================
   7. WhatsApp Premium Modules (Restored)
   ========================================= */

/* Prism Container */
.prism-container {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(11, 7, 16, 0.4) 0%, rgba(5, 2, 8, 0.6) 100%);
    overflow: hidden;
}

/* Engage Flow — Premium Open Layout (No Boxes) */
.engage-flow {
    position: relative;
    margin-top: 60px;
    padding-left: 30px;
}

/* Vertical animated pulse line */
.engage-pulse-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(37,211,102,0.3), rgba(123,47,247,0.3), rgba(0,198,255,0.3));
    z-index: 0;
}

.engage-pulse-line::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -2px;
    width: 6px;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(37,211,102,0.8), transparent);
    border-radius: 3px;
    animation: engagePulseTravel 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes engagePulseTravel {
    0% { top: -10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Each feature row */
.engage-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 0 40px 40px;
    position: relative;
    transition: all 0.4s ease;
}

.engage-item:hover {
    transform: translateX(8px);
}

/* Dot on the pulse line */
.engage-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 55px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.2);
    z-index: 2;
    transition: all 0.4s ease;
}

.engage-item:nth-child(2)::before { border-color: rgba(37,211,102,0.5); box-shadow: 0 0 8px rgba(37,211,102,0.3); }
.engage-item:nth-child(4)::before { border-color: rgba(123,47,247,0.5); box-shadow: 0 0 8px rgba(123,47,247,0.3); }
.engage-item:nth-child(6)::before { border-color: rgba(0,198,255,0.5); box-shadow: 0 0 8px rgba(0,198,255,0.3); }

.engage-item:hover::before { transform: scale(1.6); }

/* Large gradient serial number */
.engage-serial {
    font-family: 'Space Mono', monospace;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, var(--serial-color), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    flex-shrink: 0;
    width: 90px;
    text-align: center;
    transition: opacity 0.4s ease;
    user-select: none;
}

.engage-item:hover .engage-serial { opacity: 0.45; }

/* Vertical color accent bar */
.engage-accent {
    width: 3px;
    min-height: 80px;
    align-self: stretch;
    background: linear-gradient(180deg, var(--accent), transparent);
    border-radius: 3px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.engage-item:hover .engage-accent { opacity: 1; }

/* Content body */
.engage-body {
    flex: 1;
    position: relative;
}

/* Floating icon */
.engage-icon-float {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--icon-bg);
    border: 1px solid var(--icon-border);
    color: var(--icon-color);
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.engage-item:hover .engage-icon-float {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Title */
.engage-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

/* Description */
.engage-desc {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 540px;
}

/* Stat highlight row */
.engage-stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.engage-metric {
    font-family: 'Space Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.engage-item:nth-child(2) .engage-metric { color: #25D366; }
.engage-item:nth-child(4) .engage-metric { color: #7b2ff7; }
.engage-item:nth-child(6) .engage-metric { color: #00c6ff; }

.engage-metric i { font-size: 12px; }

.engage-metric-label {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.3px;
}

/* Divider between features */
.engage-divider {
    height: 1px;
    margin: 0 0 0 120px;
    background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02), transparent);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .engage-flow { padding-left: 20px; }
    .engage-pulse-line { display: none; }
    .engage-item { flex-direction: column; gap: 15px; padding: 30px 0 30px 15px; }
    .engage-item::before { display: none; }
    .engage-serial { font-size: 48px; width: auto; }
    .engage-accent { width: 100%; height: 2px; min-height: auto; background: linear-gradient(90deg, var(--accent), transparent); }
    .engage-divider { margin-left: 0; }
}


/* Strategy Roadmap — Premium Redesign */
.roadmap-timeline-row {
    position: relative;
    display: flex;
    gap: 30px;
    padding-top: 30px;
}

/* Horizontal connector line behind cards */
.roadmap-timeline-row::before {
    content: '';
    position: absolute;
    top: 52px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(37,211,102,0.05), rgba(37,211,102,0.35), rgba(123,47,247,0.35), rgba(123,47,247,0.05));
    z-index: 0;
}

.roadmap-col {
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Timeline dot above each card */
.roadmap-col::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #0d0b14;
    border: 2px solid rgba(37, 211, 102, 0.6);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.35);
    transition: all 0.4s ease;
}

.roadmap-col:nth-child(2)::before { border-color: rgba(0, 198, 255, 0.6); box-shadow: 0 0 12px rgba(0, 198, 255, 0.35); }
.roadmap-col:nth-child(3)::before { border-color: rgba(123, 47, 247, 0.6); box-shadow: 0 0 12px rgba(123, 47, 247, 0.35); }

.roadmap-col:hover::before { transform: translateX(-50%) scale(1.5); }

/* Card outer wrapper for gradient border */
.strategy-card {
    position: relative;
    background: rgba(14, 11, 22, 0.85);
    border-radius: 24px;
    padding: 36px 30px 30px;
    height: 100%;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: default;
}

/* Animated gradient border on hover */
.strategy-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(37,211,102,0.4), rgba(0,198,255,0.2), rgba(123,47,247,0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.strategy-card:hover::before { opacity: 1; }

/* Shimmer sweep on hover */
.strategy-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.04) 50%, transparent 70%);
    transition: left 0.7s ease;
    z-index: 0;
    pointer-events: none;
}

.strategy-card:hover::after { left: 100%; }

.strategy-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(37, 211, 102, 0.06);
}

/* Step number badge */
.strategy-step-num {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    z-index: 1;
    transition: color 0.4s ease;
}

.strategy-card:hover .strategy-step-num { color: rgba(255, 255, 255, 0.35); }

/* Icon container */
.strategy-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.strategy-icon.icon-green {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.strategy-icon.icon-cyan {
    background: rgba(0, 198, 255, 0.1);
    border: 1px solid rgba(0, 198, 255, 0.2);
    color: #00c6ff;
}

.strategy-icon.icon-purple {
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.2);
    color: #7b2ff7;
}

.strategy-card:hover .strategy-icon {
    transform: translateY(-5px) scale(1.1);
}

.strategy-card:hover .strategy-icon.icon-green { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25); background: rgba(37, 211, 102, 0.15); }
.strategy-card:hover .strategy-icon.icon-cyan { box-shadow: 0 8px 25px rgba(0, 198, 255, 0.25); background: rgba(0, 198, 255, 0.15); }
.strategy-card:hover .strategy-icon.icon-purple { box-shadow: 0 8px 25px rgba(123, 47, 247, 0.25); background: rgba(123, 47, 247, 0.15); }

/* Title & Text */
.roadmap-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}

.roadmap-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14.5px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Subtle glow blob in card background */
.strategy-card .card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
    bottom: -40px;
    right: -40px;
}

.strategy-card:hover .card-glow { opacity: 0.5; }

.card-glow.glow-green { background: rgba(37, 211, 102, 0.3); }
.card-glow.glow-cyan { background: rgba(0, 198, 255, 0.3); }
.card-glow.glow-purple { background: rgba(123, 47, 247, 0.3); }

/* Mobile responsive */
@media (max-width: 992px) {
    .roadmap-timeline-row {
        flex-direction: column;
        gap: 28px;
        padding-top: 0;
    }
    .roadmap-timeline-row::before { display: none; }
    .roadmap-col::before { display: none; }
}


/* Industry Showcase — Premium Redesign */
.ind-pills-wrap {
    margin-top: 40px;
    position: relative;
}

.ind-pills-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}

.ind-pills-scroll::-webkit-scrollbar { display: none; }

.ind-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.ind-pill i { font-size: 14px; }

.ind-pill:hover {
    border-color: rgba(37, 211, 102, 0.3);
    color: rgba(255,255,255,0.8);
    background: rgba(37, 211, 102, 0.05);
}

.ind-pill.active {
    background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(37,211,102,0.05));
    border-color: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

/* Content Showcase */
.ind-showcase {
    margin-top: 35px;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
}

.ind-accent-bar {
    height: 3px;
    background: linear-gradient(90deg, #25D366, #00c6ff, #7b2ff7);
    border-radius: 3px 3px 0 0;
}

.ind-showcase-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 45px;
    align-items: center;
}

/* Info Section */
.ind-showcase-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #25D366;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.ind-showcase-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.ind-showcase-desc {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 22px;
}

/* Feature Chips */
.ind-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.ind-feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.12);
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ind-feature-chip i {
    color: #25D366;
    font-size: 12px;
}

.ind-feature-chip:hover {
    background: rgba(37, 211, 102, 0.12);
    transform: translateY(-2px);
}

/* Metrics Strip */
.ind-metrics-strip {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ind-metric-val {
    font-family: 'Space Mono', monospace;
    font-size: 28px;
    font-weight: 800;
    color: #25D366;
    display: block;
    line-height: 1;
}

.ind-metric-lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    display: block;
}

.ind-metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.08);
}

/* Phone Frame */
.ind-phone-frame {
    width: 260px;
    height: 480px;
    background: #0b141a;
    border: 6px solid #1f222b;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.5),
        0 0 15px rgba(37, 211, 102, 0.08);
    margin: 0 auto;
}

.ind-phone-notch {
    width: 80px;
    height: 22px;
    background: #1f222b;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ind-phone-header {
    background: #202c33;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ind-phone-avatar {
    width: 32px;
    height: 32px;
    background: #6a7175;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.ind-phone-name {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.ind-phone-status {
    color: #25D366;
    font-size: 10px;
}

.ind-phone-status i {
    font-size: 6px;
    margin-right: 3px;
}

.ind-phone-chat {
    padding: 12px;
    height: calc(100% - 120px);
    overflow-y: auto;
    background: #0b141a;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ind-phone-chat .wa-msg {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: none;
    margin-bottom: 0;
}

.ind-phone-chat .wa-msg.in {
    background: #202c33;
    color: #e9edef;
    align-self: flex-start;
    border-top-left-radius: 0;
    margin-right: auto;
}

.ind-phone-chat .wa-msg.out {
    background: #005c4b;
    color: #e9edef;
    align-self: flex-end;
    border-top-right-radius: 0;
    margin-left: auto;
}

.ind-phone-chat .wa-time {
    color: rgba(255,255,255,0.4);
}

.ind-phone-chat .wa-ticks { color: #53bdeb; }

.ind-phone-footer {
    height: 42px;
    background: #202c33;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.ind-phone-footer i {
    color: rgba(255,255,255,0.4);
    font-size: 16px;
}

.ind-phone-footer i:last-child { color: #00a884; }

.ind-phone-input {
    flex: 1;
    height: 28px;
    background: #2a3942;
    border-radius: 14px;
}

/* Mobile Responsive — Industry */
@media (max-width: 992px) {
    .ind-showcase-inner {
        grid-template-columns: 1fr;
        padding: 30px 25px;
        gap: 30px;
    }
    .ind-pills-scroll { justify-content: flex-start; }
    .ind-showcase-visual { display: flex; justify-content: center; }
    .ind-phone-frame { width: 240px; height: 440px; }
}

@media (max-width: 576px) {
    .ind-showcase-inner { padding: 24px 18px; }
    .ind-showcase-title { font-size: 1.5rem; }
    .ind-features-list { gap: 8px; }
    .ind-feature-chip { padding: 6px 12px; font-size: 12px; }
    .ind-metrics-strip { gap: 20px; }
    .ind-metric-val { font-size: 22px; }
    .ind-showcase-visual { display: none; }
    .ind-pill { padding: 10px 16px; font-size: 13px; }
}

/* Responsive Table */
.api-table-wrapper {
    overflow-x: auto;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 1px;
    margin-top: 30px;
}

.api-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.api-table th { background: rgba(255,255,255,0.03); color: #25D366; text-align: left; padding: 20px; font-size: 14px; font-weight: 700; border-bottom: 2px solid rgba(37, 211, 102, 0.2); }
.api-table td { padding: 18px 20px; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 14px; }
.api-table tr:hover td { background: rgba(255,255,255,0.02); }

/* Visuals */
.broadcast-visual { position: relative; width: 100%; height: 400px; display: flex; align-items: center; justify-content: center; }
.pulse-container { width: 100px; height: 100px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 40px; z-index: 2; box-shadow: 0 0 50px rgba(37, 211, 102, 0.4); }
.pulse-ring { position: absolute; width: 100px; height: 100px; border: 2px solid #25D366; border-radius: 50%; animation: ripple 3s infinite; opacity: 0; }
.pulse-ring:nth-child(2) { animation-delay: 1s; }
.pulse-ring:nth-child(3) { animation-delay: 2s; }

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(4); opacity: 0; }
}

.floating-stat-card { position: absolute; background: rgba(26, 20, 35, 0.8); border: 1px solid rgba(255,255,255,0.1); padding: 15px 20px; border-radius: 12px; backdrop-filter: blur(10px); display: flex; flex-direction: column; min-width: 120px; z-index: 3; animation: float 6s ease-in-out infinite; }
.stat-1 { top: 10%; left: 10%; }
.stat-2 { bottom: 10%; right: 10%; animation-delay: 2s; }
.stat-3 { top: 50%; right: 5%; animation-delay: 4s; }

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

/* Interaction Hub Visuals */
.interaction-visual {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-center {
    width: 120px;
    height: 120px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
    box-shadow: 0 0 60px rgba(37, 211, 102, 0.4);
    z-index: 2;
}

.activity-card {
    position: absolute;
    background: rgba(26, 20, 35, 0.85);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 18px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    width: 180px;
    z-index: 3;
    animation: float 5s ease-in-out infinite;
}

.act-1 { top: 10%; left: 5%; animation-delay: 0s; }
.act-2 { top: 15%; right: 5%; animation-delay: 1s; }
.act-3 { bottom: 15%; left: 0%; animation-delay: 2s; }
.act-4 { bottom: 10%; right: 0%; animation-delay: 3s; }

.activity-card .avatar { width: 35px; height: 35px; border-radius: 50%; background: #444; }
.activity-card .text-wrap { display: flex; flex-direction: column; }
.activity-card .title { font-size: 12px; color: #fff; font-weight: 600; }
.activity-card .sub { font-size: 10px; color: rgba(255,255,255,0.5); }

/* Technical Pillars */
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.pillar-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 25px; border-radius: 15px; transition: 0.3s; }
.pillar-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); transform: translateY(-5px); }
.pillar-card i { font-size: 24px; margin-bottom: 15px; }
.pillar-card h4 { font-size: 16px; margin-bottom: 8px; color: #fff; }
.pillar-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; margin: 0; }

.architecture-flow-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px;
}

.arch-node {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 700;
    width: 200px;
    justify-content: center;
}

.neon-pipe { width: 2px; height: 40px; background: #444; position: relative; }
.neon-pipe::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--pipe-color); box-shadow: 0 0 10px var(--pipe-color); animation: flow 2s linear infinite; }

@keyframes flow { 0% { top: -100%; } 100% { top: 100%; } }

/* --- Premium Feature Flow (Non-Box) --- */
.premium-features-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.features-aurora-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 30% 30%, rgba(37, 211, 102, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(123, 47, 247, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.feature-pill {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 24px;
    position: relative;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-8px);
}

.pill-icon-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pill-icon {
    font-size: 28px;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
}

.feature-pill:hover .pill-icon {
    transform: scale(1.2) rotate(8deg);
}

.pill-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--pill-color), transparent 70%);
    opacity: 0.15;
    filter: blur(8px);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 1;
}

.feature-pill:hover .pill-glow {
    opacity: 0.35;
    inset: -15px;
}

.pill-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.feature-pill:hover .pill-title {
    color: var(--pill-color);
}

.pill-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .premium-features-flow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .premium-features-flow { grid-template-columns: 1fr; gap: 20px; }
    .feature-pill { padding: 15px 0; }
    .feature-pill:hover { background: transparent; transform: translateX(5px); }
}

/* --- Infinite Flow: Premium Editorial Experience --- */
.premium-flow-section {
    background: #040208;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.flow-aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(37, 211, 102, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(123, 47, 247, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.flow-grain-overlay {
    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.02;
    pointer-events: none;
    z-index: 1;
}

/* 🛣️ The Travel-Line (Unique Scroll Animation) */
.flow-travel-line-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    z-index: 2;
}

.flow-travel-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%; /* This will be animated via scroll or just static for now */
    background: linear-gradient(to bottom, transparent, #25D366, transparent);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.flow-pulse-node {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 20px #25D366;
}

/* 💠 High-End Typography */
.flow-display-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.accent-glow {
    color: #25D366;
    text-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

.flow-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.flow-badge {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: #25D366;
    margin-bottom: 20px;
    display: block;
    font-family: 'Courier New', Courier, monospace;
}

/* 🏗️ Flow Items */
.flow-item {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.flow-visual-wrap {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🧭 Magnetic Core (3D Interaction) */
.flow-magnetic-core {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.magnetic-icon-lg {
    font-size: 80px;
    z-index: 5;
    filter: drop-shadow(0 0 30px rgba(37, 211, 102, 0.4));
    transition: transform 0.3s ease;
}

.magnetic-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: orbitRotate 10s linear infinite;
}

.magnetic-ring:nth-child(2) { inset: 30px; border-color: rgba(37, 211, 102, 0.2); border-style: dashed; animation-duration: 15s; animation-direction: reverse; }
.magnetic-ring:nth-child(3) { inset: -30px; border-color: rgba(255, 255, 255, 0.03); animation-duration: 25s; }

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

.flow-magnetic-core.color-blue .magnetic-icon-lg { filter: drop-shadow(0 0 30px rgba(0, 198, 255, 0.4)); }
.flow-magnetic-core.color-blue .magnetic-ring { border-color: rgba(0, 198, 255, 0.1); }

.flow-magnetic-core.color-purple .magnetic-icon-lg { filter: drop-shadow(0 0 30px rgba(123, 47, 247, 0.4)); }
.flow-magnetic-core.color-purple .magnetic-ring { border-color: rgba(123, 47, 247, 0.1); }

/* 📝 Editorial Content */
.flow-tag {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    color: #25D366;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
    opacity: 0.7;
}

.flow-item-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(to right, #fff, #25D366);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.flow-item-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 40px;
}

.flow-metric-row {
    display: flex;
    gap: 40px;
}

.f-metric { display: flex; flex-direction: column; }
.f-val { font-size: 2rem; font-weight: 800; color: #fff; }
.f-lab { font-size: 11px; color: #25D366; letter-spacing: 1px; }

.flow-feature-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.f-p { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); padding: 8px 18px; border-radius: 30px; font-size: 13px; color: rgba(255, 255, 255, 0.8); }

.flow-status-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(37, 211, 102, 0.05);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.1);
    width: fit-content;
}

.status-dot { width: 8px; height: 8px; background: #25D366; border-radius: 50%; }
.status-dot.pulsing { animation: statusPulse 2s infinite; }

@keyframes statusPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* 📱 Responsive Flow */
@media (max-width: 991px) {
    .flow-travel-line-container { left: 30px; transform: none; }
    .flow-display-title { font-size: 3rem; }
    .flow-item { padding: 60px 0; }
    .flow-visual-wrap { height: 300px; margin-bottom: 30px; }
    .flow-item-title { font-size: 2rem; }
    .flow-display-title { text-align: left; }
    .flow-subtitle { text-align: left; margin: 0; }
    .flow-magnetic-core { transform: scale(0.8); }
}

/* FAQ Module */

/* FAQ Module */
.premium-faq-container { display: flex; flex-direction: column; gap: 15px; }
.premium-faq-item { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; overflow: hidden; transition: 0.3s; }
.premium-faq-trigger { padding: 20px 25px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: #fff; font-weight: 600; }
.faq-icon-wrap { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.05); transition: 0.3s; }
.premium-faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: rgba(255,255,255,0.01); }
.premium-faq-inner { padding: 0 25px 20px; color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }
.premium-faq-item.active { border-color: #25D366; background: rgba(37, 211, 102, 0.02); }
.premium-faq-item.active .premium-faq-content { max-height: 500px !important; opacity: 1 !important; visibility: visible !important; }
.premium-faq-item.active .faq-icon-wrap { transform: rotate(45deg); background: #25D366; color: #000; }
.premium-faq-trigger { position: relative; z-index: 10; cursor: pointer; }

/* Media Queries for WhatsApp (Extended) */
@media (max-width: 992px) {
    .pillar-grid { grid-template-columns: 1fr; }
    .showcase-row { flex-direction: column; gap: 40px; }
    .showcase-row.reverse { flex-direction: column; }
    .feature-bento-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 576px) {
    .api-table th, .api-table td { padding: 12px 15px; font-size: 12px; }
    .feature-bento-grid { grid-template-columns: 1fr !important; }
    .bento-large { grid-column: span 1 !important; }
    .bento-tall { grid-row: span 1 !important; }
    .stats-bar { gap: 30px; }
    .stat-item { flex: 0 0 45%; }
}

/* Fix for large black voids */
.section-padding { padding: 80px 0; }
section + section.section-padding { padding-top: 0; } /* Reduce gap between adjacent sections */

/* --- Premium Comparison Cards (Refined 1st Image) --- */
.premium-comp-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.premium-comp-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(37, 211, 102, 0.2);
    transform: translateY(-10px);
}

.premium-comp-card.featured {
    background: rgba(37, 211, 102, 0.03);
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 211, 102, 0.1);
    z-index: 5;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #25D366;
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 8px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.comp-card-header h4 { font-size: 24px; margin-bottom: 5px; font-weight: 700; }
.comp-tag { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 30px; }

.comp-list { list-style: none; padding: 0; margin: 0; }
.comp-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 14px;
}

.comp-label { color: rgba(255,255,255,0.5); }
.comp-val { color: #fff; font-weight: 600; text-align: right; }
.premium-comp-card.featured .comp-val { color: #25D366; }

.card-glow-wrap {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(37, 211, 102, 0.15) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.premium-comp-card:hover .card-glow-wrap { opacity: 1; }

/* --- Premium Portal CTA (Refined 3rd Image) --- */
.portal-cta-section {
    background: #040208;
    overflow: hidden;
}

.portal-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.portal-display-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.portal-tag {
    color: #25D366;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.portal-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
}

.btn-portal-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: #000;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid transparent;
}

.btn-portal-primary:hover {
    background: #25D366;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.4);
}

.portal-signal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.signal-dot {
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

.signal-text {
    font-family: 'Courier New', Courier, monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .portal-display-title { font-size: 2.5rem; }
    .premium-comp-card { margin-bottom: 20px; }
}

/* --- WhatsApp Chat Simulation Styles --- */
.wa-phone-frame {
    z-index: 10;
    position: relative;
    background: #0b141a;
}

.wa-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
    color: #fff;
    animation: wa-msg-reveal 0.4s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes wa-msg-reveal {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-msg.in {
    align-self: flex-start;
    background: #202c33;
    border-bottom-left-radius: 2px;
}

.wa-msg.out {
    align-self: flex-end;
    background: #005c4b;
    border-bottom-right-radius: 2px;
}

.wa-time {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
    text-align: right;
}

.wa-ticks {
    color: #53bdeb;
    margin-left: 4px;
}

.typing-indicator span {
    display: inline-block;
    animation: wa-typing 1s infinite;
}

@keyframes wa-typing {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

#wa-chat-container::-webkit-scrollbar {
    width: 4px;
}

#wa-chat-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
/* --- 8. WhatsApp Nexus Infrastructure & AI Modules --- */
.nexus-infrastructure-section, .autonomous-horizon-section, .sovereignty-protocols-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

/* Performance Terminal Mockup */
.performance-terminal {
    background: #020002;
    border: 1px solid rgba(0, 198, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 20px rgba(0, 198, 255, 0.1);
    font-family: 'Space Mono', monospace;
    position: relative;
}

.terminal-header {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.terminal-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}

.terminal-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.line-label { color: rgba(255,255,255,0.5); }
.line-val { font-weight: 700; }
.line-val.status-ok { color: #25D366; text-shadow: 0 0 10px rgba(37, 211, 102, 0.4); }
.line-val.accent-cyan { color: #00c6ff; text-shadow: 0 0 10px rgba(0, 198, 255, 0.4); }

.terminal-progress-wrap { margin-top: 25px; height: 6px; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; }
.terminal-progress-bar { height: 100%; width: 85%; background: #25D366; box-shadow: 0 0 10px #25D366; animation: terminalLoad 3s ease-in-out infinite alternate; }

@keyframes terminalLoad { 0% { width: 40%; } 100% { width: 95%; } }

/* AI Maturity Model Viz */
.ai-maturity-card {
    background: rgba(14, 11, 22, 0.4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(20px);
    text-align: center;
}

.nexus-brain-viz {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
    background: radial-gradient(circle, #f107a3, #7b2ff7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 0 50px rgba(241, 7, 163, 0.4);
    animation: brainFloat 4s infinite ease-in-out;
}

@keyframes brainFloat { 
    0%, 100% { transform: translateY(0) scale(1); } 
    50% { transform: translateY(-10px) scale(1.05); filter: brightness(1.2); } 
}

.maturity-layers { text-align: left; margin-top: 30px; }
.maturity-layer { margin-bottom: 20px; }
.layer-info { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; color: rgba(255,255,255,0.7); }
.layer-bar-bg { height: 4px; background: rgba(255,255,255,0.05); border-radius: 10px; }
.layer-bar-fill { height: 100%; border-radius: 10px; transition: width 1.5s ease; }

.l-1 { width: 95%; background: #fff; }
.l-2 { width: 75%; background: #00c6ff; box-shadow: 0 0 10px #00c6ff; }
.l-3 { width: 45%; background: #25D366; box-shadow: 0 0 10px #25D366; }

/* Compliance Card Cluster */
.compliance-cluster {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(15px);
}

.compliance-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.compliance-check {
    width: 24px;
    height: 24px;
    color: #25D366;
    font-size: 18px;
    flex-shrink: 0;
}

.compliance-text h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.compliance-text p { font-size: 14px; color: rgba(255,255,255,0.5); margin: 0; line-height: 1.4; }

/* Global Typography Overrides */
.nexus-display-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.accent-glow { color: #0ff0fc; text-shadow: 0 0 20px rgba(15, 240, 252, 0.4); }

/* --- 9. Software Engineering & Arsenal Modules --- */
.telemetry-hud {
    background: rgba(14, 11, 22, 0.4);
    border: 1px solid rgba(88, 166, 255, 0.15);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.benchmark-dashboard {
    background: #020005;
    border: 1px solid rgba(188, 140, 255, 0.2);
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.software-display-title {
    font-size: clamp(34px, 5.5vw, 54px);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #fff;
}

.bar-uptime { background: #58a6ff; box-shadow: 0 0 10px #58a6ff; }
.bar-latency { background: #00c6ff; box-shadow: 0 0 10px #00c6ff; }
.bar-security { background: #25D366; box-shadow: 0 0 10px #25D366; }

.bar-ttfb { background: #58a6ff; box-shadow: 0 0 10px #58a6ff; }
.bar-cls { background: #bc8cff; box-shadow: 0 0 10px #bc8cff; }
.bar-seo { background: #25D366; box-shadow: 0 0 10px #25D366; }

/* --- 10. Engineering Saga: Quantum Deployment --- */
.saga-terminal {
    background: #020005;
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    font-family: 'Space Mono', monospace;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.log-stream {
    font-size: 12px;
    color: rgba(88, 166, 255, 0.6);
    line-height: 1.6;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.log-item {
    margin-bottom: 5px;
    animation: fadeInUp 0.5s ease-out forwards;
}

.saga-seal {
    width: 60px;
    height: 60px;
    background: rgba(88, 166, 255, 0.1);
    border: 1px solid rgba(88, 166, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(88, 166, 255, 0.2);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 11. Google Ads: Success Simulation (90-Day Protocol) --- */
.protocol-container {
    position: relative;
    padding-left: 50px;
    border-left: 2px solid rgba(66, 133, 244, 0.1);
    margin-left: 20px;
}

.protocol-node {
    position: relative;
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(66, 133, 244, 0.1);
    backdrop-filter: blur(15px);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.protocol-node:hover {
    border-color: rgba(66, 133, 244, 0.5);
    background: rgba(66, 133, 244, 0.05);
    transform: translateX(10px);
}

.phase-indicator {
    position: absolute;
    left: -66px;
    top: 40px;
    width: 30px;
    height: 30px;
    background: #020005;
    border: 2px solid var(--google-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 15px rgba(66, 133, 244, 0.5);
}

.phase-indicator::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--google-blue);
    border-radius: 50%;
    animation: phasePulse 2s infinite;
}

.protocol-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--google-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

@keyframes phasePulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

@media (max-width: 768px) {
    .protocol-container { padding-left: 30px; margin-left: 10px; }
    .phase-indicator { left: -46px; }
}

/* --- 12. Google Ads: Strategic Horizon (Projection Telemetry) --- */
.projection-hud {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.scanning-bar-container {
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 25px;
    overflow: hidden;
}

.scanning-bar {
    height: 100%;
    position: relative;
    border-radius: 10px;
}

.scanning-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: barScan 2s infinite linear;
}

.bar-ai { background: var(--google-blue); box-shadow: 0 0 10px var(--google-blue); }
.bar-visual { background: var(--theme-cyan); box-shadow: 0 0 10px var(--theme-cyan); }
.bar-cpa { background: var(--google-green); box-shadow: 0 0 10px var(--google-green); }

@keyframes barScan {
    0% { left: -30%; }
    100% { left: 100%; }
}

.strategic-dropcap {
    float: left;
    font-size: 5rem;
    line-height: 0.8;
    margin-right: 15px;
    color: var(--google-blue);
    font-weight: 950;
    text-shadow: 0 10px 20px rgba(66, 133, 244, 0.3);
}

/* ==================== SEO PREMIUM MODULES ==================== */

/* Lifecycle HUD */
.lifecycle-hud {
    position: relative;
    padding: 50px 40px;
    background: rgba(15, 240, 252, 0.03);
    border: 1px solid rgba(15, 240, 252, 0.15);
    border-radius: 40px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 0 50px rgba(15, 240, 252, 0.05);
}

.lifecycle-hud::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--seo-cyan), transparent);
    animation: h-scan 4s infinite linear;
}

.phase-progress-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
}

.phase-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--seo-cyan), var(--seo-blue));
    box-shadow: 0 0 15px var(--seo-cyan);
    position: relative;
}

.phase-progress-bar::after {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 50px; height: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: bar-glint 2s infinite linear;
}

@keyframes bar-glint {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(200px); }
}

/* Lexicon Tactical Nodes */
.lexicon-node {
    position: relative;
    padding: 35px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    overflow: hidden;
}

.lexicon-node:hover {
    background: rgba(15, 240, 252, 0.05);
    border-color: var(--seo-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.lexicon-node::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 3px; height: 100%;
    background: var(--seo-cyan);
    transform: scaleY(0);
    transition: 0.4s ease;
    transform-origin: top;
}

.lexicon-node:hover::after {
    transform: scaleY(1);
}

.lexicon-icon-wrap {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(15, 240, 252, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--seo-cyan);
    margin-bottom: 25px;
    border-radius: 12px;
    background: rgba(15, 240, 252, 0.05);
}

/* AI Ethics Premium Card */
.ethical-ai-container {
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(15, 240, 252, 0.02), rgba(0, 198, 255, 0.02));
    border: 1px solid rgba(15, 240, 252, 0.15);
    border-radius: 60px;
    backdrop-filter: blur(30px);
    position: relative;
    box-shadow: 0 0 100px rgba(15, 240, 252, 0.05);
}

.ethical-ai-container::after {
    content: 'ETHICAL_AI_v4.0';
    position: absolute;
    top: 30px; right: 40px;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--seo-cyan);
    opacity: 0.3;
    letter-spacing: 2px;
}

.ethical-dropcap {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 15px;
    padding-top: 5px;
    font-weight: 950;
    color: var(--seo-cyan);
    text-shadow: 0 0 20px rgba(15, 240, 252, 0.4);
}
