/* ===== VARIÁVEIS GLOBAIS ===== */
:root{
    --bg-dark: #06021a;
    --blue-900: #010033;
    --blue-700: #0b2bff;
    --accent: #070a3f;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gray-900: #000000;
    --card-bg: #ffffff;
    --shadow: 0 8px 30px rgba(0,0,0,0.12);
    --dropdown-bg: #ffffff;
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --ff: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    --h1: 48px;
    --h2: 36px;
    --h3: 20px;
    --regular: 16px;
    --topstrip-height: 44px;
    --header-height: 80px;
    --z-index-top: 1002;
    --z-index-header: 1001;
    --z-index-nav: 1000;
}

/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,body{
    height:100%;
    width: 100%;
}

body{
    font-family: var(--ff);
    background: #ffffff;
    color: var(--gray-900);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height:1.5;
    overflow-x: hidden;
}

/* ===== CLASSES DE ESTADO PARA JAVASCRIPT ===== */
body.menu-open {
    overflow: hidden;
}

/* ===== CONTAINER PRINCIPAL ===== */
.container{
    width: min(1200px, 92%);
    margin: 0 auto;
}

/* ===== FAIXA SUPERIOR FIXA ===== */
.topstrip{
    background: linear-gradient(90deg, var(--accent), #0b2bff);
    color: var(--white);
    text-align:center;
    padding: 12px;
    font-size:14px;
    font-weight: 500;
    z-index: var(--z-index-top);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topstrip-height);
}

/* ===== CABEÇALHO PRINCIPAL ===== */
.header{
    padding: 0;
    position: fixed;
    top: var(--topstrip-height);
    left: 0;
    right: 0;
    z-index: var(--z-index-header);
    background: var(--white);
    transition: all 0.4s ease;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    height: var(--header-height);
}

/* ===== CONTEÚDO INTERNO DO CABEÇALHO ===== */
.header__inner{
    display:flex;
    align-items:center;
    justify-content: space-between;
    position:relative;
    height: 100%;
}

/* ===== LADO ESQUERDO DO CABEÇALHO ===== */
.header__left{
    display:flex;
    align-items:center;
}

/* ===== LOGO DO CABEÇALHO ===== */
.header__logo{
    height: 70px;
    transition: all 0.3s ease;
}

/* ===== NAVEGAÇÃO ===== */
.nav {
    height: 100%;
    display: flex;
    align-items: center;
}

/* ===== LISTA DE NAVEGAÇÃO ===== */
.nav__list{
    display:flex;
    gap: 8px;
    list-style:none;
    padding:0;
    margin:0;
    align-items:center;
    height: 100%;
}

/* ===== ITEM DA NAVEGAÇÃO ===== */
.nav__item{
    position:relative;
    display:block;
    height: 100%;
}

/* ===== LINK DA NAVEGAÇÃO ===== */
.nav__link{
    color: var(--accent);
    text-decoration:none;
    font-weight:500;
    font-size:15px;
    padding: 0 20px;
    display:flex;
    align-items:center;
    gap: 8px;
    height: 100%;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

/* ===== LINK DA NAVEGAÇÃO NO HOVER/FOCUS ===== */
.nav__link:hover,
.nav__link:focus{
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ===== SETA DO DROPDOWN ===== */
.nav__arrow{
    transition: transform 0.2s ease;
}

/* ===== ROTAÇÃO DA SETA NO HOVER ===== */
.has-mega:hover .nav__arrow,
.has-dropdown:hover .nav__arrow{
    transform: rotate(180deg);
}

/* ===== CALL TO ACTION DO CABEÇALHO ===== */
.header__cta{
    margin-left:auto;
    display:flex;
    align-items:center;
    gap:16px;
}

/* ===== BOTÕES ===== */
.btn{
    font-family:var(--ff);
    cursor:pointer;
    border-radius:8px;
    padding:12px 24px;
    border:0;
    display:inline-block;
    text-decoration:none;
    text-align:center;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* ===== BOTÃO PRIMÁRIO ===== */
.btn--primary{
    background-color: #061577;
    color: var(--white);
}

/* ===== BOTÃO PRIMÁRIO NO HOVER ===== */
.btn--primary:hover{
    background: #0b2bff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 43, 255, 0.3);
}

/* ===== ÍCONE HAMBÚRGUER ===== */
.hamburger {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    position: relative;
    z-index: var(--z-index-top);
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
}

/* ===== LINHAS DO HAMBÚRGUER ===== */
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
}

/* ===== ANIMAÇÃO DO HAMBÚRGUER QUANDO ATIVO ===== */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MEGA MENU ===== */
.mega-menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 1000px;
    max-height: 500px;
    background: var(--dropdown-bg);
    box-shadow: var(--shadow);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    transform: translateY(-10px);
    border: 1px solid var(--gray-200);
    border-top: none;
    padding: 0;
    display: flex;
    overflow-y: auto;
}

/* ===== MEGA MENU NO HOVER ===== */
.nav__item.has-mega:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform: translateY(0);
}

/* ===== CONTEÚDO DO MEGA MENU ===== */
.mega-menu__content{
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ===== GRADE DO MEGA MENU ===== */
.mega-menu__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex: 1;
}

/* ===== COLUNA DO MEGA MENU ===== */
.mega-menu__col{
    display: flex;
    flex-direction: column;
}

/* ===== SEÇÃO DO MEGA MENU ===== */
.mega-menu__section{
    flex: 1;
}

/* ===== TÍTULO DA SEÇÃO DO MEGA MENU ===== */
.mega-menu__section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-200);
}

/* ===== LISTA DO MEGA MENU ===== */
.mega-menu__list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== LINK DO MEGA MENU ===== */
.mega-menu__link{
    color: var(--gray-800);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 0;
    display: block;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    padding-left: 12px;
}

/* ===== LINK DO MEGA MENU NO HOVER ===== */
.mega-menu__link:hover{
    color: var(--accent);
    border-left-color: var(--accent);
    padding-left: 16px;
}

/* ===== SUBLISTA DO MEGA MENU ===== */
.mega-menu__sublist{
    list-style: none;
    padding: 0;
    margin: 8px 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ===== LINK FILHO DO MEGA MENU ===== */
.mega-menu__link--child{
    font-weight: 400;
    color: var(--gray-600);
    font-size: 13px;
    padding-left: 20px;
}

/* ===== LINK FILHO DO MEGA MENU NO HOVER ===== */
.mega-menu__link--child:hover{
    color: var(--accent);
    padding-left: 24px;
}

/* ===== DROPDOWN SIMPLES ===== */
.dropdown{
    position:absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 220px;
    background: var(--dropdown-bg);
    box-shadow: var(--shadow);
    border-radius: 0 0 12px 12px;
    opacity:0;
    visibility:hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index:999;
    border: 1px solid var(--gray-200);
    border-top: none;
}

/* ===== DROPDOWN NO HOVER ===== */
.nav__item.has-dropdown:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform: translateX(-50%) translateY(0);
}

/* ===== LISTA DO DROPDOWN ===== */
.dropdown__list{
    list-style:none;
    padding: 16px 0;
    margin:0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ===== LINK DO DROPDOWN ===== */
.dropdown__link{
    color: var(--gray-800);
    text-decoration:none;
    display:block;
    font-size:14px;
    padding: 8px 20px;
    transition: all 0.2s ease;
    font-weight: 500;
}

/* ===== LINK DO DROPDOWN NO HOVER ===== */
.dropdown__link:hover{
    color: var(--accent);
    background: var(--gray-100);
    padding-left: 24px;
}

/* ===== SEÇÃO NOSSO TRABALHO ===== */
.our-work {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #0200B2, var(--blue-900), #000000);
    color: var(--white);
    margin-top: calc(var(--topstrip-height) + var(--header-height));
}

.section-title {
    font-size: 48px;
    margin: 0 0 50px 0;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-align: center;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-content p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.7;
    text-align: justify;
}

/* ===== SEÇÃO NOSSA ESSÊNCIA ===== */
.our-essence {
    padding: 80px 0;
    background-color: var(--white);
}

.essence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.essence-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.essence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.essence-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent);
}

/* ===== PILARES ===== */
.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.pillar {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.pillar h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 600;
}

.pillar p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
    text-align: left;
}

/* ===== VALORES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--gray-100);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background-color: white;
}

.value-card h4 {
    font-size: 16px;
    margin: 0;
    color: var(--accent);
    font-weight: 600;
    line-height: 1.4;
}

/* ===== SEÇÃO DIFERENCIAL ===== */
.differential {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.differential-list {
    list-style: none;
    margin-top: 30px;
}

.differential-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.differential-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ===== SEÇÃO MISSÃO, VISÃO E VALORES ===== */
.mission-vision-values {
    padding: 80px 0;
    background-color: white;
}

/* ===== RODAPÉ ===== */
.footer{
    background-color: #000000;
    color:rgba(255,255,255,0.8);
    padding:60px 0 0;
}

/* ===== CONTEÚDO INTERNO DO RODAPÉ ===== */
.footer__inner{
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

/* ===== MARCA NO RODAPÉ ===== */
.footer__brand {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* LOGO no rodapé */
.footer__logo {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: 30px;
}

/* ===== COLUNAS DO RODAPÉ ===== */
.footer__cols{
    display: flex;
    gap: 60px;
    flex: 1;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* ===== TÍTULO DAS COLUNAS DO RODAPÉ ===== */
.footer__col h4{
    margin:0 0 20px 0;
    font-size:16px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== LISTA DAS COLUNAS DO RODAPÉ ===== */
.footer__col ul{
    list-style:none;
    padding:0;
    margin:0;
}

/* ===== ITENS DA LISTA DO RODAPÉ ===== */
.footer__col li{
    margin-bottom: 12px;
}

/* ===== LINKS DO RODAPÉ ===== */
.footer__col li a{
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

/* ===== LINKS DO RODAPÉ NO HOVER ===== */
.footer__col li a:hover{
    color: var(--white);
    padding-left: 5px;
}

/* ===== CARD PRINCIPAL ===== */
.contact-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    width: 100%;
    margin-top: 20px;
    font-family: "Inter", sans-serif;
}

.contact-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

/* ===== PARTE INFERIOR DO RODAPÉ ===== */
.footer__bottom{
    background: rgba(0,0,0,0.9);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== DIREITOS AUTORAIS ===== */
.footer__copyright{
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ===== FORMULÁRIO ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ===== GRUPO DE CAMPO ===== */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.form-group input {
    padding: 12px 14px;
    border: 1.5px solid #dcdcdc;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

/* ===== CHECKBOX E BOTÃO ===== */
.form-footer {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* ===== BOTÃO ===== */
.btn-submit {
    padding: 12px 20px;
    background: #007bff;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #005fcc;
    transform: translateY(-2px);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    z-index: 2147483647 !important;
    text-decoration: none;
    cursor: pointer;
    transition: transform .16s ease;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    transform: scale(1.06);
    outline: none;
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
    display: block;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1200px) {
    .pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 36px;
    }
    
    .section-content p {
        font-size: 16px;
    }

    .pillar {
        padding: 25px;
    }

    .pillar h4 {
        font-size: 20px;
    }

    .footer__brand img {
        height: 100px;
    }
    
    .footer__cols {
        gap: 40px;
    }
    
    .footer__inner {
        gap: 40px;
    }
}

/* ===== MOBILE (900px ou menos) ===== */
@media (max-width: 900px) {
    /* ===== HAMBÚRGUER MOBILE ===== */
    .hamburger {
        display: flex;
        margin-left: auto;
    }

    /* ===== NAVEGAÇÃO MOBILE ===== */
    .nav__list {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: var(--accent);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        margin: 0;
        transition: left 0.4s ease;
        z-index: var(--z-index-nav);
        overflow-y: auto;
        gap: 0;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    }
    
    /* Menu aberto */
    .nav__list.nav--open {
        left: 0;
    }
    
    /* Estilo dos itens do menu mobile */
    .nav__item {
        width: 100%;
        height: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav__item:last-child {
        border-bottom: none;
    }
    
    .nav__item.open {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nav__link {
        color: var(--white) !important;
        padding: 18px 0;
        height: auto;
        border-bottom: none !important;
        justify-content: space-between;
        width: 100%;
        font-size: 16px;
    }
    
    .nav__link:hover,
    .nav__link:focus {
        color: var(--white) !important;
        background: none;
    }
    
    /* Seta dropdown mobile */
    .nav__arrow {
        transition: transform 0.3s ease;
    }
    
    .nav__item.open .nav__arrow {
        transform: rotate(180deg);
    }
    
    /* Dropdowns no mobile */
    .dropdown,
    .mega-menu {
        position: static !important;
        width: 100% !important;
        max-height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        border-radius: 8px !important;
        margin: 0;
        overflow: hidden;
        transition: all 0.4s ease !important;
        padding: 0 !important;
    }
    
    .dropdown.menu-open,
    .mega-menu.menu-open {
        max-height: 1000px !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin: 10px 0 20px 0;
        padding: 20px !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }
    
    /* Ajusta estilo do mega menu no mobile */
    .mega-menu {
        display: none !important;
    }
    
    .mega-menu.menu-open {
        display: block !important;
    }
    
    .mega-menu__grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .mega-menu__section-title {
        color: var(--white);
        border-bottom-color: rgba(255, 255, 255, 0.2);
        font-size: 16px;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .mega-menu__link {
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        padding: 8px 0;
    }
    
    .mega-menu__link:hover {
        color: var(--white);
        border-left-color: var(--white);
    }
    
    .mega-menu__link--child {
        color: rgba(255, 255, 255, 0.7);
        padding-left: 15px;
    }
    
    .mega-menu__link--child:hover {
        color: var(--white);
        padding-left: 20px;
    }
    
    /* Dropdowns simples no mobile */
    .dropdown {
        display: none !important;
    }
    
    .dropdown.menu-open {
        display: block !important;
    }
    
    .dropdown__list {
        padding: 0;
    }
    
    .dropdown__link {
        color: rgba(255, 255, 255, 0.9);
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .dropdown__link:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
        padding-left: 20px;
    }
    
    /* Esconde CTA no mobile */
    .header__cta {
        display: none !important;
    }
    
    /* Ajusta logo para mobile */
    .header__logo {
        height: 60px;
    }
    
    /* Ajusta contatos para mobile */
    .our-work {
        padding: 140px 0 60px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .pillar p {
        text-align: left !important;
        hyphens: auto;
        word-break: normal;
    }

    .value-card {
        padding: 25px 15px;
        min-height: 100px;
    }
    
    .footer__brand {
        text-align: center;
        width: 100%;
    }
    
    .footer__logo {
        height: 80px;
        margin: 0 auto;
    }
    
    .footer__cols {
        gap: 30px;
        justify-content: center;
        margin-left: 0;
        width: 100%;
    }
    
    .footer__inner {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
}

/* Desktop-safe overrides */
@media (min-width: 901px) {
    .hamburger {
        display: none !important;
    }
    
    .mega-menu {
        display: flex !important;
    }
    
    .dropdown {
        display: block !important;
    }
    
    /* Hide mobile-specific open classes on desktop */
    .dropdown.menu-open,
    .mega-menu.menu-open {
        display: none !important;
    }
    
    .nav__item.open {
        background: none !important;
    }
}

@media (max-width: 768px) {
    .mega-menu {
        width: calc(100vw - 40px);
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-content p {
        font-size: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pillar h4 {
        font-size: 18px;
    }
    
    .value-card h4 {
        font-size: 15px;
    }
    
    .footer__cols {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .footer__col {
        text-align: center;
    }
    
    .footer__logo {
        height: 70px;
    }
}