/* ============================================
   VELOCITÁ - DESIGN SYSTEM & STYLES
   ============================================ */

/* --- VARIÁVEIS --- */
:root {
    --bg-body: #050505;
    --bg-card: #121212;
    --bg-hover: #1E1E1E;
    --accent: #FF3D00;
    --accent-dark: #CC3100;
    --accent-glow: rgba(255, 61, 0, 0.15);
    --text-white: #FFFFFF;
    --text-gray: #A1A1AA;
    --border: rgba(255, 255, 255, 0.08);
    --font-display: 'Oxanium', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1280px;
    --header-height: 80px;
}

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    background-color: var(--bg-body);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, .btn, .nav-link {
    font-family: var(--font-display);
    text-transform: uppercase;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }

/* --- UTILITIES --- */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.show-mobile { display: none; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    font-family: var(--font-display);
    text-transform: uppercase;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary { background-color: var(--accent); color: white; }
.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 61, 0, 0.2);
}

.btn-outline { background: transparent; border: 1px solid var(--border); color: white; }
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 61, 0, 0.05);
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-fallback {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: white;
    font-style: italic;
    font-family: var(--font-display);
}

.logo-fallback .dot { color: var(--accent); font-style: normal; }

.nav-menu { display: flex; gap: 24px; }

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: 0.3s;
}

.nav-link:hover { color: white; }
.nav-link:hover::after { width: 100%; }

.nav-actions { display: flex; gap: 20px; align-items: center; }
.mobile-toggle { display: none; font-size: 2rem; cursor: pointer; color: white; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,0.85) 50%, rgba(5,5,5,0.2) 100%),
                url('https://images.unsplash.com/photo-1486006920555-c77dcf18193c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: var(--header-height);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 24px;
    font-family: var(--font-display);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

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

.hero-sidebar {
    position: absolute;
    right: 40px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: right;
}

.sidebar-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
    font-family: var(--font-display);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.sidebar-item strong {
    display: block;
    font-size: 1.25rem;
    color: white;
    font-family: var(--font-display);
    border-right: 3px solid var(--accent);
    padding-right: 12px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 700;
    font-family: var(--font-display);
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SECTION HEADER (reusable)
   ============================================ */
.section-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-title h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 10px;
}

.section-title span {
    color: var(--accent);
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font-display);
}

.section-desc { max-width: 500px; color: var(--text-gray); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works { background: var(--bg-card); }

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-body);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 700;
    transition: 0.3s;
}

.process-step:hover .step-number {
    background: var(--accent);
    color: white;
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: white;
}

.process-step p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section { background-color: var(--bg-body); }

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

.service-card {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid var(--border);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--accent-glow) 100%);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 24px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.service-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.service-card p { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }

.service-link {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    gap: 8px;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.service-link i { transition: 0.3s; color: var(--accent); }
.service-card:hover .service-link i { transform: translateX(5px); }

/* ============================================
   ABOUT / FOUNDER
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img { position: relative; }

.about-img img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(100%);
    transition: 0.5s;
}

.about-img:hover img { filter: grayscale(0%); }

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent);
    padding: 30px;
    color: white;
    text-align: center;
    clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
}

.experience-badge h3 { font-size: 2.5rem; line-height: 1; margin-bottom: 5px; }
.experience-badge span { font-size: 0.8rem; font-weight: 600; font-family: var(--font-display); text-transform: uppercase; }

.about-text p {
    color: var(--text-gray);
    margin: 20px 0 30px;
    line-height: 1.7;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.feature-list i {
    color: var(--accent);
    font-size: 1.2rem;
    background: rgba(255, 61, 0, 0.1);
    padding: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   BRANDS
   ============================================ */
.brands-section { background: var(--bg-card); }

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin-top: 50px;
}

.brand-item {
    opacity: 0.4;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    color: var(--text-gray);
}

.brand-item:hover { opacity: 1; color: white; }

.brand-item svg {
    width: 48px;
    height: 48px;
    fill: var(--text-gray);
    transition: 0.3s;
}

.brand-item:hover svg { fill: white; }

/* Logos via arquivo de imagem SVG */
.brand-item img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
}

.brand-item span {
    font-size: 0.75rem;
    color: inherit;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.brand-item:hover span { color: white; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: #080808; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.testimonial-card:hover {
    border-color: var(--accent);
}

.stars { color: #FFD700; margin-bottom: 15px; font-size: 1.1rem; }

.testimonial-card blockquote {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-family: var(--font-display);
    flex-shrink: 0;
}

.author-info strong { display: block; color: white; font-size: 0.95rem; }
.author-info span { font-size: 0.8rem; color: #777; }

/* ============================================
   CONTACT FORM
   ============================================ */
.form-section { background: var(--bg-body); }

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.form-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-gray);
}

.form-benefits i {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 6px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label .required { color: var(--accent); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-body);
    border: 1px solid var(--border);
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 61, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); color: white; }

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

.form-submit { margin-top: 8px; width: 100%; }

/* Badge do reCAPTCHA: oculto por padrão, slide-in da direita ao entrar nos formulários */
/* Badge reCAPTCHA: sempre oculto — substituído por texto inline nos formulários */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Texto inline (desktop e mobile) */
.recaptcha-notice {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.5;
}

.recaptcha-notice a { color: var(--text-gray); text-decoration: underline; }

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: #00c853;
}

.form-message.error {
    display: block;
    background: rgba(255, 61, 0, 0.1);
    border: 1px solid rgba(255, 61, 0, 0.3);
    color: var(--accent);
}

/* ============================================
   LOCATION
   ============================================ */
.location-section { background: var(--bg-card); }

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    border: 1px solid var(--border);
}

.contact-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i { font-size: 1.5rem; color: var(--accent); margin-top: 5px; flex-shrink: 0; }
.contact-item h5 { font-size: 1.1rem; margin-bottom: 5px; color: white; font-family: var(--font-display); text-transform: uppercase; }
.contact-item p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.5; }

.map-frame {
    position: relative;
    background: #222;
    width: 100%;
    height: 100%;
    min-height: 500px;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.map-frame iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #020202;
    border-top: 1px solid var(--border);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p { color: var(--text-gray); margin-top: 20px; font-size: 0.9rem; max-width: 300px; line-height: 1.6; }

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    font-size: 1.5rem;
    color: var(--text-gray);
    transition: 0.3s;
}

.footer-social a:hover { color: var(--accent); }

.footer-col h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 24px;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: var(--text-gray); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: #555;
    font-size: 0.85rem;
}

.footer-bottom a { color: inherit; font-weight: 600; }
.footer-bottom a:hover { color: var(--accent); }

.footer-credentials {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.credentials-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-gray);
    text-transform: uppercase;
    flex-shrink: 0;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.credential-badge:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.03);
}

.credential-logo-wrap {
    background: #fff;
    border-radius: 5px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
}

.credential-logo-wrap img { height: 22px; width: auto; display: block; }

.credential-text { display: flex; flex-direction: column; gap: 1px; }

.credential-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    text-transform: uppercase;
}

.credential-sub { font-size: 0.6rem; color: var(--text-gray); }

/* ============================================
   MODAL TRABALHE CONOSCO
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-gray);
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: 0.2s;
}

.modal-close:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.modal-header {
    margin-bottom: 28px;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin: 8px 0;
}

.modal-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--accent);
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-label a { color: var(--accent); text-decoration: underline; }

@media (max-width: 768px) {
    .modal-container { padding: 24px 20px; }
    .modal-header h2 { font-size: 1.4rem; }
}

/* ============================================
   MODAL WHATSAPP
   ============================================ */
.modal-container--sm {
    max-width: 460px;
}

.btn-whatsapp {
    width: 100%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    margin-top: 8px;
    border: none;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i { font-size: 1.3rem; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-sidebar { display: none; }
    .hero { background-attachment: scroll; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .location-wrapper { grid-template-columns: 1fr; }
    .map-frame { min-height: 300px; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .form-wrapper { grid-template-columns: 1fr; }
    /* Nav: esconder botão AGENDAR e item Trabalhe Conosco para evitar overflow */
    .nav-actions .btn { display: none; }
    #btnNavTrabalhe { display: none; }
    .nav-menu { gap: 16px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 20px;
        overflow-y: auto;
    }

    .nav-menu.active { left: 0; }
    .mobile-toggle { display: block; }
    .show-mobile { display: block; }
    .hide-mobile { display: none !important; }

    .section-padding { padding: 60px 0; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 20px; }

    .hero { min-height: 100vh; }
    .hero h1 { font-size: 2.2rem; }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 40px;
        right: auto;
        width: 2px;
        height: 100%;
    }

    .process-step {
        text-align: left;
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 20px;
        align-items: center;
    }

    .process-step .step-number { margin: 0; }
    .step-text { text-align: left; }

    .about-grid { grid-template-columns: 1fr; }
    .experience-badge { right: 0; }

    .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .brand-item { padding: 10px; }

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

    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 480px) {
    .logo img { height: 44px; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .brand-item span { font-size: 0.65rem; }
    .contact-info { padding: 30px; }
}
