/* =========================================
   RESETS E CONFIGURAÇÕES GERAIS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

@font-face {
    font-family: 'AventaBlack';
    src: url('../fonts/Aventa-Black.ttf') format('truetype');
    font-weight: normal; font-style: normal;
}

body {
    background-color: #000;
    overflow-anchor: none; /* Desliga pulo automático */
}

html {
    scroll-behavior: smooth;
}


/* =========================================
   COMPENSAÇÃO DA NAVBAR NOS LINKS (DESKTOP)
   ========================================= */
#overview {
    scroll-margin-top: 0px; /* Overview já tem um padding natural forte no seu CSS */
}

#clients,
#projects {
    scroll-margin-top: 120px; /* Ponto de parada ideal no PC */
}

#contact {
    scroll-margin-top: 0px; /* Zera a margem para o footer travar perfeitamente no final da tela */
}

/* =========================================
   COMPENSAÇÃO DA NAVBAR NOS LINKS (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    #overview {
        scroll-margin-top: 0px; 
    }

    #clients {
        scroll-margin-top: 60px; 
    }

    #projects {
        scroll-margin-top: 70px; 
    }

    #contact {
        scroll-margin-top: -150px; 
    }
}

/* =========================================
   TRAVA DE SCROLL (Adicionar ao topo do arquivo)
   ========================================= */
html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100% !important;
    position: fixed !important; /* Mágica para iOS Safari travar real */
    width: 100% !important;
}

/* =========================================
   PRELOADER DE VÍDEO BLINDADO
   ========================================= */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* Garante que ocupe a tela toda no mobile */
    background-color: #000000; /* Fundo preto sólido */
    
    /* z-index exagerado para ficar na frente da Navbar e de tudo */
    z-index: 100000 !important; 
    
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    pointer-events: all; /* Impede cliques no que está atrás */
    
    /* Transição suave de dissolve (1s) */
    transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1), 
                visibility 1s cubic-bezier(0.65, 0, 0.35, 1);
}

/* Classe que o JavaScript vai adicionar para dissolver a tela de loading */
#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Permite cliques no site após sumir */
}

.video-preloader-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loading-screen video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz o vídeo preencher a tela toda sem achatar */
    top: 0;
    left: 0;
}

/* --- LÓGICA DE VISIBILIDADE DOS VÍDEOS --- */

/* Base: Mostra o Desktop, Esconde o Mobile */
.vid-desktop {
    display: block !important;
}

.vid-mobile {
    display: none !important;
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 768px) {
    /* No Mobile: Esconde o Desktop, Mostra o Mobile */
    .vid-desktop {
        display: none !important;
    }
    .vid-mobile {
        display: block !important;
    }
}

/* =========================================
   NAVBAR & HAMBURGUER
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px 0px 0px; 
    z-index: 1000; 
    background-color: transparent; 
    transition: background-color 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.686); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* =========================================
   LOGO DESKTOP & EFEITO HOVER
   ========================================= */
.logo a {
    display: flex;
    align-items: center;
    /* Cria o espaço físico para o "quadrado" do fundo igual aos links */
    padding: 8px 12px; 
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo svg {
    height: 35px;
    width: auto;
}

/* Aplica a transição suave direto nas partes do desenho da logo */
.logo svg path {
    transition: fill 0.3s ease;
}

/* --- O EFEITO HOVER NA LOGO --- */
.logo a:hover {
    /* Fundo amarelo bem claro igual ao dos links */
    background-color: rgba(245, 223, 60, 0.15); 
}

/* Muda a cor do SVG para o amarelo forte */
.logo a:hover svg path {
    /* O !important é a mágica aqui: ele obriga o navegador a ignorar a cor branca do HTML */
    fill: #f5df3c !important; 
}

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

.nav-links a {
    text-decoration: none;
    color: #ffffff; 
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    
    /* Cria o espaço físico para o "quadrado" do fundo */
    padding: 10px 18px; 
    border-radius: 4px; /* Cantos sutilmente arredondados. Mude para 0 se quiser 100% quadrado */
    
    /* Transição suave para a cor e o fundo não piscarem secamente */
    transition: all 0.3s ease;
}

/* O Efeito ao passar o mouse */
.nav-links a:hover {
    /* Fundo amarelo bem claro (15% de opacidade do amarelo principal) */
    background-color: rgba(245, 223, 60, 0.15); 
    
    /* Texto no amarelo forte da marca Ouse */
    color: #f5df3c; 
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none; /* Escondido no Desktop */
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* =========================================
   MENU MOBILE FULLSCREEN (ESTILO MAD - PRETO)
   ========================================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #000000; 
    z-index: 2000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-top-bar {
    width: 100%;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-logo svg {
    height: 35px;
    width: auto;
}

.menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-close svg {
    width: 32px;
    height: 32px;
}

.menu-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 5% 40px 5%;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15vh;
    margin-bottom: auto;
}

.mobile-nav-links a {
    color: #ffffff;
    font-size: 3.5rem;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    text-decoration: none;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    color: #666666;
}

.mobile-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.social-label {
    color: #ffffff;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
}

.social-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-links-list a {
    color: #ffffff;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
}

body.no-scroll {
    overflow: hidden;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100dvh; 
    overflow: hidden;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); 
    pointer-events: none;
}

.video-mobile {
    display: none;
}

.hero-scroll-btn {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%); 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px; 
    height: 50px;
    background-color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    z-index: 5;
    transition: background-color 0.3s ease;
}

.hero-scroll-btn:hover {
    background-color: #f0f0f0; 
}

.scroll-arrow {
    width: 28px; 
    height: 28px;
    animation: arrow-bounce 1.5s ease-in-out infinite;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* =========================================
   OVERVIEW SECTION (QUEM SOMOS)
   ========================================= */
.overview-section {
    background-color: #000000;
    padding: 100px 5%; 
    position: relative;
    z-index: 20; 
    margin-top: 0;
}

.overview-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.overview-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.section-tag {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.orange-arrow {
    color: #f5df3c; /* Corrigido para o amarelo padrão da Ouse */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Garante que o SVG obedeça a cor e o tamanho */
.orange-arrow svg {
    width: 18px;
    height: 18px;
}

.overview-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 500;
    max-width: 90%;
    color: white;
}

.overview-right {
    padding-top: 70px; 
}

.overview-right p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 25px;
}

.overview-right p:last-child { margin-bottom: 0; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-top: 1px solid #333;
    padding-top: 60px;
    position: relative;
}

.stats-grid::after {
    content: '';
    position: absolute;
    top: -1px; 
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 204, 0, 0.0) 0%, #ffcc00 45%, #ffcc00 55%, rgba(255, 204, 0, 0.0) 100%);
    background-size: 200% 100%; 
    animation: gold-line-pulse 3s linear infinite;
    z-index: 1;
}

@keyframes gold-line-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
}

/* =========================================
   CLIENTS SECTION (CARROSSEL)
   ========================================= */
.clients {
    margin-top: 100px; 
    padding-bottom: 140px; 
    position: relative;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    margin-bottom: 30px;
    width: 100%;
    box-sizing: border-box;
}

/* =========================================
   CONTROLES DO CARROSSEL (SETAS DESKTOP)
   ========================================= */
.header-right-controls {
    display: flex;
    align-items: center;
    gap: 20px; /* Espaço entre setas e contador */
}

.carousel-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3); /* Borda cinza sutil */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

/* Efeito Hover: Fica amarelo e a seta dá um "pulinho" pra frente/trás */
.carousel-btn:hover {
    border-color: #f5df3c;
    color: #f5df3c;
}

.prev-btn:hover svg {
    transform: translateX(-3px);
}

.next-btn:hover svg {
    transform: translateX(3px);
}

/* Esconde as setas no Mobile (onde a pessoa pode apenas usar o dedo para arrastar) */
@media (max-width: 768px) {
    .carousel-btn {
        display: none;
    }
}

.header-left { text-align: left; }

.section-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1;
    text-align: left;
    margin-top: 40px;
}

.instruction-text {
    color: #999;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.instruction-text .icon {
    font-size: 1rem;
    animation: bounceFinger 2s infinite;
}

.slide-counter {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 2px;
    white-space: nowrap;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0; 
    box-sizing: border-box;
    margin-bottom: 50px;
}

.clients-carousel.squarespace-style {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 0 40px 0; 
    scroll-padding-left: 5%; 
    scrollbar-width: none;
    scroll-behavior: auto !important;
    overscroll-behavior-x: none;
}

.clients-carousel.squarespace-style::before,
.clients-carousel.squarespace-style::after {
    content: '';
    flex: 0 0 5%; 
    display: block;
}

.clients-carousel.squarespace-style .client-card:first-child { margin-left: 0 !important; }

.clients-carousel.squarespace-style .client-card {
    min-width: 350px;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    flex: 0 0 auto;
    scroll-snap-align: start; 
}

.clients-carousel.squarespace-style .img-box {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background-color: #1a1a1a;
}

.clients-carousel.squarespace-style .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 75%;
}

.clients-carousel.squarespace-style .client-card:hover .card-img { transform: scale(1.08); }

.clients-carousel.squarespace-style .card-content {
    position: relative;
    margin-top: 20px;
    padding: 0;
    text-align: left;
    bottom: auto;
    left: auto;
}

.clients-carousel.squarespace-style .card-subtitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 150px;
}

.clients-carousel.squarespace-style .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.1;
    color: #ffffff;
}

/* =========================================
   PROJECTS SECTION (SCROLLYTELLING PURO)
   ========================================= */
.projects-scrolly {
    position: relative;
    width: 100%;
    background-color: #000000;
}

.sticky-bg {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; 
    overflow: hidden;
}

.giant-text {
    font-size: 12vw;
    line-height: 0.9;
    text-align: center;
    font-weight: 900;
    color: #ffffff;
    font-family: 'AventaBlack', sans-serif;
    text-transform: uppercase;
    margin: 0;
}

.giant-text .highlight {
    color: #ffffff;
    display: block;
}

.cards-track {
    position: relative;
    z-index: 2; 
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20vh; 
    padding-bottom: 5vh;
    display: flex;
    flex-direction: column;
    gap: 250px; 
}

.scrolly-card {
    width: 400px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
    transition: transform 0.3s ease-out;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6); 
    backdrop-filter: blur(8px); 
}

.scrolly-card:hover { transform: scale(1.03) translateY(-10px); }

.card-number {
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.3;
    margin-bottom: 20px;
}

.scrolly-card h3 {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'AventaBlack', sans-serif;
}

.scrolly-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.card-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 20px;
    border-top: 2px solid currentColor;
    display: inline-block;
    margin-top: auto;
}

.card-white {
    background-color: rgba(255 255 255 / 77%); 
    color: #000000;
    border: 1px solid #000000;
}
.card-white .card-number { color: #000000; }

.card-dark {
    background-color: rgba(17, 17, 17, 0.95);
    color: #ffffff;
    border: 1px solid #333333;
}
.card-dark .card-number { color: #ffffff; }

.pos-left { align-self: flex-start; margin-left: 5%; }
.pos-right { align-self: flex-end; margin-right: 5%; }

/* =========================================
   FOOTER ESTILO EDITORIAL
   ========================================= */
.statement-footer {
    background: linear-gradient(180deg, #000000 0%, #000000 30%, #262626 100%);
    padding: 100px 5% 40px 5%;
    color: #ffffff; 
    font-family: 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    z-index: 10;
}

.footer-logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.footer-logo-container svg {
    width: 100%; 
    max-width: 1400px; 
    height: auto;
    display: block;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.4); 
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col p, .footer-link {
    font-size: 1.1rem;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.4;
    margin: 0;
    transition: opacity 0.3s ease;
}
.footer-link:hover { opacity: 0.6; }
.map-link { margin-top: 15px; }
.footer-bottom {
    max-width: 1400px;
    margin: 100px auto 0 auto;
    font-size: 0.85rem;
    opacity: 0.6;
    text-align: left;
}

/* =========================================
   LINK DO MAPA (FOOTER)
   ========================================= */
.map-link {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px; /* Espaço entre o texto e a seta */
}

/* Garante que o SVG fique alinhado e prepara a animação */
.map-link svg {
    transition: transform 0.3s ease;
}

/* O pequeno charme: a seta aponta para o destino ao passar o mouse */
.map-link:hover svg {
    transform: translate(3px, -3px);
}

/* =========================================
   BOTÃO WHATSAPP FLUTUANTE
   ========================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #ffffff; /* Verde Oficial do WhatsApp */
    color: #000000; /* Cor do ícone */
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4); /* Sombra elegante */
    
    /* O z-index garante que fique acima das seções, mas abaixo do menu mobile (2000) e do loading (100000) */
    z-index: 999; 
    
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px); /* Dá um pulinho pra cima */
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4); /* Sombra verde difusa */
}

/* Reduz um pouco o tamanho no celular para não atrapalhar a leitura */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}


/* =========================================
   MEDIA QUERIES GERAIS (MOBILE)
   ========================================= */
@media (max-width: 900px) {
    .overview-top { grid-template-columns: 1fr; gap: 40px; }
    .overview-title { font-size: 2.2rem; max-width: 95%; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
    .stat-number { font-size: 3rem; }
}

@media (max-width: 768px) {
    /* Navbar e Menu */
    .navbar { padding: 0px 4% 0% 0px;}
    .nav-links { display: none; }
    .menu-toggle { display: flex; }

    /* Hero */
    .video-desktop { display: none; }
    .video-mobile { display: block; }
    .scroll-arrow { width: 22px; height: 22px; }
    .hero-scroll-btn { width: 43px; height: 33px; }

    /* Clientes Header e Carrossel */
    .header-flex { align-items: flex-start !important; }
    .section-title { font-size: 2.8rem; line-height: 1; margin-top: 0; margin-bottom: 10px; }
    .instruction-text { margin-top: 0; line-height: 1; }
    .slide-counter { margin-top: 12px; margin-bottom: 0; font-size: 1.1rem; white-space: nowrap; line-height: 1; }

    /* Encontre este bloco no seu CSS mobile: */
    .clients-carousel.squarespace-style {
        display: flex; gap: 20px; padding: 0 0 40px 0; overflow-x: auto; 
        scroll-snap-type: x mandatory; scroll-padding-left: 8%; 
        touch-action: pan-x !important; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
    }
    .clients-carousel.squarespace-style .client-card { min-width: 80vw !important; margin-right: 20px !important; }
    .clients-carousel.squarespace-style .img-box {
        width: 100% !important; height: 400px !important; padding-bottom: 0 !important; 
        aspect-ratio: auto !important; position: relative !important; background-color: #1a1a1a;
    }
    .clients-carousel.squarespace-style .card-img {
        position: absolute !important; top: 0; left: 0; width: 100% !important; height: 100% !important; object-fit: cover !important;
    }

    /* Scrollytelling Projetos */
    .giant-text { font-size: 16vw; }
    .cards-track { gap: 120px; padding-top: 10vh; }
    .scrolly-card { width: 75%; min-height: auto; padding: 1.8rem; }
    .pos-left { align-self: flex-start; margin-left: 5%; margin-right: auto; }
    .pos-right { align-self: flex-end; margin-right: 5%; margin-left: auto; }
    .scrolly-card h3 { font-size: 1.8rem; }

    /* Footer */
    .statement-footer { padding: 60px 5% 40px 5%; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-logo-container { margin-bottom: 40px; }
    .footer-bottom { margin-top: 60px; }
}