/* ============================================
   HOME V2 - ALVRISOLUTIONS
   Diseño Original 2026 - Estilo Producto SaaS
   Colores de marca: #227c7c #d9f2e6 #2b3c56 #469595
   ============================================ */

/* Variables de diseño - COLORES DE MARCA */
:root {
    --alv-primary: #2b3c56;
    --alv-primary-light: #3d5270;
    --alv-accent: #227c7c;
    --alv-accent-light: #469595;
    --alv-accent-soft: #d9f2e6;
    --alv-blue: #3b82f6;
    --alv-purple: #8b5cf6;
    --alv-orange: #f59e0b;
    --alv-yellow: #eab308;
    --alv-text: #1f2937;
    --alv-text-secondary: #6b7280;
    --alv-text-light: #9ca3af;
    --alv-bg: #ffffff;
    --alv-bg-alt: #f9fafb;
    --alv-bg-dark: #f3f4f6;
    --alv-border: #e5e7eb;
    --alv-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --alv-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --alv-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --alv-shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --alv-radius: 12px;
    --alv-radius-lg: 20px;
    --alv-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset para sección */
.alv-hero, .alv-showcase, .alv-features, .alv-stats, .alv-services, .alv-cta {
    box-sizing: border-box;
}

.alv-hero *, .alv-showcase *, .alv-features *, .alv-stats *, .alv-services *, .alv-cta * {
    box-sizing: border-box;
}

/* ========================================
   HERO SECTION - DEGRADADO SUAVE ORIGINAL
   ======================================== */
.alv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, var(--alv-accent-soft) 100%);
    overflow: hidden;
}

.alv-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.alv-hero-text {
    max-width: 600px;
}

/* Badge */
.alv-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(34, 124, 124, 0.1);
    border: 1px solid rgba(34, 124, 124, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--alv-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--alv-accent);
}

/* Título - COLORES DE MARCA */
.alv-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--alv-text);
    margin: 0 0 24px 0;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.alv-gradient-text {
    background: linear-gradient(135deg, var(--alv-accent) 0%, var(--alv-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alv-hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--alv-text-secondary);
    margin: 0 0 32px 0;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* CTAs */
.alv-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.alv-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--alv-primary);
    color: white;
    border-radius: var(--alv-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--alv-transition);
    box-shadow: var(--alv-shadow);
}

.alv-btn-primary:hover {
    background: var(--alv-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--alv-shadow-lg);
}

.alv-btn-primary svg {
    transition: transform 0.3s ease;
}

.alv-btn-primary:hover svg {
    transform: translateX(4px);
}

.alv-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: white;
    color: var(--alv-primary);
    border: 2px solid var(--alv-border);
    border-radius: var(--alv-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--alv-transition);
}

.alv-btn-secondary:hover {
    border-color: var(--alv-primary);
    background: var(--alv-bg-alt);
}

/* Trust */
.alv-hero-trust {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.trust-text {
    display: block;
    font-size: 13px;
    color: var(--alv-text-light);
    margin-bottom: 8px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 14px;
    font-weight: 500;
    color: var(--alv-text-secondary);
}

.trust-dot {
    color: var(--alv-text-light);
}

/* ========================================
   HERO VISUAL - MAPA CON IMAGEN DE FONDO
   ======================================== */
.alv-hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.alv-map-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin: 0 auto;
}

/* IMAGEN DE MAPA DE FONDO - Estilo topográfico */
.alv-map-background {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.12;
}

.alv-map-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

/* Silueta de España simplificada como overlay */
.alv-spain-outline {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.spain-outline {
    fill: rgba(34, 124, 124, 0.06);
    stroke: rgba(34, 124, 124, 0.25);
    stroke-width: 2;
}

/* Puntos de subestaciones */
.alv-capacity-point {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.point-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--alv-accent);
    opacity: 0;
    animation: pingRing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.point-core {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
    background: var(--alv-accent);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--alv-shadow);
    z-index: 2;
}

[data-status="medium"] .point-core {
    background: var(--alv-yellow);
}

[data-status="medium"] .point-ring {
    border-color: var(--alv-yellow);
}

.point-label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--alv-text);
    box-shadow: var(--alv-shadow-sm);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.alv-capacity-point:hover .point-label {
    opacity: 1;
}

/* Badge flotante */
.alv-map-badge {
    position: absolute;
    bottom: 10%;
    right: 5%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 18px;
    border-radius: var(--alv-radius);
    box-shadow: var(--alv-shadow-lg);
    animation: floatBadge 3s ease-in-out infinite;
}

.badge-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--alv-accent), var(--alv-accent-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.badge-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--alv-text);
    line-height: 1;
}

.badge-desc {
    font-size: 12px;
    color: var(--alv-text-secondary);
}

.alv-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at 70% 20%, rgba(34, 124, 124, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 30% 80%, rgba(43, 60, 86, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   SHOWCASE SECTION
   ======================================== */
.alv-showcase {
    padding: 100px 5%;
    background: var(--alv-bg-alt);
    overflow: hidden;
}

.alv-showcase-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(34, 124, 124, 0.1);
    color: var(--alv-accent);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.alv-showcase-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.alv-showcase-intro h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--alv-text);
    margin: 0 0 16px 0;
}

.alv-showcase-intro p {
    font-size: 1.125rem;
    color: var(--alv-text-secondary);
    margin: 0;
}

/* Browser Window */
.alv-browser-window {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    perspective: 1500px;
}

.browser-chrome {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: #f1f5f9;
    border-radius: var(--alv-radius-lg) var(--alv-radius-lg) 0 0;
    border: 1px solid var(--alv-border);
    border-bottom: none;
}

.browser-controls {
    display: flex;
    gap: 8px;
}

.browser-controls .ctrl {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.ctrl.red { background: #ef4444; }
.ctrl.yellow { background: #eab308; }
.ctrl.green { background: #22c55e; }

.browser-address {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: white;
    border-radius: 8px;
    font-size: 13px;
    color: var(--alv-text-secondary);
}

.browser-address svg {
    color: var(--alv-accent);
}

/* Browser Body */
.browser-body {
    display: grid;
    grid-template-columns: 60px 1fr;
    min-height: 450px;
    background: #f8fafc;
    border: 1px solid var(--alv-border);
    border-top: none;
    border-radius: 0 0 var(--alv-radius-lg) var(--alv-radius-lg);
    overflow: hidden;
}

.mock-sidebar {
    background: var(--alv-primary);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mock-logo-sm {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    margin-bottom: 16px;
}

.mock-nav-item {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mock-nav-item.active {
    background: rgba(255,255,255,0.25);
}

.mock-content {
    padding: 24px;
    background: white;
}

.mock-header-bar {
    height: 40px;
    background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 100%);
    border-radius: 8px;
    margin-bottom: 20px;
}

/* KPI Cards */
.mock-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.mock-kpi {
    height: 80px;
    background: linear-gradient(135deg, var(--alv-accent-soft) 0%, #dcfce7 100%);
    border-radius: 12px;
    border: 1px solid rgba(34, 124, 124, 0.2);
}

.mock-kpi.kpi-filled {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}

.kpi-icon {
    width: 36px;
    height: 36px;
    background: var(--alv-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.kpi-data {
    display: flex;
    flex-direction: column;
}

.kpi-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--alv-text);
    line-height: 1;
}

.kpi-label {
    font-size: 11px;
    color: var(--alv-text-secondary);
    margin-top: 2px;
}

/* Chart Area */
.mock-chart-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mock-chart {
    height: 180px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid var(--alv-border);
    position: relative;
    overflow: hidden;
}

.mock-chart.histogram-chart {
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.chart-header-mini {
    font-size: 11px;
    font-weight: 600;
    color: var(--alv-text-secondary);
    margin-bottom: 12px;
}

.histogram-bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding-bottom: 8px;
}

.hbar {
    flex: 1;
    background: linear-gradient(180deg, var(--alv-accent) 0%, var(--alv-accent-light) 100%);
    border-radius: 4px 4px 0 0;
    min-height: 10px;
    transition: height 1s ease-out;
}

.hbar.highlight {
    background: linear-gradient(180deg, var(--alv-primary) 0%, var(--alv-primary-light) 100%);
}

/* Mini mapa con imagen de fondo */
.mock-map-mini {
    height: 180px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.mock-map-mini .map-bg-image {
    position: absolute;
    inset: 0;
    opacity: 0.08;
}

.mock-map-mini .map-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.mini-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--alv-accent);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
}

.mini-dot.d1 { top: 25%; left: 30%; }
.mini-dot.d2 { top: 45%; left: 55%; animation: pulse 2s infinite 0.5s; }
.mini-dot.d3 { top: 65%; left: 40%; }
.mini-dot.d4 { top: 35%; left: 70%; }

/* Floating Cards */
.alv-floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.alv-float-card {
    position: absolute;
    background: white;
    border-radius: var(--alv-radius);
    padding: 16px;
    box-shadow: var(--alv-shadow-xl);
    border: 1px solid var(--alv-border);
    display: flex;
    gap: 12px;
    min-width: 220px;
    opacity: 0;
    pointer-events: auto;
    transition: transform 0.3s ease;
}

.alv-float-card.animate-pop {
    animation: popIn 0.6s ease-out forwards;
}

.card-1 { top: 10%; left: -60px; animation-delay: 0.3s; }
.card-2 { top: 15%; right: -80px; animation-delay: 0.6s; }
.card-3 { bottom: 25%; left: -80px; animation-delay: 0.9s; }
.card-4 { top: 50%; right: -100px; animation-delay: 1.2s; }

.alv-float-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.float-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-card-icon.green { background: rgba(34, 124, 124, 0.1); color: var(--alv-accent); }
.float-card-icon.blue { background: rgba(59, 130, 246, 0.1); color: var(--alv-blue); }
.float-card-icon.purple { background: rgba(139, 92, 246, 0.1); color: var(--alv-purple); }
.float-card-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--alv-orange); }

.float-card-content { flex: 1; min-width: 0; }

.fc-title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--alv-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.fc-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0;
}

.fc-row span { color: var(--alv-text-secondary); }
.fc-row strong { font-weight: 600; }
.fc-row strong.green { color: var(--alv-accent); }
.fc-row strong.yellow { color: var(--alv-yellow); }

.fc-notif { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }

.notif-badge {
    padding: 2px 8px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.notif-badge.ide { background: #dbeafe; color: #1e40af; }

.notif-text { font-size: 13px; color: var(--alv-text); }
.fc-time { font-size: 11px; color: var(--alv-text-light); }
.fc-project { padding: 8px 0; }
.project-name { display: block; font-weight: 600; color: var(--alv-text); margin-bottom: 6px; }

.project-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--alv-text-secondary);
}

.tech-badge { padding: 2px 6px; border-radius: 4px; font-weight: 600; font-size: 10px; }
.tech-badge.fv { background: #fee2e2; color: #dc2626; }

.status-badge {
    padding: 2px 6px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 4px;
    font-weight: 600;
    font-size: 10px;
}

.fc-trend { display: flex; flex-direction: column; gap: 4px; }
.trend-up { font-size: 1.5rem; font-weight: 700; color: var(--alv-accent); }
.trend-label { font-size: 12px; color: var(--alv-text-secondary); }

/* ========================================
   FEATURES SECTION
   ======================================== */
.alv-features {
    padding: 100px 5%;
    background: white;
}

.alv-features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.alv-feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.alv-feature-block.reverse { direction: rtl; }
.alv-feature-block.reverse > * { direction: ltr; }

/* Feature Visual - Realtime con IMAGEN DE MAPA */
.fv-realtime {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rt-map-box {
    background: linear-gradient(135deg, var(--alv-accent-soft) 0%, #dcfce7 100%);
    border-radius: var(--alv-radius-lg);
    padding: 40px;
    height: 280px;
    position: relative;
    border: 1px solid rgba(34, 124, 124, 0.2);
    overflow: hidden;
}

.rt-map-box .map-bg-image {
    position: absolute;
    inset: 0;
    opacity: 0.08;
}

.rt-map-box .map-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
}

.rt-grid {
    position: absolute;
    inset: 40px;
    border-radius: 12px;
    z-index: 2;
}

.rt-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--alv-accent);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 0 rgba(34, 124, 124, 0.4);
    animation: pointPulse 2s infinite;
    z-index: 3;
}

.rt-point.active {
    width: 20px;
    height: 20px;
    background: var(--alv-yellow);
    animation: pointPulseYellow 2s infinite;
}

.rt-sources {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.source-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--alv-border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--alv-text);
}

.source-dot {
    width: 8px;
    height: 8px;
    background: var(--alv-accent);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

/* Feature Visual - Notificaciones */
.fv-notifications {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: var(--alv-radius-lg);
    padding: 30px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.notif-stack { display: flex; flex-direction: column; gap: 12px; }

.notif-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px;
    border-radius: var(--alv-radius);
    box-shadow: var(--alv-shadow-sm);
    transition: transform 0.3s ease;
    position: relative;
}

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

.notif-item.popup-notif {
    animation: popupSlide 0.8s ease-out 0.5s both;
    border: 2px solid var(--alv-accent);
}

.ni-new-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    animation: pulse 1.5s infinite;
}

.notif-item.n1 { animation: slideInNotif 0.6s ease-out 0.3s both; }
.notif-item.n2 { animation: slideInNotif 0.6s ease-out 0.5s both; opacity: 0.9; }
.notif-item.n3 { animation: slideInNotif 0.6s ease-out 0.7s both; opacity: 0.8; }

.ni-icon {
    width: 40px;
    height: 40px;
    background: var(--alv-bg-alt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ni-content { flex: 1; }
.ni-content strong { display: block; font-size: 14px; color: var(--alv-text); margin-bottom: 2px; }
.ni-content span { font-size: 12px; color: var(--alv-text-secondary); }
.ni-time { font-size: 12px; color: var(--alv-text-light); font-weight: 500; }

/* Feature Visual - Analytics */
.fv-analytics {
    background: white;
    border-radius: var(--alv-radius-lg);
    padding: 24px;
    border: 1px solid var(--alv-border);
    box-shadow: var(--alv-shadow);
}

.chart-title { font-size: 14px; font-weight: 600; color: var(--alv-text); margin-bottom: 20px; }

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    height: 180px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--alv-border);
}

.bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.bar-group span { font-size: 12px; color: var(--alv-text-secondary); }

.bar {
    width: 100%;
    max-width: 40px;
    background: linear-gradient(180deg, var(--alv-accent) 0%, var(--alv-accent-light) 100%);
    border-radius: 6px 6px 0 0;
    transition: height 1s ease-out;
}

.bar-group.highlight .bar {
    background: linear-gradient(180deg, var(--alv-primary) 0%, var(--alv-primary-light) 100%);
    box-shadow: 0 0 20px rgba(43, 60, 86, 0.3);
}

.chart-legend { display: flex; gap: 20px; margin-top: 16px; }
.chart-legend span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--alv-text-secondary); }
.chart-legend .dot { width: 10px; height: 10px; border-radius: 50%; }
.chart-legend .dot.green { background: var(--alv-accent); }
.chart-legend .dot.blue { background: var(--alv-primary); }

/* Feature Text */
.feature-num { display: inline-block; font-size: 14px; font-weight: 700; color: var(--alv-accent); margin-bottom: 12px; }

.feature-text h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--alv-text);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.feature-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--alv-text-secondary);
    margin: 0 0 24px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--alv-text);
}

.feature-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: rgba(34, 124, 124, 0.1);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23227c7c' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* ========================================
   STATS SECTION
   ======================================== */
.alv-stats {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--alv-primary) 0%, var(--alv-primary-light) 100%);
}

.alv-stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.alv-stat { display: flex; align-items: center; gap: 16px; }
.stat-value { display: flex; align-items: baseline; }
.stat-number { font-size: 3.5rem; font-weight: 800; color: white; line-height: 1; }
.stat-suffix { font-size: 2rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.stat-info { display: flex; flex-direction: column; }
.stat-label { font-size: 1rem; font-weight: 600; color: white; }
.stat-desc { font-size: 13px; color: rgba(255,255,255,0.7); }
.stat-separator { width: 1px; height: 60px; background: rgba(255,255,255,0.2); }

/* ========================================
   SERVICES SECTION
   ======================================== */
.alv-services {
    padding: 100px 5%;
    background: var(--alv-bg-alt);
}

.alv-services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.alv-services-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--alv-text);
    margin: 0 0 16px 0;
}

.alv-services-header p {
    font-size: 1.125rem;
    color: var(--alv-text-secondary);
    margin: 0;
}

.alv-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.alv-service-card {
    background: white;
    border-radius: var(--alv-radius-lg);
    padding: 32px;
    text-decoration: none;
    border: 1px solid var(--alv-border);
    transition: var(--alv-transition);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.alv-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--alv-shadow-xl);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon.blue { background: rgba(59, 130, 246, 0.1); color: var(--alv-blue); }
.service-icon.green { background: rgba(34, 124, 124, 0.1); color: var(--alv-accent); }
.service-icon.purple { background: rgba(139, 92, 246, 0.1); color: var(--alv-purple); }
.service-icon.orange { background: rgba(245, 158, 11, 0.1); color: var(--alv-orange); }

.service-content { flex: 1; }
.alv-service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--alv-text); margin: 0 0 12px 0; }
.alv-service-card p { font-size: 15px; line-height: 1.6; color: var(--alv-text-secondary); margin: 0; }

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--alv-primary);
    transition: gap 0.3s ease;
    margin-top: 20px;
}

.alv-service-card:hover .service-cta { gap: 10px; color: var(--alv-accent); }

/* ========================================
   CTA SECTION
   ======================================== */
.alv-cta {
    position: relative;
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--alv-accent-light) 0%, var(--alv-accent) 100%);
    text-align: center;
    overflow: hidden;
}

.alv-cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.alv-cta h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: white; margin: 0 0 16px 0; }
.alv-cta p { font-size: 1.125rem; color: rgba(255,255,255,0.9); margin: 0 0 32px 0; line-height: 1.7; }
.alv-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.alv-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 32px;
    background: white;
    color: var(--alv-accent);
    border-radius: var(--alv-radius);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--alv-transition);
}

.alv-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

.alv-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 32px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--alv-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--alv-transition);
}

.alv-cta-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

.alv-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 100%, rgba(0,0,0,0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes pingRing {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    75%, 100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

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

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.5) translateY(20px); }
    60% { transform: scale(1.1) translateY(-5px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes pointPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 124, 124, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(34, 124, 124, 0); }
}

@keyframes pointPulseYellow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(234, 179, 8, 0); }
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

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

@keyframes popupSlide {
    0% { opacity: 0; transform: translateX(-30px) scale(0.9); }
    50% { transform: translateX(10px) scale(1.02); }
    100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .alv-float-card.card-1, .alv-float-card.card-3 { left: -40px; }
    .alv-float-card.card-2, .alv-float-card.card-4 { right: -40px; }
}

@media (max-width: 1024px) {
    .alv-hero-content { grid-template-columns: 1fr; text-align: center; gap: 60px; }
    .alv-hero-text { max-width: 100%; }
    .alv-hero-ctas { justify-content: center; }
    .alv-hero-trust { display: flex; flex-direction: column; align-items: center; }
    .alv-feature-block { grid-template-columns: 1fr; gap: 40px; }
    .alv-feature-block.reverse { direction: ltr; }
    .alv-floating-cards { display: none; }
    .alv-stats-container { flex-direction: column; gap: 40px; }
    .stat-separator { width: 100px; height: 1px; }
}

@media (max-width: 768px) {
    .alv-hero { padding: 100px 5% 60px; min-height: auto; }
    .alv-hero-title { font-size: 2rem; }
    .alv-hero-ctas { flex-direction: column; }
    .alv-btn-primary, .alv-btn-secondary { width: 100%; justify-content: center; }
    .browser-body { grid-template-columns: 50px 1fr; }
    .mock-cards-row { grid-template-columns: repeat(2, 1fr); }
    .mock-chart-area { grid-template-columns: 1fr; }
    .alv-services-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 2.5rem; }
    .chart-bars { gap: 8px; }
}

@media (max-width: 480px) {
    .alv-hero-badge { font-size: 12px; padding: 6px 12px; }
    .browser-chrome { padding: 8px 12px; }
    .browser-address span { display: none; }
    .rt-sources { justify-content: center; }
    .source-chip { padding: 6px 10px; font-size: 11px; }
    .mock-kpi.kpi-filled { flex-direction: column; text-align: center; padding: 10px; }
    .kpi-data { align-items: center; }
}
