/* ==========================================
   RESET & VARIÁVEIS DE ESTILO
   ========================================== */
:root {
    --bg-dark: #07121f;
    --bg-darker: #030712;
    --accent-neon: #008FFF;
    --accent-green: #10B981;
    --text-muted: #9CA3AF;
    --text-white: #FFFFFF;
    --font-primary: 'Montserrat', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(7, 18, 31, 0.45);
    --glass-border: rgba(255, 255, 255, 0.06);
}

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

body {
    background-color: var(--bg-darker);
    color: var(--text-white);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ==========================================
   HEADER / NAVIGATION (GLASSMORPHISM)
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    --logo-width: 240px; 
}

.logo-img {
    width: var(--logo-width);
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--accent-neon);
}

.btn-nav {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-neon);
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--accent-neon) !important;
}

.btn-nav:hover {
    background: var(--accent-neon);
    color: var(--bg-darker) !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10000;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Animação do botão Hambúrguer ao abrir */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Base do Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .arrow {
    font-size: 9px;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.dropdown-column a:hover {
    color: #ffffff !important;
}

/* ==========================================
   ESTRUTURA EXCLUSIVA PARA DESKTOP (Telas > 992px)
   ========================================== */
@media (min-width: 993px) {
    .menu-toggle {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        position: static !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        max-height: none !important;
        overflow-y: visible !important;
        width: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-menu a {
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Ponte invisível para o mouse não perder o hover */
    .dropdown::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 20px;
        display: block;
        z-index: 1001;
    }

    .dropdown-menu {
        display: flex !important;
        position: absolute !important;
        top: calc(100% + 10px);
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        opacity: 0;
        visibility: hidden;
        background: #030712;
        border: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        padding: 24px !important;
        flex-direction: row !important;
        gap: 40px !important;
        width: max-content !important;
        transition: all 0.3s ease;
        pointer-events: none;
        border-radius: 8px;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) !important;
        pointer-events: auto;
    }

    .dropdown:hover .arrow {
        transform: rotate(180deg);
    }

    .dropdown-column {
        display: flex;
        flex-direction: column;
    }

    .dropdown-column h4 {
        font-size: 12px;
        margin-bottom: 12px;
        color: var(--accent-neon);
    }

    .dropdown-column a {
        padding: 6px 0 !important;
        font-size: 14px !important;
        color: #a4b1cd !important;
    }
}

/* ==========================================
   HERO SECTION & BACKGROUND ANIMADO
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    overflow: hidden;
    padding-top: 100px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3,7,18,0.95) 0%, rgba(7,18,31,0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 48px;
    width: 100%;
}

.badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--accent-neon);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-text-side h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(to right, #FFFFFF, #9CA3AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text-side h2 {
    font-size: 32px;
}

.hero-text-side p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* ==========================================
   BOTÕES
   ========================================== */
.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    cursor: pointer;
}

.btn-primary {
    background: transparent;
    color: var(--accent-neon);
    border: 2px solid var(--accent-neon);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.1);
}

.btn-primary:hover {
    background: var(--accent-neon);
    color: var(--bg-darker);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.icon-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.icon-btn-container svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--glass-border);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-neon);
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   CARDS DE SERVIÇOS
   ========================================== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.services-grid a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.services-grid a:hover .service-card {
    transform: translateY(-5px);
    border-color: rgba(0, 143, 255, 0.3);
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 32px 24px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    text-align: center;
}

.service-card:hover .icon-wrapper {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.4);
}

.service-card:hover .icon-wrapper svg {
    stroke: var(--accent-neon);
    transform: scale(1.1);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: var(--transition-smooth);
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--text-muted);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition-smooth);
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.card-learn-more {
    display: inline-block;
    margin-top: 22px;
    color: #008FFF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 4px;
}

/* ==========================================
   POR QUE ESCOLHER A MASSONCORP
   ========================================== */
.why-us-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.why-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
}

.why-text p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-list .check {
    color: #00d2ff;
    font-size: 1.2rem;
    line-height: 1.2;
    flex-shrink: 0;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-content strong {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 700;
}

.why-content p {
    margin: 0;
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.5;
}

.why-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    background: linear-gradient(135deg, rgba(0,212,255,0.1) 0%, rgba(7,18,31,0.5) 100%);
    border-radius: 16px;
    height: 400px;
    border: 1px solid var(--glass-border);
}

.dashboard-mockup {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(135deg, #070f1e 0%, #03070f 100%);
    border: 1px solid rgba(0, 210, 255, 0.15);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
    border-color: rgba(0, 210, 255, 0.3);
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 4px;
}
.dash-dots .red { background-color: #ff5f56; }
.dash-dots .yellow { background-color: #ffbd2e; }
.dash-dots .green { background-color: #27c93f; }

.dash-title { font-size: 11px; color: rgba(255, 255, 255, 0.4); }
.dash-status { font-size: 10px; color: #27c93f; font-weight: 700; display: flex; align-items: center; gap: 6px; }

.status-indicator-glow {
    width: 6px;
    height: 6px;
    background-color: #27c93f;
    border-radius: 50%;
    box-shadow: 0 0 8px #27c93f;
    animation: pulseGlow 1.8s infinite ease-in-out;
}

.dash-body {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dash-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 12px;
}

.card-full { grid-column: span 2; }
.card-label { font-size: 9px; color: rgba(255, 255, 255, 0.4); font-weight: 700; letter-spacing: 1px; }
.card-value { font-size: 18px; font-weight: 700; color: #ffffff; margin-top: 4px;}

.uptime-bar { width: 100%; height: 4px; background: rgba(255, 255, 255, 0.08); border-radius: 2px; margin-top: 10px; }
.bar-fill { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, #00b4db, #00d2ff); }

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

/* ==========================================
   SEÇÃO SEGURANÇA
   ========================================== */
.security-section {
    padding: 100px 0;
    background: #030712;
}

.security-container {
    background: linear-gradient(135deg, #07121f 0%, #030712 100%);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    padding: 64px;
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 48px;
    align-items: center;
}

.glowing-lock {
    font-size: 100px;
    text-align: center;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4));
    animation: lock-pulse 3s infinite ease-in-out;
}

@keyframes lock-pulse {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 45px rgba(0, 212, 255, 0.7)); }
}

.security-text h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
.security-text p { color: var(--text-muted); margin-bottom: 32px; }

/* ==========================================
   CARROSSEL DE CLIENTES (INFINITO)
   ========================================== */
.clients-carousel-section {
    padding: 40px 0;
    background-color: #050a12;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    position: relative;
}

.clients-carousel-title {
    text-align: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #64748b;
    margin-bottom: 25px;
    font-weight: 600;
}

.clients-slider { overflow: hidden; width: 100%; display: flex; }
.clients-track { display: flex; width: max-content; animation: scroll-infinite 25s linear infinite; }
.clients-track:hover { animation-play-state: paused; }

.client-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 50px;
    margin: 0 35px;
    flex-shrink: 0;
}

.client-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.55;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo-wrapper img:hover { opacity: 1; filter: grayscale(0%); }

@keyframes scroll-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   DEPOIMENTOS & FAQ & CONTATO
   ========================================== */
.testimonials-section { padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.testimonial-card { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 40px 32px; border-radius: 12px; }
.stars { color: #FBBF24; margin-bottom: 16px; }
.author { display: block; margin-top: 24px; color: var(--accent-neon); font-size: 14px; font-weight: 600; }

.faq-section { padding: 100px 0; background-color: var(--bg-dark); }
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--glass-border); padding: 24px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-question h3 { font-size: 18px; font-weight: 600; }
.faq-icon { font-size: 24px; color: var(--accent-neon); transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding-top: 16px; color: var(--text-muted); }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info { display: flex; flex-direction: column; justify-content: center; height: 100%; }
.contact-subtitle { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; }
.contact-methods { display: flex; flex-direction: column; gap: 25px; }
.contact-method-item { display: flex; align-items: center; gap: 20px; }
.contact-icon-wrapper { width: 50px; height: 50px; border-radius: 10px; background: rgba(0, 212, 255, 0.03); border: 1px solid rgba(0, 212, 255, 0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon-wrapper svg { width: 24px; height: 24px; fill: none; stroke: var(--accent-neon); stroke-width: 1.5; }
.contact-method-text span { display: block; font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-method-text p, .contact-method-text a { font-size: 17px; font-weight: 600; color: var(--text-white); text-decoration: none; }
.contact-method-text a:hover { color: var(--accent-neon); }

.lead-form { background: var(--glass-bg); border: 1px solid var(--glass-border); padding: 40px; border-radius: 16px; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea { width: 100%; padding: 16px; background: rgba(3, 7, 18, 0.6); border: 1px solid var(--glass-border); border-radius: 8px; color: var(--text-white); font-family: var(--font-primary); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent-neon); outline: none; }
.btn-submit { width: 100%; background: var(--accent-green); color: white; border: none; cursor: pointer; text-align: center; justify-content: center; }
.btn-submit:hover { background-color: #059669; }

/* ==========================================
   RODAPÉ & WHATSAPP
   ========================================== */
.main-footer { padding: 80px 0 20px; background: var(--bg-darker); border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(2, 1fr); gap: 48px; margin-bottom: 48px; }
.footer-col h4 { margin-bottom: 24px; font-size: 16px; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 12px; }
.footer-col a:hover { color: var(--accent-neon); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--glass-border); text-align: center; font-size: 14px; color: var(--text-muted); }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); z-index: 1000; transition: var(--transition-smooth); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6); }
.whatsapp-float-container { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; }
.whatsapp-float-container svg { width: 100%; height: 100%; fill: currentColor; }

/* ==========================================
   ESTRUTURA EXCLUSIVA PARA MOBILE (Telas <= 992px)
   ========================================== */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex !important;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #030712;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 15px 30px rgba(0,0,0,0.6);
        padding: 20px 24px;
        z-index: 9999;
        align-items: flex-start;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu a {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .nav-menu .btn-nav {
        margin-top: 15px;
        text-align: center;
        border-bottom: 1px solid var(--accent-neon);
    }

    /* Acordeon no Mobile */
    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-menu {
        display: none !important;
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.02);
        padding: 16px;
        margin: 8px 0;
        border-radius: 6px;
        border: none;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        box-shadow: none;
        white-space: normal;
    }

    .dropdown.open .dropdown-menu {
        display: flex !important;
    }

    .dropdown.open .arrow {
        transform: rotate(180deg);
    }

    .dropdown-column {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .dropdown-column h4 {
        font-size: 11px;
        margin-bottom: 8px;
        color: var(--accent-neon);
    }

    .dropdown-column a {
        padding: 6px 0 !important;
        font-size: 14px !important;
        border: none !important;
        color: #a4b1cd !important;
    }

    /* Ajustes Gerais das Seções no Mobile */
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .hero-text-side h1 { font-size: 32px !important; }
    .hero-text-side h2 { font-size: 24px !important; }
    .hero-buttons { justify-content: center; }
    .why-grid, .security-container, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .dashboard-mockup { transform: none !important; margin: 0 auto; }
    .security-container { padding: 32px; }
    .client-logo-wrapper { width: 100px; height: 38px; margin: 0 18px; }

    main, 
    .hero-section,
    body > section:first-of-type {
        padding-top: 110px !important;
    }
}