/* =========================
   AZENIS - INDEX CSS
   Ciber-Resiliencia Operativa GT·SV·HN
   COLOR PRINCIPAL: AZUL MARINO BRILLANTE (#1E90FF)
   Versión optimizada y modular
========================= */

/* =========================
   VARIABLES CSS
========================= */
:root {
    --navy: #0A1F2E;
    --navy-glass: rgba(10, 31, 46, 0.75);
    --navy-glass-solid: rgba(10, 31, 46, 0.95);
    --blue: #1E90FF;
    --blue-glow: rgba(30, 144, 255, 0.5);
    --blue-border: rgba(30, 144, 255, 0.3);
    --bg-dark: #121212;
    --gray: #9CA3AF;
    --white: #FFFFFF;
    
    --sentinel-blue: #00A3FF;
    --oraculo-violet: #6E7BFF;
    --nemesis-red: #FF4D5A;
    --aegis-cyan: #00E5FF;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--bg-dark);
}

/* =========================
   UTILITIES
========================= */
.container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* =========================
   HERO SECTION - PREMIUM
========================= */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/index/hero-home.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    z-index: 0;
}

.hero-network-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-network-layer canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-bokeh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(0,0,0,0.3) 100%);
}

.hero .cyber-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--blue-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--blue-border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 3;
}

.hero-particles-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero h1 .blue {
    background: linear-gradient(135deg, var(--blue), #4DB8FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero Badges */
.hero-badge-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.premium-badge {
    background: rgba(30, 144, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid var(--blue-border);
    border-radius: 9999px;
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--blue);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-live-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px #10B981;
}

.badge-metrics {
    display: flex;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    color: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.badge-metrics span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-metrics i {
    color: var(--blue);
    font-size: 0.7rem;
}

/* Typing Animation */
.hero-typing-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 0;
    max-width: 90%;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    display: inline;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2rem;
    background-color: var(--blue);
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}

/* Hero Stats */
.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--blue-border), transparent);
}

/* Activity Bar */
.hero-activity-bar {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.activity-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--blue);
    text-transform: uppercase;
}

.activity-label i {
    font-size: 0.8rem;
}

.activity-strip {
    display: flex;
    gap: 4px;
    align-items: center;
}

.activity-pulse {
    width: 3px;
    height: 20px;
    background: var(--blue);
    border-radius: 2px;
    animation: activityWave 1s ease-in-out infinite;
}

.activity-pulse:nth-child(1) { animation-delay: 0s; height: 12px; }
.activity-pulse:nth-child(2) { animation-delay: 0.15s; height: 20px; }
.activity-pulse:nth-child(3) { animation-delay: 0.3s; height: 16px; }
.activity-pulse:nth-child(4) { animation-delay: 0.45s; height: 24px; }
.activity-pulse:nth-child(5) { animation-delay: 0.6s; height: 10px; }

.activity-text {
    font-size: 0.7rem;
    color: var(--gray);
    font-family: monospace;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--blue-border);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--blue);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

/* =========================
   BUTTONS
========================= */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), #0099FF);
    color: var(--white) !important;
    border: 1.5px solid var(--blue);
    box-shadow: var(--shadow-md);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-premium {
    position: relative;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-premium:hover .btn-glow {
    left: 100%;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    background: radial-gradient(circle at 30% 30%, rgba(30,144,255,0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-premium:hover::after {
    opacity: 1;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--navy), #0D2A3D);
    color: var(--blue) !important;
    border: 1.5px solid var(--blue);
    box-shadow: var(--shadow-md);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover::before {
    left: 100%;
}

/* =========================
   ABOUT SECTION
========================= */
.about {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #121212 0%, rgba(10, 31, 46, 0.95) 50%, #121212 100%);
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://azenis.com.gt/assets/images/index/quienes-somos.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 60%, rgba(0,0,0,0.2) 100%);
    z-index: 0;
    pointer-events: none;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-content {
    text-align: left;
    max-width: 700px;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.about-title span {
    background: linear-gradient(135deg, var(--blue), #4DB8FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-highlight {
    background: linear-gradient(135deg, var(--blue), #4DB8FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* =========================
   TELEMETRY SECTION
========================= */
.telemetry-section {
    position: relative;
    min-height: 85vh;
    padding: 80px 0;
    background: url('https://azenis.com.gt/assets/images/index/telemetria.jpg') center/cover no-repeat fixed;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
    overflow: hidden;
}

.telemetry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(180, 0, 0, 0.28) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(180, 0, 0, 0.18) 0%, transparent 45%),
        linear-gradient(135deg, rgba(5,5,5,0.4) 0%, rgba(10,10,10,0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.telemetry-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

.telemetry-section .glass-tactical {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.telemetry-section .container {
    position: relative;
    z-index: 2;
}

.telemetry-section h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-align: center;
}

.telemetry-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.telemetry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.countries-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.country-card {
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--country-color);
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--country-color);
}

.country-card:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px var(--country-glow);
    border-color: var(--country-color);
    border-width: 1.5px;
}

.country-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.country-name {
    font-weight: 400;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--country-color);
}

.country-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.metric-item {
    margin-bottom: 1rem;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.metric-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    overflow: hidden;
    height: 4px;
}

.metric-fill {
    height: 100%;
    border-radius: 9999px;
    transition: width 1s ease;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    text-align: center;
}

.stat-label {
    font-size: 0.6rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.right-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(10, 31, 46, 0.45));
    backdrop-filter: blur(16px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--blue-border);
    transition: all 0.3s ease;
}

.status-card:hover {
    border-color: var(--blue);
    box-shadow: 0 0 20px var(--blue-glow);
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-row:last-child {
    border-bottom: none;
}

.status-label {
    font-weight: 600;
    color: var(--gray);
    font-size: 0.85rem;
}

.threat-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.3);
}

.threat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.metric-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(10, 31, 46, 0.4));
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid var(--blue-border);
}

.metric-card:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(10, 31, 46, 0.5));
    border-color: var(--blue);
}

.metric-label {
    font-size: 0.65rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue);
}

.events-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(10, 31, 46, 0.35));
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--blue-border);
    transition: all 0.3s ease;
}

.events-card:hover {
    border-color: var(--blue);
}

.events-card h4 {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    color: var(--gray);
    transition: all 0.2s ease;
}

.event-item:hover {
    transform: translateX(5px);
    color: var(--white);
}

.event-icon {
    font-size: 0.85rem;
    color: var(--blue);
}

.update-time {
    margin-top: 1rem;
    text-align: right;
    font-size: 0.7rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.regional-summary {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(10, 31, 46, 0.4));
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid var(--blue-border);
    transition: all 0.3s ease;
}

.regional-summary:hover {
    border-color: var(--blue);
}

.summary-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 0.5rem;
}

.summary-item {
    text-align: center;
}

.summary-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue);
}

.summary-label {
    font-size: 0.65rem;
    color: var(--gray);
}

/* =========================
   VENTAJA OPERACIONAL (DIFFERENTIATOR)
========================= */
.differentiator {
    padding: 95px 0;
    position: relative;
    background-image: linear-gradient(to bottom, rgba(6,7,10,0.72) 0%, rgba(6,7,10,0.45) 50%, rgba(6,7,10,0.85) 100%), url('/assets/images/index/infra-critica.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
}

.differentiator h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.matrix-lead-text {
    text-align: center;
    max-width: 880px;
    margin: 0 auto 55px;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.matrix-node {
    background: rgba(6, 9, 15, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 24px 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.node-category {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
    opacity: 0.4;
    text-transform: uppercase;
}

.node-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.node-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s;
}

.matrix-node h4 {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: var(--white);
}

.matrix-node p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #a4b3c6;
}

.node-vis .node-icon { stroke: var(--sentinel-blue); }
.node-resp .node-icon { stroke: #00E5FF; }
.node-gob .node-icon { stroke: var(--blue); }
.node-esc .node-icon { stroke: var(--oraculo-violet); }

.matrix-node:hover {
    transform: translateY(-3px);
}

/* =========================
   SERVICIOS SECTION
========================= */
.services {
    padding: 100px 0;
    position: relative;
    background: #050505;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(10, 31, 46, 0.22) 0%, transparent 35%),
        radial-gradient(circle at 70% 60%, rgba(0, 50, 80, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(10, 31, 46, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, #050505 0%, #0a0a12 45%, #0A1F2E 100%);
    z-index: 1;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 2;
    pointer-events: none;
}

.services .glass-tactical {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.015), transparent 30%);
    z-index: 3;
    pointer-events: none;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.services-sub {
    text-align: center;
    font-size: 1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 10;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.capability-card {
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    opacity: 0.85;
    transform: scale(0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.capability-card.active {
    opacity: 1;
    transform: scale(1.02) translateY(-8px);
    z-index: 10;
}

.capability-card:hover {
    opacity: 0.95;
    transform: scale(0.98) translateY(-4px);
}

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.capability-card.active .card-image img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.card-content {
    padding: 0 24px 28px;
    text-align: center;
}

.card-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.capability-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 22px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.capability-card.active .feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    justify-content: center;
}

.service-link:hover {
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
}

#sentinel-card .card-label { color: var(--sentinel-blue); }
#oraculo-card .card-label { color: var(--oraculo-violet); }
#nemesis-card .card-label { color: var(--nemesis-red); }
#aegis-card .card-label { color: var(--aegis-cyan); }

#sentinel-card.active {
    border-color: var(--sentinel-blue);
    box-shadow: 0 25px 60px rgba(0,163,255,0.2), inset 0 0 20px rgba(0,163,255,0.05);
}
#sentinel-card.active .service-link {
    border-color: var(--sentinel-blue);
    color: var(--sentinel-blue);
    background: rgba(0,163,255,0.05);
}

#oraculo-card.active {
    border-color: var(--oraculo-violet);
    box-shadow: 0 25px 60px rgba(110,123,255,0.2), inset 0 0 20px rgba(110,123,255,0.05);
}
#oraculo-card.active .service-link {
    border-color: var(--oraculo-violet);
    color: var(--oraculo-violet);
    background: rgba(110,123,255,0.05);
}

#nemesis-card.active {
    border-color: var(--nemesis-red);
    box-shadow: 0 25px 60px rgba(255,77,90,0.18), inset 0 0 20px rgba(255,77,90,0.03);
}
#nemesis-card.active .service-link {
    border-color: var(--nemesis-red);
    color: var(--nemesis-red);
    background: rgba(255,77,90,0.05);
}

#aegis-card.active {
    border-color: var(--aegis-cyan);
    box-shadow: 0 25px 60px rgba(0,229,255,0.2), inset 0 0 20px rgba(0,229,255,0.05);
}
#aegis-card.active .service-link {
    border-color: var(--aegis-cyan);
    color: var(--aegis-cyan);
    background: rgba(0,229,255,0.05);
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
    position: relative;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--blue);
    box-shadow: 0 0 12px var(--blue-glow);
    transform: scale(1.3);
}

/* =========================
   ENTORNOS OPERACIONALES (SECTORS)
========================= */
.sectors {
    position: relative;
    min-height: 85vh;
    padding: 95px 0;
    background: url('https://azenis.com.gt/assets/images/index/entornos-operacionales.webp') center/cover no-repeat fixed;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
    overflow: hidden;
}

.sectors::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 15% 50%, rgba(180, 0, 0, 0.28) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(255, 0, 60, 0.18) 0%, transparent 45%),
        linear-gradient(135deg, rgba(5,5,5,0.4) 0%, rgba(10,10,10,0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.sectors::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

.sectors .glass-tactical {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.sectors .container {
    position: relative;
    z-index: 2;
}

.sectors-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sectors-text {
    max-width: 500px;
}

.sectors-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.sectors-text h2 span {
    color: var(--blue);
}

.sectors-text .sectors-lead {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ops-footnote {
    text-align: center;
    font-size: 0.75rem;
    color: var(--white);
    letter-spacing: 0.2px;
    margin-top: 2rem;
}

.sectors-visual {
    position: relative;
    min-height: 500px;
}

.ops-network {
    position: relative;
    width: 100%;
    min-height: 480px;
    margin: 0 auto;
}

.connections-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.connections-svg line {
    transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.connections-svg line.active {
    stroke-width: 2.5;
}

.ops-core {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 15;
}

.core-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(180, 0, 0, 0.6);
    animation: radarPulse 2s ease-out infinite;
}

.core-ring:nth-child(1) { animation-delay: 0s; }
.core-ring:nth-child(2) { width: 180px; height: 180px; animation-delay: 0.5s; border-color: rgba(180, 0, 0, 0.3); }
.core-ring:nth-child(3) { width: 220px; height: 220px; animation-delay: 1s; border-color: rgba(180, 0, 0, 0.15); }

@keyframes radarPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.core-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180, 0, 0, 0.4), transparent);
    z-index: 12;
    animation: coreGlowPulse 2s ease-in-out infinite;
}

@keyframes coreGlowPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.core-content {
    position: relative;
    z-index: 20;
    text-align: center;
}

.core-content span {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    line-height: 1.6;
}

.ops-node {
    position: absolute;
    width: 180px;
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
    z-index: 15;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.ops-node:hover {
    transform: translateY(-4px);
    border-color: currentColor;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px currentColor inset;
}

.ops-node h4 {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

.ops-node p {
    font-size: 0.65rem;
    color: #B7C6D8;
    line-height: 1.4;
    margin: 0 0 8px;
}

.node-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: currentColor;
}

.risk-label {
    font-size: 0.5rem;
    color: var(--gray);
}

.trend {
    font-size: 0.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.trend.up { color: #EF4444; }
.trend.down { color: #10B981; }

.node-banking { left: 0; top: 45px; color: #79E0B5; }
.node-government { right: 0; top: 45px; color: #E6C16A; }
.node-infra { left: 50%; transform: translateX(-50%); bottom: 15px; color: #D66A6A; }
.node-health { left: 0; bottom: 100px; color: #66D9F0; }
.node-retail { right: 0; bottom: 100px; color: #6FB1FF; }

@keyframes nodePulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.ops-node::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    right: 8px;
    top: 8px;
    background: currentColor;
    box-shadow: 0 0 6px currentColor;
    animation: nodePulse 2s ease-in-out infinite;
}

/* =========================
   COMPLIANCE SECTION
========================= */
.compliance {
    padding: 100px 0;
    position: relative;
    background: #06070A;
    overflow: hidden;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
}

.compliance::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://azenis.com.gt/assets/images/index/compliance-governance.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.compliance::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at top, rgba(0,163,255,0.09), transparent 50%),
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100% 100%, 45px 45px, 45px 45px;
    z-index: 1;
    pointer-events: none;
}

.compliance .container {
    position: relative;
    z-index: 2;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.compliance-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.compliance-content p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.compliance-matrix {
    background: rgba(10, 15, 24, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
}

.cm-head {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    background: rgba(30, 144, 255, 0.1);
    border-bottom: 1px solid var(--blue-border);
}

.cm-head div {
    padding: 14px 16px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
}

.cm-row {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.cm-row:last-child {
    border-bottom: none;
}

.cm-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.cm-row div {
    padding: 14px 16px;
    font-size: 0.9rem;
    color: #D8E1ED;
    line-height: 1.45;
}

.cm-row div:first-child {
    color: #FFFFFF;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* =========================
   FINAL CTA
========================= */
.final-cta {
    position: relative;
    padding: 120px 0 110px;
    background: #050505;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
    border-bottom: 1px solid;
    border-image: linear-gradient(90deg, transparent, var(--blue), var(--blue), var(--blue), transparent) 1;
    overflow: hidden;
    isolation: isolate;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://azenis.com.gt/assets/images/index/cta-home.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    filter: brightness(1.1) contrast(1.05);
}

.final-cta .glass-tactical {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15));
    z-index: 1;
    pointer-events: none;
}

.final-cta .cyber-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(30, 144, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 144, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 5.4vw, 4.6rem);
    line-height: 1.06;
    letter-spacing: -1.5px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.cta-content h2 span {
    color: var(--blue);
    text-shadow: 0 0 10px rgba(30,144,255,0.5);
}

.cta-content p {
    max-width: 760px;
    margin: 0 auto 38px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #E0E0E0;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.cta-micro {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #CCCCCC;
    font-size: 0.8rem;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.cta-micro span {
    white-space: nowrap;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes livePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 12px #10B981; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes activityWave {
    0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    80% { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .matrix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sectors-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .sectors-text {
        max-width: 100%;
        text-align: center;
    }
    
    .ops-network {
        min-height: 450px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .telemetry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-badge-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .badge-metrics {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .hero-stats-row {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .hero-activity-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-description {
        max-width: 100%;
        font-size: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .services h2 {
        font-size: 1.8rem;
    }
    
    .telemetry-section h2 {
        font-size: 1.8rem;
    }
    
    .differentiator h2 {
        font-size: 1.8rem;
    }
    
    .compliance h2 {
        font-size: 1.6rem;
    }
    
    .services-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 20px 24px 40px;
        margin: 0 -24px;
        scrollbar-width: none;
    }
    
    .services-grid::-webkit-scrollbar {
        display: none;
    }
    
    .capability-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        opacity: 1;
        transform: scale(1);
        margin: 0;
    }
    
    .capability-card.active {
        transform: scale(1);
        opacity: 1;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 0 20px 24px;
    }
    
    .capability-card h3 {
        font-size: 1.1rem;
    }
    
    .slider-indicators {
        display: flex;
    }
    
    .ops-network {
        min-height: auto;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .connections-svg {
        display: none;
    }
    
    .ops-core {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 120px;
        height: 120px;
        margin: 20px auto;
    }
    
    .core-ring:nth-child(2) {
        width: 150px;
        height: 150px;
    }
    
    .core-ring:nth-child(3) {
        width: 180px;
        height: 180px;
    }
    
    .ops-node {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 280px;
        margin: 10px auto;
    }
    
    .matrix-grid {
        grid-template-columns: 1fr;
    }
    
    .matrix-lead-text {
        font-size: 1rem;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cm-head, .cm-row {
        grid-template-columns: 1fr;
    }
    
    .cm-row div:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .final-cta {
        padding: 80px 0 70px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .final-cta .btn-primary,
    .final-cta .btn-secondary {
        width: 100%;
        max-width: 320px;
        min-width: auto;
    }
    
    .cta-micro {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
}

/* Particle floating animation */
.particle-dot {
    position: absolute;
    background: rgba(30, 144, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    from { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    to { transform: translateY(-100px) translateX(var(--move-x)); opacity: 0; }
}