/* ============================================
   STRATOS BANK - PREMIUM BANKING INTERFACE
   Sophistication • Innovation • Excellence
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

:root {
    /* Elite Color Palette */
    --obsidian: #0A0D14;
    --midnight: #151922;
    --charcoal: #1E2330;
    --platinum: #E8E9ED;
    --silver: #C5C7D0;
    --gold: #D4AF37;
    --champagne: #F7E7CE;
    --stratos-blue: #0A84FF;
    --arctic-blue: #00D9FF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0A84FF 0%, #00D9FF 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-premium: 0 24px 80px rgba(10, 132, 255, 0.15), 0 8px 32px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: radial-gradient(circle at 20% 50%, rgba(10, 132, 255, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.02) 0%, transparent 50%),
                linear-gradient(135deg, #0A0D14 0%, #151922 50%, #0A0D14 100%);
    background-attachment: fixed;
    color: var(--platinum);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   BACKGROUND - Mapa estelar
   ============================================ */

/* ============================================
   NAVIGATION - FULLY RESPONSIVE
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    background: rgba(10, 13, 20, 0.6);
    backdrop-filter: blur(15px) saturate(180%);
    border-bottom: 1px solid rgba(232, 233, 237, 0.08);
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--silver);
    margin-top: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--silver);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--arctic-blue);
}

.nav-btn {
    padding: 12px 28px;
    background: var(--gradient-primary);
    border-radius: 8px;
    color: white !important;
    font-weight: 600;
    font-size: 15px;
    box-shadow: var(--shadow-md);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

/* ============================================
   HERO SECTION - MOBILE FIRST
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 20px 80px;
    z-index: 1;
}

#particles {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    /* Canvas en fixed para que NO afecte la altura del documento */
    /* Se mueve con JS según el scroll */
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo-showcase {
    margin-bottom: 40px;
}

.logo-showcase .logo-icon {
    width: min(140px, 35vw);
    height: min(140px, 35vw);
    margin: 0 auto;
    filter: drop-shadow(0 20px 60px rgba(10, 132, 255, 0.4));
    animation: logo-float 6s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--arctic-blue) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(18px, 4vw, 28px);
    font-weight: 400;
    color: var(--champagne);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    font-style: italic;
}

.hero-description {
    font-family: var(--font-sans);
    font-size: clamp(15px, 2.5vw, 18px);
    font-weight: 400;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    padding: 0 10px;
}

.cta-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding: 0 10px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    display: inline-block;
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(10, 132, 255, 0.25);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 132, 255, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--platinum);
    border: 2px solid rgba(232, 233, 237, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--arctic-blue);
    transform: translateY(-3px);
}

.btn-primary-large {
    padding: 18px 48px;
    font-size: 16px;
}

/* ============================================
   TRUST BAR - RESPONSIVE GRID
   ============================================ */

.trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    padding: 30px 20px;
    border-top: 1px solid rgba(232, 233, 237, 0.08);
    border-bottom: 1px solid rgba(232, 233, 237, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
}

.trust-value {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.trust-label {
    font-size: clamp(11px, 2vw, 13px);
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ============================================
   SERVICES SECTION - RESPONSIVE CARDS
   ============================================ */

.services-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--platinum), var(--arctic-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, rgba(30, 35, 48, 0.6), rgba(21, 25, 34, 0.8));
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(232, 233, 237, 0.08);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(10, 132, 255, 0.3);
    box-shadow: 0 20px 60px rgba(10, 132, 255, 0.15);
}

.service-icon {
    font-size: clamp(44px, 8vw, 56px);
    margin-bottom: 24px;
    display: block;
}

.service-title {
    font-family: var(--font-serif);
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 600;
    color: var(--platinum);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.service-description {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--silver);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--arctic-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* ============================================
   FOOTER - RESPONSIVE LAYOUT
   ============================================ */

.footer {
    background: linear-gradient(135deg, rgba(10, 13, 20, 0.95), rgba(21, 25, 34, 0.95));
    border-top: 1px solid rgba(232, 233, 237, 0.08);
    padding: 60px 20px 30px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--platinum);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.9;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: var(--arctic-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(232, 233, 237, 0.08);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--silver);
    opacity: 0.7;
    margin: 0.5rem 0;
}

.footer-credit {
    font-size: 12px;
    opacity: 0.8;
}

.dev-link {
    color: var(--arctic-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.dev-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--stratos-blue), var(--arctic-blue));
    transition: width 0.3s ease;
}

.dev-link:hover {
    color: var(--stratos-blue);
    text-shadow: 0 0 10px rgba(81, 157, 241, 0.5);
}

.dev-link:hover::after {
    width: 100%;
}

/* ============================================
   CONTAINER UTILITIES
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   MOBILE OPTIMIZATION (< 768px)
   ============================================ */

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-links {
        gap: 12px;
        font-size: 13px;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .brand-name {
        font-size: 20px;
        letter-spacing: 1.5px;
    }
    
    .brand-subtitle {
        font-size: 8px;
        letter-spacing: 2px;
    }
    
    .hero-section {
        padding: 110px 16px 60px;
        min-height: auto;
    }
    
    .logo-showcase {
        margin-bottom: 30px;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-primary-large {
        width: 100%;
        max-width: 100%;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .trust-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 24px 16px;
    }
    
    .services-section {
        padding: 60px 16px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .services-grid {
        gap: 24px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .footer {
        padding: 50px 16px 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   SMALL MOBILE (< 480px)
   ============================================ */

@media (max-width: 480px) {
    .brand-name {
        font-size: 18px;
    }
    
    .nav-links {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-link:not(.nav-btn) {
        display: none;
    }
    
    .trust-bar {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   TABLET (768px - 1024px)
   ============================================ */

@media (min-width: 768px) and (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .hero-section {
        padding: 120px 30px 70px;
    }
    
    .services-section {
        padding: 90px 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   DESKTOP (> 1024px)
   ============================================ */

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 60px;
    }
    
    .hero-section {
        padding: 140px 60px 80px;
    }
    
    .services-section {
        padding: 120px 60px;
    }
    
    .logo-showcase .logo-icon {
        width: 180px;
        height: 180px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

a:focus,
button:focus {
    outline: 2px solid var(--arctic-blue);
    outline-offset: 4px;
}

::selection {
    background: var(--stratos-blue);
    color: white;
}

/* ============================================
   SMOOTH ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ============================================
   HERO - PÁGINA PRINCIPAL
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--platinum), var(--arctic-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    margin-top: 10px;
}

.hero-description {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--silver);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* ============================================
   STATS GRID - MEJORADO
   ============================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(30, 35, 48, 0.5), rgba(21, 25, 34, 0.7));
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(232, 233, 237, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(10, 132, 255, 0.3);
    box-shadow: 0 10px 40px rgba(10, 132, 255, 0.1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: clamp(12px, 2vw, 14px);
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 500;
}

/* ============================================
   SERVICES - MEJORADO
   ============================================ */

.services {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.services .container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(10, 132, 255, 0.1), rgba(0, 217, 255, 0.05));
    border: 2px solid rgba(10, 132, 255, 0.3);
    position: relative;
}

.service-card.featured .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.service-features li {
    padding: 10px 0;
    color: var(--silver);
    font-size: 15px;
    border-bottom: 1px solid rgba(232, 233, 237, 0.05);
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--arctic-blue);
    font-weight: bold;
}

.service-features li:last-child {
    border-bottom: none;
}

/* ============================================
   TECHNOLOGY SECTION - MEJORADO
   ============================================ */

.technology {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 13, 20, 0.5), rgba(21, 25, 34, 0.5));
    position: relative;
    z-index: 1;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-feature {
    background: linear-gradient(135deg, rgba(30, 35, 48, 0.4), rgba(21, 25, 34, 0.6));
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(232, 233, 237, 0.08);
    text-align: center;
    transition: all 0.4s ease;
}

.tech-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(10, 132, 255, 0.3);
    box-shadow: 0 15px 50px rgba(10, 132, 255, 0.15);
}

.tech-icon {
    font-size: clamp(48px, 8vw, 64px);
    margin-bottom: 20px;
    display: block;
}

.tech-feature h4 {
    font-family: var(--font-serif);
    font-size: clamp(20px, 4vw, 24px);
    color: var(--platinum);
    margin-bottom: 15px;
    font-weight: 600;
}

.tech-feature p {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--silver);
    line-height: 1.7;
}

/* ============================================
   STARTUP PROGRAM - MEJORADO
   ============================================ */

.startup-program {
    padding: 100px 20px;
    position: relative;
    z-index: 1;
}

.program-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.program-intro {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--silver);
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.program-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(30, 35, 48, 0.5), rgba(21, 25, 34, 0.7));
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(232, 233, 237, 0.08);
    position: relative;
    text-align: left;
    transition: all 0.4s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.1);
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    font-family: var(--font-serif);
    font-size: clamp(20px, 4vw, 24px);
    color: var(--platinum);
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-item p {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--silver);
    line-height: 1.7;
}

.program-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.program-note {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   BENEFITS GRID (Accelerator Page)
   ============================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 30px;
    margin: 50px 0;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(30, 35, 48, 0.5), rgba(21, 25, 34, 0.7));
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(232, 233, 237, 0.08);
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(10, 132, 255, 0.3);
    box-shadow: 0 15px 50px rgba(10, 132, 255, 0.15);
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.benefit-title {
    font-family: var(--font-serif);
    font-size: clamp(20px, 4vw, 24px);
    color: var(--platinum);
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-desc {
    font-size: clamp(14px, 2.5vw, 16px);
    color: var(--silver);
    line-height: 1.7;
}

/* ============================================
   FOOTER GRID - MEJORADO
   ============================================ */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    text-align: left;
}

.footer-column h5 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--platinum);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--silver);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--arctic-blue);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .brand-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 13px;
    color: var(--silver);
    line-height: 1.6;
}

/* ============================================
   STATS ROW (Dashboard/Transactions)
   ============================================ */

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* ============================================
   RESPONSIVE IMPROVEMENTS - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .hero {
        padding: 100px 16px 60px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 30px 16px;
    }

    .services,
    .technology,
    .startup-program {
        padding: 60px 16px;
    }

    .services-grid,
    .tech-grid,
    .program-benefits,
    .benefits-grid {
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 20px 16px;
    }

    .service-card,
    .tech-feature,
    .benefit-item,
    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-number {
        font-size: 36px;
    }
}

/* ============================================
   AJUSTES PARA PANTALLAS EXTRA PEQUEÑAS
   ============================================ */

@media (max-width: 360px) {
    .navbar {
        padding: 10px 0;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .brand-name {
        font-size: 16px;
    }

    .brand-subtitle {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .nav-link {
        font-size: 12px;
    }
}

/* ============================================
   MEJORAS VISUALES GENERALES
   ============================================ */

/* Suavizar transiciones globalmente */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Mejorar contraste de texto sobre fondo estelar */
.hero-content,
.section-header {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* Asegurar que los botones sean táctiles en móvil */
@media (hover: none) and (pointer: coarse) {
    .btn-primary,
    .btn-secondary,
    .nav-btn,
    .service-card,
    .tech-feature,
    .benefit-card,
    .benefit-item {
        cursor: pointer;
    }

    .btn-primary:active,
    .btn-secondary:active,
    .nav-btn:active {
        transform: scale(0.98);
    }
}

/* Fix para navbar que tapa contenido */
