/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Material Icons Base Styles */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    user-select: none;
}

:root {
    --primary-color: #0f172a;
    --secondary-color: #f1f5f9;
    --accent-color: #475569;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-section: #ffffff;
    --border-color: rgba(0, 0, 0, 0.08);
    
    /* Colores por empresa */
    --brocart-color: #585856;
    --brocart-color-light: #6a6a68;
    --paucla-color: #731B47;
    --paucla-color-light: #8a2a5a;
    --relex-color: #ABB728;
    --relex-color-light: #c4d332;
    --neatec-color: #2c3e50;
    --neatec-color-light: #3c4e60;
    --recycler-color: #CC0000;
    --recycler-color-light: #e60000;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.18), 0 10px 10px -5px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.75;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.011em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-light);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Vertical Navbar */
.vertical-navbar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px 8px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 0 40px rgba(30, 58, 95, 0.2);
    transition: var(--transition);
}

.vertical-navbar:hover {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
        0 0 60px rgba(30, 58, 95, 0.3);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link i {
    font-size: 22px;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(45, 55, 72, 0.2));
    opacity: 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(30, 58, 95, 0.4);
    border-color: rgba(30, 58, 95, 0.6);
    transform: translateX(-4px);
    box-shadow: 
        0 4px 12px rgba(30, 58, 95, 0.4),
        0 0 20px rgba(30, 58, 95, 0.3);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(30, 58, 95, 0.8));
}

.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.6), rgba(45, 55, 72, 0.5));
    border-color: rgba(30, 58, 95, 0.8);
    box-shadow: 
        0 4px 16px rgba(30, 58, 95, 0.5),
        0 0 24px rgba(30, 58, 95, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-link.active::before {
    opacity: 1;
}

.nav-link.active i {
    filter: drop-shadow(0 0 10px rgba(30, 58, 95, 1));
}

/* Tooltip effect */
.nav-link::after {
    content: attr(title);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-link:hover::after {
    opacity: 1;
    right: 65px;
}

/* Responsive */
@media (max-width: 768px) {
    .vertical-navbar {
        right: 12px;
        padding: 12px 6px;
    }
    
    .nav-link {
        width: 42px;
        height: 42px;
    }
    
    .nav-link i {
        font-size: 20px;
    }
    
    .nav-link::after {
        display: none;
    }
}

/* Navigation removed - CV style layout */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 120px;
    overflow: hidden;
    background: #0a0a0a;
    background-image: 
        linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.5) 100%),
        url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: 120%;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    animation: backgroundMove 20s ease-in-out infinite alternate;
}

@keyframes backgroundMove {
    0% {
        background-position: center bottom;
        background-size: 120%;
    }
    50% {
        background-position: 60% 50%;
        background-size: 130%;
    }
    100% {
        background-position: 40% 60%;
        background-size: 125%;
    }
}

/* Desactivar animación en móviles */
@media (max-width: 768px) {
    .hero {
        animation: none;
        background-size: cover;
        background-position: center bottom;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(30, 58, 95, 0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(45, 55, 72, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 95, 0.12) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Tech Grid Overlay */
.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(30, 58, 95, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 58, 95, 0.15) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 2;
    pointer-events: none;
    animation: gridMove 25s linear infinite;
    opacity: 0.6;
    mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.6) 70%, transparent 100%);
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Tech Particles */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.tech-particles::before,
.tech-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 
        100px 200px 0 0 rgba(255, 255, 255, 0.4),
        300px 100px 0 0 rgba(255, 255, 255, 0.3),
        500px 300px 0 0 rgba(255, 255, 255, 0.5),
        700px 150px 0 0 rgba(255, 255, 255, 0.4),
        900px 250px 0 0 rgba(255, 255, 255, 0.3),
        1100px 80px 0 0 rgba(255, 255, 255, 0.4),
        200px 400px 0 0 rgba(255, 255, 255, 0.3),
        400px 450px 0 0 rgba(255, 255, 255, 0.4),
        600px 350px 0 0 rgba(255, 255, 255, 0.3),
        800px 500px 0 0 rgba(255, 255, 255, 0.4);
    animation: floatParticles 15s ease-in-out infinite;
}

.tech-particles::after {
    animation-delay: -7.5s;
    box-shadow: 
        150px 300px 0 0 rgba(255, 255, 255, 0.4),
        350px 200px 0 0 rgba(255, 255, 255, 0.3),
        550px 400px 0 0 rgba(255, 255, 255, 0.5),
        750px 250px 0 0 rgba(255, 255, 255, 0.4),
        950px 350px 0 0 rgba(255, 255, 255, 0.3),
        1150px 180px 0 0 rgba(255, 255, 255, 0.4),
        250px 500px 0 0 rgba(255, 255, 255, 0.3),
        450px 550px 0 0 rgba(255, 255, 255, 0.4),
        650px 450px 0 0 rgba(255, 255, 255, 0.3),
        850px 600px 0 0 rgba(255, 255, 255, 0.4);
}

@keyframes floatParticles {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(30px, -30px) scale(1.2); opacity: 1; }
}

/* City Skyline Background */
.city-skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.2) 30%, transparent 100%);
    overflow: hidden;
    opacity: 0.5;
}

.city-skyline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        /* Edificios más altos y variados - izquierda */
        linear-gradient(to top, #0f172a 0%, #0f172a 28%, transparent 28%),
        linear-gradient(to top, #1e293b 0%, #1e293b 38%, transparent 38%),
        linear-gradient(to top, #0f172a 0%, #0f172a 32%, transparent 32%),
        linear-gradient(to top, #1e293b 0%, #1e293b 48%, transparent 48%),
        /* Edificios centro - más altos */
        linear-gradient(to top, #0f172a 0%, #0f172a 52%, transparent 52%),
        linear-gradient(to top, #1e293b 0%, #1e293b 42%, transparent 42%),
        linear-gradient(to top, #0f172a 0%, #0f172a 38%, transparent 38%),
        linear-gradient(to top, #1e293b 0%, #1e293b 58%, transparent 58%),
        linear-gradient(to top, #0f172a 0%, #0f172a 45%, transparent 45%),
        /* Edificios derecha */
        linear-gradient(to top, #1e293b 0%, #1e293b 35%, transparent 35%),
        linear-gradient(to top, #0f172a 0%, #0f172a 42%, transparent 42%),
        linear-gradient(to top, #1e293b 0%, #1e293b 48%, transparent 48%),
        linear-gradient(to top, #0f172a 0%, #0f172a 30%, transparent 30%);
    background-size: 
        7% 100%, 5% 100%, 8% 100%, 6% 100%,
        10% 100%, 7% 100%, 9% 100%, 11% 100%, 8% 100%,
        6% 100%, 7% 100%, 9% 100%, 5% 100%;
    background-position: 
        0% bottom, 7% bottom, 13% bottom, 20% bottom,
        28% bottom, 37% bottom, 46% bottom, 55% bottom, 64% bottom,
        72% bottom, 79% bottom, 87% bottom, 94% bottom;
    background-repeat: no-repeat;
    opacity: 0.6;
    filter: blur(0.5px);
}

.city-skyline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        /* Ventanas iluminadas - más numerosas y organizadas */
        /* Edificio 1 */
        radial-gradient(circle at 3.5% 72%, rgba(30, 58, 95, 0.9) 2px, transparent 2px),
        radial-gradient(circle at 3.5% 65%, rgba(30, 58, 95, 0.7) 1.5px, transparent 1.5px),
        radial-gradient(circle at 3.5% 58%, rgba(30, 58, 95, 0.8) 2px, transparent 2px),
        /* Edificio 2 */
        radial-gradient(circle at 10% 68%, rgba(30, 58, 95, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 10% 60%, rgba(30, 58, 95, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 10% 52%, rgba(30, 58, 95, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 10% 75%, rgba(30, 58, 95, 0.9) 1.5px, transparent 1.5px),
        /* Edificio 3 */
        radial-gradient(circle at 16.5% 70%, rgba(30, 58, 95, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 16.5% 63%, rgba(30, 58, 95, 0.8) 1.5px, transparent 1.5px),
        /* Edificio 4 */
        radial-gradient(circle at 23% 66%, rgba(30, 58, 95, 0.9) 2px, transparent 2px),
        radial-gradient(circle at 23% 58%, rgba(30, 58, 95, 0.7) 1.5px, transparent 1.5px),
        radial-gradient(circle at 23% 50%, rgba(30, 58, 95, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 23% 74%, rgba(30, 58, 95, 0.6) 1.5px, transparent 1.5px),
        /* Edificio 5 - Centro alto */
        radial-gradient(circle at 31.5% 64%, rgba(30, 58, 95, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 31.5% 56%, rgba(30, 58, 95, 0.9) 1.5px, transparent 1.5px),
        radial-gradient(circle at 31.5% 48%, rgba(30, 58, 95, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 31.5% 72%, rgba(30, 58, 95, 0.8) 1.5px, transparent 1.5px),
        radial-gradient(circle at 31.5% 40%, rgba(30, 58, 95, 0.6) 2px, transparent 2px),
        /* Edificio 6 */
        radial-gradient(circle at 41.5% 68%, rgba(30, 58, 95, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 41.5% 60%, rgba(30, 58, 95, 0.8) 1.5px, transparent 1.5px),
        radial-gradient(circle at 41.5% 52%, rgba(30, 58, 95, 0.9) 2px, transparent 2px),
        /* Edificio 7 */
        radial-gradient(circle at 50% 70%, rgba(30, 58, 95, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 50% 62%, rgba(30, 58, 95, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 54%, rgba(30, 58, 95, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 50% 78%, rgba(30, 58, 95, 0.9) 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 46%, rgba(30, 58, 95, 0.8) 2px, transparent 2px),
        /* Edificio 8 */
        radial-gradient(circle at 59% 66%, rgba(30, 58, 95, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 59% 58%, rgba(30, 58, 95, 0.8) 1.5px, transparent 1.5px),
        radial-gradient(circle at 59% 50%, rgba(30, 58, 95, 0.9) 2px, transparent 2px),
        radial-gradient(circle at 59% 74%, rgba(30, 58, 95, 0.6) 1.5px, transparent 1.5px),
        /* Edificio 9 */
        radial-gradient(circle at 68% 64%, rgba(30, 58, 95, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 68% 56%, rgba(30, 58, 95, 0.7) 1.5px, transparent 1.5px),
        radial-gradient(circle at 68% 48%, rgba(30, 58, 95, 0.9) 2px, transparent 2px),
        radial-gradient(circle at 68% 72%, rgba(30, 58, 95, 0.8) 1.5px, transparent 1.5px),
        radial-gradient(circle at 68% 40%, rgba(30, 58, 95, 0.6) 2px, transparent 2px),
        /* Edificio 10 */
        radial-gradient(circle at 75.5% 68%, rgba(30, 58, 95, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 75.5% 60%, rgba(30, 58, 95, 0.8) 1.5px, transparent 1.5px),
        /* Edificio 11 */
        radial-gradient(circle at 83% 70%, rgba(30, 58, 95, 0.9) 2px, transparent 2px),
        radial-gradient(circle at 83% 62%, rgba(30, 58, 95, 0.7) 1.5px, transparent 1.5px),
        radial-gradient(circle at 83% 54%, rgba(30, 58, 95, 0.8) 2px, transparent 2px),
        /* Edificio 12 */
        radial-gradient(circle at 90.5% 66%, rgba(30, 58, 95, 0.8) 2px, transparent 2px),
        radial-gradient(circle at 90.5% 58%, rgba(30, 58, 95, 0.6) 1.5px, transparent 1.5px),
        /* Edificio 13 */
        radial-gradient(circle at 97% 72%, rgba(30, 58, 95, 0.7) 2px, transparent 2px),
        radial-gradient(circle at 97% 65%, rgba(30, 58, 95, 0.9) 1.5px, transparent 1.5px),
        /* Líneas de conexión tecnológicas horizontales */
        linear-gradient(90deg, transparent 25%, rgba(30, 58, 95, 0.25) 28%, rgba(30, 58, 95, 0.25) 32%, transparent 35%),
        linear-gradient(90deg, transparent 45%, rgba(30, 58, 95, 0.2) 48%, rgba(30, 58, 95, 0.2) 52%, transparent 55%),
        linear-gradient(90deg, transparent 65%, rgba(30, 58, 95, 0.25) 68%, rgba(30, 58, 95, 0.25) 72%, transparent 75%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    animation: cityLights 4s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes cityLights {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

/* Líneas de conexión inteligente entre edificios */
.city-connections {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
}

.city-connections::before,
.city-connections::after {
    content: '';
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 95, 0.5), transparent);
    box-shadow: 0 0 8px rgba(30, 58, 95, 0.4);
    animation: dataFlow 3s linear infinite;
}

.city-connections::before {
    top: 45%;
    left: 25%;
    right: 35%;
    animation-delay: 0s;
}

.city-connections::after {
    top: 55%;
    left: 45%;
    right: 25%;
    animation-delay: -1.5s;
}

@keyframes dataFlow {
    0% { opacity: 0.3; transform: translateX(-30px); }
    50% { opacity: 0.7; }
    100% { opacity: 0.3; transform: translateX(30px); }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(5deg); }
}

/* Hero Glow Effects */
.hero-glow-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow-effects::before,
.hero-glow-effects::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowFloat 6s ease-in-out infinite;
}

.hero-glow-effects::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-glow-effects::after {
    bottom: 20%;
    right: 15%;
    animation-delay: -3s;
    background: radial-gradient(circle, rgba(45, 55, 72, 0.25) 0%, transparent 70%);
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(50px, -50px) scale(1.2); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    max-width: 1100px;
    z-index: 3;
    padding: 0 24px;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.15) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: -1;
    filter: blur(40px);
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero-content * {
    color: var(--white) !important;
}

.hero-content .title-subtitle {
    color: var(--white) !important;
}

.hero-content .hero-description {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(30, 58, 95, 0.3);
    border: 1px solid rgba(30, 58, 95, 0.5);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.3);
}

.hero-badge i {
    font-size: 1.1rem;
    color: rgba(30, 58, 95, 0.9);
    filter: drop-shadow(0 0 8px rgba(30, 58, 95, 0.6));
}

.hero-title {
    margin-bottom: 2rem;
    position: relative;
}

.title-line {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.7);
}

.title-main {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.2rem, 9vw, 7rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 0.4rem;
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.02em;
    text-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.8),
        0 1px 4px rgba(0, 0, 0, 0.6);
    position: relative;
}

.title-main:first-child {
    animation-delay: 0.1s;
}

.title-main:last-child {
    animation-delay: 0.2s;
}

.title-subtitle {
    display: inline-block;
    font-size: clamp(0.95rem, 2.2vw, 1.25rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    font-family: 'Inter', sans-serif;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: rgba(30, 58, 95, 0.3);
    border: 1px solid rgba(30, 58, 95, 0.5);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.3);
}

.title-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-description {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.95);
    margin: 2.5rem auto 0;
    line-height: 1.9;
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
    font-weight: 400;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.01em;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 1.5rem 2rem;
    background: rgba(30, 58, 95, 0.2);
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    min-width: 140px;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.4);
    border-color: rgba(30, 58, 95, 0.5);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(30, 58, 95, 0.6);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-buttons {
    display: none;
}

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

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.fade-up {
    transform: translateY(60px);
}

.scroll-reveal.fade-down {
    transform: translateY(-60px);
}

.scroll-reveal.fade-left {
    transform: translateX(-60px);
}

.scroll-reveal.fade-right {
    transform: translateX(60px);
}

.scroll-reveal.fade-in {
    transform: scale(0.88);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

.scroll-reveal.delay-1 {
    transition-delay: 0.05s;
}

.scroll-reveal.delay-2 {
    transition-delay: 0.1s;
}

.scroll-reveal.delay-3 {
    transition-delay: 0.15s;
}

.scroll-reveal.delay-4 {
    transition-delay: 0.2s;
}

.scroll-reveal.delay-5 {
    transition-delay: 0.25s;
}

.scroll-reveal.delay-6 {
    transition-delay: 0.3s;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(26, 26, 26, 0.25);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(26, 26, 26, 0.35);
    background: #2a2a2a;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 26, 26, 0.2);
}

.btn-full {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s infinite;
    z-index: 2;
    opacity: 0.9;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 32px;
    height: 52px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    position: relative;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.scroll-indicator:hover .mouse {
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
}

.wheel {
    width: 5px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2.5s infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(18px); }
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

/* section:nth-child(even) {
    background: var(--bg-light);
} */

.hero {
    padding: 100px 0 120px;
}

.contact-footer {
    padding: 80px 0 40px;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3.5px;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
    position: relative;
    padding: 0.5rem 1.25rem;
    background: var(--secondary-color);
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.85;
    font-weight: 400;
    max-width: 720px;
    margin: 0 auto;
    letter-spacing: -0.01em;
}

/* About Section */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.about-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
.services {
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-item {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Features Section */
.features {
    background: var(--white);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.features-text {
    max-width: 600px;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-check {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.features-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    opacity: 0.9;
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

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

/* Testimonials Section */
.testimonials {
    background: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Divisions Section */
.divisions {
    background: #fafafa;
    padding: 120px 0;
}

.division-card {
    background: var(--white);
    border-radius: 28px;
    padding: 4.5rem;
    margin-bottom: 5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.division-card:last-child {
    margin-bottom: 0;
}

.division-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: var(--transition);
}

.division-card:hover::before {
    transform: scaleY(1);
}

.division-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.division-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--secondary-color);
    position: relative;
}

.division-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.division-tag {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-md);
}

.division-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-feature {
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-feature:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(8px);
    border-color: rgba(0, 0, 0, 0.05);
}

.service-feature .feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-feature:hover .feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.service-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.01em;
}

.service-feature p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.98rem;
    font-weight: 400;
}

/* Company Showcase Base Styles */
.company-showcase {
    background: var(--bg-section);
    border-radius: 28px;
    padding: 4rem;
    margin-bottom: 5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.company-showcase > * {
    position: relative;
    z-index: 1;
}

.company-showcase {
    background: var(--bg-section);
    border-radius: 28px;
    padding: 4rem;
    margin-bottom: 5rem;
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.company-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: var(--transition);
}

.company-showcase:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.company-showcase:hover::before {
    opacity: 1;
    animation: techScan 2s ease-in-out infinite;
}

@keyframes techScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.company-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    opacity: 0.08;
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    z-index: 0;
    transition: var(--transition);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.company-number::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--text-light), transparent);
    opacity: 0.1;
}

.company-showcase:hover .company-number {
    opacity: 0.12;
    transform: scale(1.05);
}

.company-name-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.company-subtitle {
    display: inline-block;
    padding: 0.65rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.company-subtitle:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Brocart - Timeline Layout */
.brocart-showcase {
    background: var(--bg-section);
    border-left: 4px solid var(--brocart-color);
    position: relative;
    overflow: hidden;
}

.company-image-header {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 3rem;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.company-header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.company-image-header:hover .company-header-image {
    transform: scale(1.1);
}

.company-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.company-logo {
    max-width: 250px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.company-content-wrapper {
    position: relative;
    z-index: 2;
}

.brocart-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(30, 58, 95, 0.05) 2px,
            rgba(30, 58, 95, 0.05) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.brocart-showcase::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: techPulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes techPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.brocart-showcase .company-subtitle {
    background: var(--brocart-color);
}

.brocart-showcase .company-subtitle:hover {
    background: var(--brocart-color-light);
}

.company-header-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.company-header-large .company-name-large {
    color: var(--text-dark);
}

.company-header-large .company-subtitle {
    color: #ffffff;
}

.company-header-large::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--brocart-color), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(30, 58, 95, 0.3);
}

.company-title-group {
    position: relative;
    z-index: 1;
}

.brocart-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.brocart-card-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid transparent;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

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

.brocart-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--brocart-color);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 1;
}

.brocart-card-item::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 8px;
    height: 8px;
    background: var(--brocart-color);
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 8px rgba(30, 58, 95, 0.4);
    animation: techDot 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes techDot {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.brocart-card-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 58, 95, 0.3);
}

.brocart-card-item:hover .brocart-card-icon {
    background: var(--brocart-color-light);
}

.brocart-card-item:hover::before {
    transform: scaleX(1);
    background: var(--brocart-color);
}

.brocart-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brocart-color) 0%, var(--brocart-color-light) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(30, 58, 95, 0.2);
    transition: var(--transition);
    position: relative;
}

.brocart-card-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 21px;
    background: linear-gradient(135deg, var(--brocart-color), var(--brocart-color-light));
    opacity: 0;
    filter: blur(8px);
    transition: var(--transition);
    z-index: -1;
}

.brocart-card-item:hover .brocart-card-icon::before {
    opacity: 0.4;
}

.brocart-card-icon .material-icons {
    font-size: 2rem;
    line-height: 1;
}

.brocart-card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: var(--brocart-color);
    opacity: 0;
    filter: blur(8px);
    transition: var(--transition);
    z-index: -1;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.brocart-card-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    background: var(--brocart-color);
    opacity: 0;
    filter: blur(12px);
    transition: var(--transition);
    z-index: -1;
}

.brocart-card-item:hover .brocart-card-icon {
    transform: scale(1.08) rotate(5deg);
}

.brocart-card-item:hover .brocart-card-icon::after {
    opacity: 0.4;
}

.brocart-card-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
}

.brocart-card-item p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.925rem;
    letter-spacing: -0.01em;
}

/* Paucla - Grid Asimétrico */
.paucla-showcase {
    background: var(--bg-section);
    border-left: 4px solid var(--paucla-color);
    position: relative;
    overflow: hidden;
}

.paucla-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(74, 85, 104, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 85, 104, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.paucla-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(74, 85, 104, 0.015) 98px,
            rgba(74, 85, 104, 0.015) 100px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(74, 85, 104, 0.015) 98px,
            rgba(74, 85, 104, 0.015) 100px
        );
    pointer-events: none;
    z-index: 0;
}

.paucla-showcase .company-subtitle {
    background: var(--paucla-color);
}

.paucla-showcase .company-subtitle:hover {
    background: var(--paucla-color-light);
}

.paucla-header-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.paucla-header-section .company-name-large {
    color: var(--text-dark);
}

.paucla-header-section .company-subtitle {
    color: #ffffff;
}

.paucla-header-section::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--paucla-color), transparent);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(74, 85, 104, 0.4);
}

.paucla-title-section {
    position: relative;
    z-index: 1;
}

.paucla-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.paucla-main-service {
    background: var(--paucla-color);
    padding: 3.5rem;
    border-radius: 28px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.paucla-main-service::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.paucla-main-service::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: techShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes techShine {
    0% { background-position: -200% -200%; }
    100% { background-position: 200% 200%; }
}

.paucla-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.paucla-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    filter: blur(10px);
    transition: var(--transition);
    z-index: -1;
}

.paucla-main-service:hover .paucla-icon-wrapper::after {
    opacity: 0.6;
}

.paucla-icon-wrapper .material-icons {
    font-size: 2.5rem;
    line-height: 1;
}

.paucla-main-service h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.paucla-main-service p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
}

.paucla-services-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.paucla-service-item {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    padding: 2.25rem;
    background: linear-gradient(135deg, var(--bg-section) 0%, rgba(74, 85, 104, 0.02) 100%);
    border-radius: 22px;
    border-left: 4px solid var(--paucla-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.paucla-service-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--paucla-color) 0%, var(--paucla-color-light) 100%);
    transition: var(--transition);
    box-shadow: 0 0 8px rgba(74, 85, 104, 0.3);
}

.paucla-service-item:hover::before {
    width: 5px;
    box-shadow: 0 0 15px rgba(74, 85, 104, 0.5);
}

.paucla-service-item::after {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--paucla-color);
    border-radius: 50%;
    opacity: 0.5;
    box-shadow: 0 0 6px rgba(74, 85, 104, 0.4);
}

.paucla-service-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-left-width: 5px;
    border-color: rgba(74, 85, 104, 0.4);
}

.paucla-service-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--paucla-color);
    line-height: 1;
    flex-shrink: 0;
    min-width: 50px;
}

.paucla-service-content h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.paucla-service-content p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.95rem;
}

.paucla-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--secondary-color);
}

.paucla-feature-box {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, var(--bg-section) 0%, rgba(74, 85, 104, 0.015) 100%);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.paucla-feature-box::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, transparent 0%, rgba(74, 85, 104, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.paucla-feature-box:hover::after {
    opacity: 1;
}

.paucla-feature-box:hover {
    background: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(74, 85, 104, 0.3);
}

.paucla-feature-box i {
    font-size: 1.5rem;
    color: var(--paucla-color);
    width: 30px;
    text-align: center;
}

.paucla-feature-box .material-icons {
    font-size: 1.5rem;
    line-height: 1;
}

.paucla-feature-box span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Neatec - Featured Card + Grid */
.neatec-showcase {
    background: var(--bg-section);
    border-left: 4px solid var(--neatec-color);
    position: relative;
    overflow: hidden;
}

.neatec-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(44, 62, 80, 0.015) 50px,
            rgba(44, 62, 80, 0.015) 51px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(44, 62, 80, 0.015) 50px,
            rgba(44, 62, 80, 0.015) 51px
        );
    pointer-events: none;
    z-index: 0;
}

.neatec-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(44, 62, 80, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(44, 62, 80, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: techPulse 5s ease-in-out infinite;
}

.neatec-showcase .company-subtitle {
    background: var(--neatec-color);
}

.neatec-showcase .company-subtitle:hover {
    background: var(--neatec-color-light);
}

.neatec-header-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.neatec-header-section .company-name-large {
    color: var(--text-dark);
}

.neatec-header-section .company-subtitle {
    color: #ffffff;
}

.neatec-header-section::after {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--neatec-color), transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(44, 62, 80, 0.4);
}

.neatec-title-section {
    position: relative;
    z-index: 1;
}

.neatec-main {
    margin-bottom: 3rem;
}

.neatec-featured {
    background: var(--neatec-color);
    padding: 4rem;
    border-radius: 32px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.neatec-featured::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    animation: techLines 10s linear infinite;
    pointer-events: none;
}

@keyframes techLines {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.neatec-featured-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.neatec-featured-icon .material-icons {
    font-size: 3rem;
    line-height: 1;
}

.neatec-featured h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.neatec-featured p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.neatec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.neatec-item {
    background: linear-gradient(135deg, var(--bg-section) 0%, rgba(44, 62, 80, 0.02) 100%);
    padding: 2.75rem;
    border-radius: 22px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.neatec-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neatec-color), transparent);
    opacity: 0;
    transition: var(--transition);
    box-shadow: 0 -2px 8px rgba(44, 62, 80, 0.3);
}

.neatec-item:hover::after {
    opacity: 0.7;
    box-shadow: 0 -2px 12px rgba(44, 62, 80, 0.5);
}

.neatec-item {
    background: linear-gradient(135deg, var(--bg-section) 0%, rgba(44, 62, 80, 0.02) 100%);
    padding: 2.75rem;
    border-radius: 22px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.neatec-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--neatec-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.neatec-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(44, 62, 80, 0.3);
}

.neatec-item:hover::before {
    transform: scaleX(1);
}

.neatec-item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neatec-color) 0%, var(--neatec-color-light) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(44, 62, 80, 0.2);
    transition: var(--transition);
    position: relative;
}

.neatec-item-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--neatec-color), var(--neatec-color-light));
    opacity: 0;
    filter: blur(10px);
    transition: var(--transition);
    z-index: -1;
}

.neatec-item:hover .neatec-item-icon::after {
    opacity: 0.5;
}

.neatec-item-icon .material-icons {
    font-size: 2rem;
    line-height: 1;
}

.neatec-item:hover .neatec-item-icon {
    transform: scale(1.1);
    background: var(--neatec-color-light);
}

.neatec-item h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.neatec-item p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* Recycler - Split Layout */
.recycler-showcase {
    background: var(--bg-section);
    border-left: 4px solid var(--recycler-color);
    position: relative;
    overflow: hidden;
}

.recycler-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(52, 73, 94, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(52, 73, 94, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.recycler-showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(52, 73, 94, 0.01) 20px,
            rgba(52, 73, 94, 0.01) 21px
        );
    pointer-events: none;
    z-index: 0;
}

.recycler-showcase .company-subtitle {
    background: var(--recycler-color);
}

.recycler-showcase .company-subtitle:hover {
    background: var(--recycler-color-light);
}

.recycler-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.recycler-left {
    position: relative;
}

.company-header-vertical {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.company-header-vertical .company-name-large {
    color: var(--text-dark);
}

.company-header-vertical .company-subtitle {
    color: #ffffff;
}

.recycler-main-feature {
    background: var(--recycler-color);
    padding: 4rem;
    border-radius: 32px;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.recycler-main-feature::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

.recycler-main-feature::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.02) 20px,
            rgba(255, 255, 255, 0.02) 22px
        );
    animation: techScan 4s linear infinite;
    pointer-events: none;
}

.recycler-main-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.recycler-main-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 28px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    filter: blur(12px);
    transition: var(--transition);
    z-index: -1;
    animation: techPulse 3s ease-in-out infinite;
}

.recycler-main-feature:hover .recycler-main-icon::after {
    opacity: 0.6;
}

.recycler-main-icon .material-icons {
    font-size: 3rem;
    line-height: 1;
}

.recycler-main-feature h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.recycler-main-feature p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
}

.recycler-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.recycler-service-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.recycler-stack-item {
    background: linear-gradient(135deg, var(--bg-section) 0%, rgba(52, 73, 94, 0.02) 100%);
    padding: 2.75rem;
    border-radius: 26px;
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--recycler-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    border-left-width: 5px;
    position: relative;
    overflow: hidden;
}

.recycler-stack-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--recycler-color) 0%, var(--recycler-color-light) 100%);
    transition: var(--transition);
    box-shadow: 2px 0 8px rgba(52, 73, 94, 0.2);
}

.recycler-stack-item:hover::before {
    width: 6px;
    box-shadow: 2px 0 15px rgba(52, 73, 94, 0.4);
}

.recycler-stack-item::after {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 1.5rem;
    width: 4px;
    height: 4px;
    background: var(--recycler-color);
    border-radius: 50%;
    opacity: 0.4;
    box-shadow: 0 0 6px rgba(52, 73, 94, 0.4);
    animation: techDot 2.5s ease-in-out infinite;
}

.recycler-stack-item:hover {
    transform: translateX(12px);
    box-shadow: var(--shadow-xl);
    border-left-width: 6px;
    border-color: rgba(52, 73, 94, 0.4);
}

.stack-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--recycler-color) 0%, var(--recycler-color-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(52, 73, 94, 0.2);
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}

.stack-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 19px;
    background: linear-gradient(135deg, var(--recycler-color), var(--recycler-color-light));
    opacity: 0;
    filter: blur(8px);
    transition: var(--transition);
    z-index: -1;
}

.recycler-stack-item:hover .stack-icon::before {
    opacity: 0.4;
}

.stack-icon .material-icons {
    font-size: 1.8rem;
    line-height: 1;
}

.recycler-stack-item:hover .stack-icon {
    background: var(--recycler-color-light);
}

.stack-content h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.stack-content p {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* Brocart Software - Centered Minimalist */
.software-showcase {
    background: var(--bg-section);
    text-align: center;
    border-left: 4px solid var(--relex-color);
    position: relative;
    overflow: hidden;
}

.software-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(45, 55, 72, 0.02) 10px,
            rgba(45, 55, 72, 0.02) 20px
        );
    pointer-events: none;
    z-index: 0;
}

.software-showcase::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(45, 55, 72, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: techGlow 6s ease-in-out infinite;
}

@keyframes techGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.software-showcase .company-subtitle {
    background: var(--relex-color);
}

.software-showcase .company-subtitle:hover {
    background: var(--relex-color-light);
}

.software-hero {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.software-hero .company-name-large {
    color: var(--text-dark);
}

.software-hero .company-subtitle {
    color: #ffffff;
}

.software-icon-large {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--relex-color) 0%, var(--relex-color-light) 100%);
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3.5rem;
    font-size: 4.5rem;
    color: var(--white);
    box-shadow: var(--shadow-xl), 0 0 0 0 rgba(45, 55, 72, 0.3);
    transform: rotate(-5deg);
    transition: var(--transition);
    position: relative;
    animation: techFloat 3s ease-in-out infinite;
}

.software-icon-large .material-icons {
    font-size: 4.5rem;
    line-height: 1;
}

@keyframes techFloat {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-10px); }
}

.software-icon-large {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--relex-color) 0%, var(--relex-color-light) 100%);
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 3.5rem;
    font-size: 4.5rem;
    color: var(--white);
    box-shadow: var(--shadow-xl), 0 0 0 0 rgba(45, 55, 72, 0.3);
    transform: rotate(-5deg);
    transition: var(--transition);
    position: relative;
    animation: techFloat 3s ease-in-out infinite;
}

.software-icon-large::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 40px;
    border: 2px solid var(--relex-color);
    opacity: 0.3;
    animation: techRotate 8s linear infinite;
}

@keyframes techRotate {
    0% { transform: rotate(0deg); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: rotate(360deg); opacity: 0.3; }
}

.software-icon-large::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 48px;
    background: radial-gradient(circle, rgba(45, 55, 72, 0.2) 0%, transparent 70%);
    opacity: 0.3;
    animation: techPulse 3s ease-in-out infinite;
    z-index: -2;
}

.software-showcase:hover .software-icon-large {
    transform: rotate(0deg) scale(1.08);
}

.software-showcase:hover .software-icon-large {
    background: var(--relex-color-light);
}

.software-showcase:hover .software-icon-large::after {
    opacity: 0.5;
    background: var(--relex-color);
}

.company-header-centered {
    margin-bottom: 2.5rem;
    position: relative;
}

.company-header-centered::before,
.company-header-centered::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--relex-color), transparent);
    box-shadow: 0 0 8px rgba(45, 55, 72, 0.4);
}

.company-header-centered::before {
    left: -4rem;
}

.company-header-centered::after {
    right: -4rem;
}

.software-description {
    margin-bottom: 3rem;
}

.software-description p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.software-features-minimal {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.software-feature-minimal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.02) 0%, transparent 100%);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.software-feature-minimal::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.software-feature-minimal:hover::before {
    opacity: 1;
}

.software-feature-minimal::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--relex-color);
    border-radius: 2px;
    transition: var(--transition);
    box-shadow: 0 0 6px rgba(45, 55, 72, 0.4);
}

.software-feature-minimal:hover::after {
    height: 60%;
}

.software-feature-minimal:hover {
    transform: translateX(5px);
}

.software-feature-minimal i {
    color: var(--relex-color);
    font-size: 1.3rem;
}

.software-feature-minimal .material-icons {
    font-size: 1.3rem;
    line-height: 1;
}

/* Info Accordion Styles */
.info-accordion {
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.accordion-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.75rem;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
}

.accordion-toggle:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.accordion-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

.accordion-toggle span {
    flex: 1;
}

.accordion-toggle i {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 0.9rem;
}

.accordion-toggle .material-icons {
    font-size: 0.9rem;
    line-height: 1;
}

.accordion-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.75rem;
}

.accordion-content.active {
    max-height: 2000px;
    padding: 2rem 1.75rem;
}

.accordion-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.accordion-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.accordion-info h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.accordion-info p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.accordion-info ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.accordion-info ul li {
    color: var(--text-light);
    line-height: 1.85;
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.875rem;
    font-size: 1rem;
}

.accordion-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Technology Section */
.technology {
    background: var(--secondary-color);
}

/* Main Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: footerScan 3s ease-in-out infinite;
}

@keyframes footerScan {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.footer-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    animation: socialPulse 1s ease-in-out infinite;
}

@keyframes socialPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 255, 255, 0.5); }
}

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

.footer-section ul li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-section ul li i {
    width: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-section ul li .material-icons {
    font-size: 1.125rem;
    line-height: 1;
    vertical-align: middle;
}

.footer-section ul li a:hover i {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.tech-card {
    background: var(--bg-section);
    padding: 3.5rem 2.75rem;
    border-radius: 26px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.tech-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.tech-card:hover::after {
    opacity: 1;
    animation: techRotate 10s linear infinite;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.tech-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(15, 23, 42, 0.3);
}

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

.tech-icon {
    font-size: 3.25rem;
    margin-bottom: 1.75rem;
    display: block;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
    filter: drop-shadow(0 0 10px rgba(15, 23, 42, 0.2));
}

.tech-icon .material-icons {
    font-size: 3.25rem;
    line-height: 1;
}

.tech-card:hover .tech-icon {
    color: var(--text-dark);
    transform: scale(1.12) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(15, 23, 42, 0.4));
    animation: iconGlow 1.5s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(15, 23, 42, 0.4)); }
    50% { filter: drop-shadow(0 0 30px rgba(15, 23, 42, 0.6)); }
}

.tech-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.01em;
}

.tech-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--white);
    padding-bottom: 120px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    max-width: 500px;
}

.contact-description {
    color: var(--text-light);
    line-height: 1.8;
    margin: 1.5rem 0 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 1.3rem;
    width: 55px;
    height: 55px;
    background: var(--secondary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-item h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 3.5rem;
    border-radius: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid transparent;
    border-radius: 12px;
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid transparent;
    border-radius: 12px;
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Contact Footer - CV Style */
.contact-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 40px;
    margin-top: 0;
}

.contact-footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.contact-footer-brand h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.contact-footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-footer-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-footer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-footer-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.contact-footer-divisions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.contact-footer-divisions span {
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.contact-footer-divisions span:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.contact-footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 3.5rem;
    }

    .company-showcase {
        padding: 2.5rem;
        margin-bottom: 3.5rem;
    }

    .company-image-header {
        height: 200px;
        margin-bottom: 2rem;
        border-radius: 0 12px 12px 0;
    }

    .company-logo-overlay {
        padding: 1.5rem 2rem;
    }

    .company-logo {
        max-width: 180px;
        max-height: 80px;
    }

    .features-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .division-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .division-services {
        grid-template-columns: 1fr;
    }

    .paucla-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .paucla-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .brocart-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .brocart-card-item {
        padding: 2rem 1.5rem;
    }

    .company-header-large {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .paucla-header-section,
    .neatec-header-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .division-card {
        padding: 2rem;
    }

    .recycler-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .neatec-grid {
        grid-template-columns: 1fr;
    }

    .software-features-minimal {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-visual {
        height: 400px;
    }

    .contact-footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-footer-info {
        grid-template-columns: 1fr;
    }

    .info-accordion {
        margin-top: 2.5rem;
    }

    .accordion-content.active {
        padding: 1.5rem 1.25rem;
    }

    .accordion-info {
        padding: 2rem 1.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .section-description {
        font-size: 1rem;
    }

    .hero {
        padding: 80px 0 60px;
        min-height: 90vh;
    }

    .hero-content {
        padding: 0 16px;
    }

    .title-subtitle {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 1rem;
        margin-top: 2rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .title-main {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: 0.2rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .stat-item {
        padding: 1.25rem 1.5rem;
        min-width: 100px;
    }

    .stat-number {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .city-skyline {
        height: 40%;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .company-showcase {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
        border-radius: 20px;
    }

    .company-number {
        font-size: 3rem;
        top: 1rem;
        right: 1.5rem;
    }

    .company-name-large {
        font-size: 1.8rem;
    }

    .company-subtitle {
        padding: 0.5rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-top: 0.75rem;
    }

    .brocart-cards-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .brocart-card-item {
        padding: 1.75rem 1.5rem;
    }

    .brocart-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .brocart-card-icon .material-icons {
        font-size: 1.75rem;
    }

    .brocart-card-item h4 {
        font-size: 1.05rem;
    }

    .brocart-card-item p {
        font-size: 0.875rem;
    }

    .company-header-large {
        margin-bottom: 2rem;
    }

    .paucla-main-service {
        padding: 2rem 1.75rem;
    }

    .paucla-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .paucla-icon-wrapper .material-icons {
        font-size: 2rem;
    }

    .paucla-main-service h4 {
        font-size: 1.5rem;
    }

    .paucla-service-item {
        padding: 1.75rem 1.5rem;
        gap: 1.25rem;
    }

    .paucla-service-number {
        font-size: 2rem;
        min-width: 45px;
    }

    .paucla-service-content h5 {
        font-size: 1.15rem;
    }

    .paucla-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .paucla-feature-box {
        padding: 1.5rem;
    }

    .neatec-featured {
        padding: 2.5rem 2rem;
    }

    .neatec-featured-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .neatec-featured-icon .material-icons {
        font-size: 2.5rem;
    }

    .neatec-featured h4 {
        font-size: 1.6rem;
    }

    .neatec-item {
        padding: 2rem 1.75rem;
    }

    .neatec-item-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .neatec-item-icon .material-icons {
        font-size: 1.75rem;
    }

    .neatec-item h5 {
        font-size: 1.15rem;
    }

    .recycler-main-feature {
        padding: 2.5rem 2rem;
    }

    .recycler-main-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .recycler-main-icon .material-icons {
        font-size: 2.5rem;
    }

    .recycler-main-feature h4 {
        font-size: 1.5rem;
    }

    .recycler-stack-item {
        padding: 2rem 1.75rem;
        gap: 1.25rem;
    }

    .stack-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .stack-icon .material-icons {
        font-size: 1.6rem;
    }

    .stack-content h5 {
        font-size: 1.15rem;
    }

    .software-icon-large {
        width: 120px;
        height: 120px;
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
        border-radius: 28px;
    }

    .software-icon-large .material-icons {
        font-size: 3.5rem;
    }

    .software-description p {
        font-size: 1.05rem;
    }

    .software-feature-minimal {
        font-size: 1rem;
    }

    .tech-card {
        padding: 2.5rem 2rem;
    }

    .tech-icon {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }

    .tech-icon .material-icons {
        font-size: 2.75rem;
    }

    .tech-card h3 {
        font-size: 1.3rem;
    }

    .about-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .division-card {
        padding: 1.75rem 1.5rem;
    }

    .division-name {
        font-size: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .info-accordion {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .accordion-toggle {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 14px;
    }

    .accordion-toggle span {
        font-size: 0.9rem;
    }
    
    .accordion-content {
        padding: 0 1.25rem;
    }

    .accordion-content.active {
        padding: 1.5rem 1.25rem;
    }
    
    .accordion-info {
        padding: 1.75rem 1.5rem;
        border-radius: 16px;
    }
    
    .accordion-info h4 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .accordion-info h5 {
        font-size: 1.05rem;
        margin-top: 1.5rem;
        margin-bottom: 0.875rem;
    }

    .accordion-info p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.75;
    }

    .accordion-info ul {
        margin: 1.25rem 0;
    }

    .accordion-info ul li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
        margin-bottom: 0.75rem;
        line-height: 1.7;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .mouse {
        width: 28px;
        height: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Tablet responsive */
@media (max-width: 768px) and (min-width: 641px) {
    .brocart-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .paucla-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .neatec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

