:root {
    /* Sistema de Diseño Estricto */
    --bg-cyber-carbon: #0D0D0D;
    --accent-neon-red: #FF003C;
    --text-pure-light: #FFFFFF;

    /* Acentos de Sub-marcas */
    --sub-solutions: #E2E8F0;
    --sub-dev: #00E5FF;
    --sub-ai: #D500F9;

    /* Variables adicionales para UI */
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --nav-blur: blur(16px);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-cyber-carbon);
    color: var(--text-pure-light);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Tipografía de Títulos */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Exo 2', sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.7);
    backdrop-filter: var(--nav-blur);
    -webkit-backdrop-filter: var(--nav-blur);
    border-bottom: 1px solid rgba(255, 0, 60, 0.15);
    /* Línea fina de acento neón */
    transition: all 0.3s ease;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    justify-self: start;
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background-color: var(--text-pure-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

.nav-left {
    justify-self: start;
}

.nav-right {
    justify-self: end;
}

.logo {
    text-decoration: none;
    justify-self: center;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 60px;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    filter: blur(15px);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 35px;
    /* Ajusta este valor si es necesario */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-pure-light);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link {
    color: #A0AEC0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--text-pure-light);
    transform: scale(1.1);
}

/* Botón Iniciar Proyecto */
.btn-primary {
    background: transparent;
    color: var(--text-pure-light);
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--accent-neon-red);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.2), inset 0 0 5px rgba(255, 0, 60, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    background: rgba(255, 0, 60, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.4), inset 0 0 10px rgba(255, 0, 60, 0.2);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
}

#nodes-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--text-pure-light);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #A0AEC0;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== SOCIAL PROOF (MARQUEE) ===== */
.social-proof {
    min-height: auto;
    padding: 2rem 0;
    overflow: hidden;
    white-space: nowrap;
    background: #0D0D0D;
    border-top: 1px solid #0D0D0D;
    border-bottom: 1px solid #0D0D0D;
}

.marquee-title {
    text-align: center;
    color: #4A5568;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 700;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 3rem;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    gap: 4rem;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4A5568;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.marquee-item:hover {
    opacity: 1;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== EL MANIFIESTO ===== */
.manifesto {
    min-height: auto;
    padding: 6rem 6rem;
    text-align: center;
    background: var(--bg-cyber-carbon);
}

.manifesto-content {
    max-width: 900px;
    /* Reducido para forzar mejor quiebre de líneas */
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.manifesto h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: #A1A1AA;
    letter-spacing: -1px;
    text-wrap: balance;
    /* Fuerza simetría óptica en los párrafos */
    margin: 0 auto;
}

/* ===== NUESTROS SERVICIOS ===== */
.services {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    /* Para que nunca toque los bordes del monitor */
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== TESTIMONIOS ===== */
.testimonials {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    /* Para que nunca toque los bordes del monitor */
    width: 100%;
}

/* ===== COMPONENTES COMPARTIDOS ===== */
.section-title {
    text-align: center;
    color: #4A5568;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 4rem;
}

/* Carousel Styling */
.carousel-container {
    width: 95%;
    /* Da más margen en pantallas super anchas */
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    /* Previene recorte de sombras */
}

.testimonials-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 2.5rem;
}

.carousel-container .card {
    flex: 0 0 calc(33.333% - 1.666rem);
    /* Muestra 3 tarjetas en escritorio */
    min-height: 280px;
    /* Hace las cajas un poco más grandes/uniformes */
}

/* Dark Neumorphism Component */
.card {
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    padding: 3rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    min-height: 400px;
    /* Extiende el cuadro de servicio */
}

.card .card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
    /* Empuja el botón o contenido inferior al fondo */
}

.card:hover {
    border-color: var(--accent-neon-red);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.2), inset 0 0 10px rgba(255, 0, 60, 0.1);
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-pure-light);
}

.card p {
    color: #A1A1AA;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0 0 2rem 0;
    /* Espacio extra debajo del texto */
}

.btn-card {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-pure-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-top: auto;
    /* Se adhiere al fondo de la caja */
}

.btn-card:hover {
    background: var(--accent-neon-red);
    border-color: var(--accent-neon-red);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.quote {
    color: #E2E8F0;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    /* Empuja el autor hacia abajo */
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--glass-border);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.card .author-name {
    color: var(--text-pure-light);
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Exo 2', sans-serif;
    margin: 0;
}

.card .author-company {
    color: #A0AEC0;
    font-size: 0.9rem;
    margin: 0;
}

.card .author-location {
    color: var(--accent-neon-red);
    font-size: 0.85rem;
    margin: 0;
}


/* ===== FOOTER TERMINAL ===== */
.terminal-footer {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    /* Para que nunca toque los bordes del monitor */
    width: 100%;
    background-color: #0D0D0D;
    /* Un tono ligeramente más oscuro */
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.terminal-window {
    width: 90%;
    max-width: 1000px;
    min-height: 500px;
    margin: 0 auto 4rem;
    background: #0D0D0D;
    border: 1px solid #0D0D0D;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

.terminal-header {
    background: #0D0D0D;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000000;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.btn-close,
.btn-min,
.btn-max {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close {
    background: #FF5F56;
}

.btn-min {
    background: #FFBD2E;
}

.btn-max {
    background: #27C93F;
}

.terminal-title {
    color: #A0AEC0;
    font-family: monospace;
    font-size: 0.85rem;
    flex-grow: 1;
    text-align: center;
    margin-right: 48px;
    /* Compensar botones para centrar */
}

.terminal-body {
    padding: 2rem;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #A0AEC0;
}

.prompt {
    color: var(--accent-neon-red);
    font-weight: bold;
    margin-right: 0.5rem;
}

.output {
    color: #4A5568;
    margin: 0.6rem 0;
}

.output.highlight {
    color: var(--accent-neon-red);
    /* Cambiado de sub-dev a Rojo Neón */
}

.terminal-form {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.terminal-input {
    background: transparent;
    border: none;
    color: var(--text-pure-light);
    font-family: inherit;
    font-size: inherit;
    flex: 1;
    min-width: 250px;
    outline: none;
    caret-color: var(--accent-neon-red);
}

.terminal-input::placeholder {
    color: #c4b0b0;
}

.terminal-btn {
    background: transparent;
    border: none;
    color: #A0AEC0;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: underline;
    text-decoration-color: transparent;
}

.terminal-btn:hover {
    color: var(--accent-neon-red);
    text-decoration-color: var(--accent-neon-red);
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.4);
}

.terminal-socials {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.socials-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.socials-grid .social-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: #A0AEC0;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.socials-grid .social-btn:hover {
    color: var(--text-pure-light);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.social-btn.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
}

.social-btn.instagram:hover {
    border-color: #E1306C;
    color: #E1306C;
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.2);
}

.cursor-blink {
    animation: blink 1.2s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Mobile Contact Container */
.mobile-contact-container {
    display: none;
    /* Hide on Desktop by default */
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 2rem;
}

.mobile-contact-title {
    font-size: 1.5rem;
    color: var(--text-pure-light);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.mobile-socials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.mobile-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-pure-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.mobile-social-btn.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
}

.mobile-social-btn.instagram:hover {
    border-color: #E1306C;
    color: #E1306C;
}

.mobile-social-btn.email:hover {
    border-color: var(--accent-neon-red);
    color: var(--accent-neon-red);
}

.footer-bottom {
    text-align: center;
    color: #4A5568;
    font-size: 0.85rem;
}

/* ===== ANIMACIONES (SCROLL-DRIVEN) ===== */
.fade-in {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px) scale(0.98);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 1s ease,
        transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--animation-delay, 0s);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        flex: 1;
        justify-content: flex-start;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 3rem;
        transition: left 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.05);
        /* Cyberpunk sliding effect */
        z-index: 1000;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .nav-links a {
        font-size: 1.5rem;
        display: block;
        width: auto;
        text-align: center;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--accent-neon-red);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--accent-neon-red);
    }

    .navbar-container {
        padding: 1rem 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }



    .logo {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .nav-right {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        gap: 0;
    }

    .social-icons {
        display: none;
        /* Hide social icons in mobile navbar to save space */
    }

    .btn-primary {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }

    .terminal-body {
        padding: 1.5rem;
        font-size: 0.9rem;
    }

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

    .carousel-container .card {
        flex: 0 0 100%;
        /* Muestra 1 slide en móviles */
    }

    .manifesto {
        padding: 4rem 1.5rem;
        overflow-x: hidden;
    }

    .team {
        padding: 4rem 1.5rem;
        overflow-x: hidden;
    }

    .team-grid,
    .values-grid {
        grid-template-columns: 1fr !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .card {
        width: 100%;
        box-sizing: border-box;
    }

    .about-content {
        padding: 4rem 1.5rem;
    }

    .cyber-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Mobile Contact Switching */
    .terminal-window {
        display: none !important;
    }

    .mobile-contact-container {
        display: block;
    }
}

/* Intermedia para tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-container .card {
        flex: 0 0 calc(50% - 1.25rem);
        /* Muestra 2 slides */
    }
}

/* ===== NOSOTROS PAGE ===== */
.about-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.about-hero-content {
    max-width: 800px;
    z-index: 1;
}

.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--text-pure-light);
}

.about-hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #A0AEC0;
}

.about-content {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: #A1A1AA;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--text-pure-light);
    font-weight: 700;
}

.cyber-container {
    perspective: 1000px;
}

.cyber-box {
    background: #0D0D0D;
    border: 1px solid rgba(255, 0, 60, 0.3);
    padding: 3rem;
    border-radius: 4px;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.1), inset 0 0 10px rgba(255, 0, 60, 0.05);
    transform: rotateY(-5deg);
    transition: transform 0.5s ease;
}

.cyber-box:hover {
    transform: rotateY(0deg) scale(1.02);
}

.cyber-label {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--bg-cyber-carbon);
    padding: 0 10px;
    color: var(--accent-neon-red);
    font-family: monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.cyber-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-pure-light);
}

.cyber-box p {
    color: #A1A1AA;
    margin-bottom: 2rem;
}

.cyber-stats {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.stat {
    color: #4A5568;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat .highlight {
    color: var(--text-pure-light);
    font-size: 1.5rem;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .cyber-box {
        transform: none;
        padding: 2rem;
    }
}

/* Clases semánticas para cuadrículas insertadas desde html inline */
.team {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.values-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
}