/* --- FALCON BRAND EDITION — Racing Pro One + Poppins --- */

/* Russo One (Google Fonts, OFL) — geométrica, industrial, próxima à Racing Pro One */

:root {
    /* Brand colors */
    --red: #E60000;
    --red-alt: #D20000;
    --red-glow: rgba(230, 0, 0, 0.5);
    --blue: #1A3A8C;
    --blue-light: rgba(26, 58, 140, 0.15);
    --gold: #F5C200;
    --gold-glow: rgba(245, 194, 0, 0.35);

    /* Neutrals */
    --black: #050505;
    --grey-900: #0a0a0a;
    --grey-800: #121212;
    --grey-700: #1a1a1a;
    --text-white: #ffffff;
    --text-muted: #999999;

    /* Typography */
    --font-display: 'Racing Sans One', 'Montserrat', sans-serif;
    --font-h: 'Poppins', sans-serif;
    --font-b: 'Poppins', sans-serif;

    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- SCROLL ANIMATIONS (GPU-only: transform + opacity, no reflow) --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal="scale"] {
    transform: scale(0.94);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Stagger delays for grid children */
[data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal-stagger].is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0ms; }
[data-reveal-stagger].is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 80ms; }
[data-reveal-stagger].is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 160ms; }
[data-reveal-stagger].is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 240ms; }
[data-reveal-stagger].is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 300ms; }
[data-reveal-stagger].is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 360ms; }
[data-reveal-stagger].is-visible > *:nth-child(n+7) { opacity: 1; transform: none; transition-delay: 400ms; }

/* Respeita preferência de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    [data-reveal], [data-reveal-stagger] > * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    background-color: var(--black);
    overflow-x: hidden;
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section {
    padding: 100px 0;
}

/* 1 - Centralized Titles */
.section-title, .sub-heading {
    text-align: center !important;
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 4rem;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    width: 100%;
    display: block;
}

h3, h4, h5, h6 {
    font-family: var(--font-h);
    text-transform: uppercase;
    font-weight: 700;
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    background: rgba(5,5,5,0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.2rem 0;
    transition: var(--transition);
}

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

/* Logo Size */
.main-logo { height: 80px !important; width: auto; }

.nav-menu { display: flex; list-style: none; gap: 3rem; }
.nav-menu a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    transition: var(--transition);
}
.nav-menu a:hover { color: var(--red); }

.btn-primary-red {
    background: var(--red);
    color: white;
    padding: 1rem 2.2rem;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: var(--transition);
}

/* --- HERO --- */
.hero-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 110px; /* compensa navbar fixa: logo 80px + padding 1.2rem*2 */
    position: relative;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-image-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.gradient-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, #050505 30%, transparent 100%);
}

.hero-container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 850px; }

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.red-tint { color: var(--red); }

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 4rem;
}

.btn-luxury {
    background: var(--red);
    color: white;
    padding: 1.4rem 3.5rem;
    text-decoration: none;
    font-weight: 900;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-luxury:hover { transform: translateY(-3px); box-shadow: 0 15px 40px var(--red-glow); }

/* --- TARGET GRID --- */
.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.target-card {
    background: var(--grey-800);
    padding: 4rem 2.5rem;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
    text-align: center;
}

.target-card:hover {
    transform: translateY(-8px);
    border-color: var(--red);
    background: #0d0d0d;
}

/* --- SECTION 3: TECHNICAL WHY --- */
.section-why-vehicle {
    position: relative;
}

.technical-why-container {
    max-width: 1000px;
    margin: 0 auto;
}

.why-label {
    font-family: var(--font-h);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-label::after {
    content: '';
    display: block;
    height: 1px;
    width: 60px;
    background: var(--blue);
    opacity: 0.7;
}

.why-main-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 3rem;
    line-height: 1.15;
    color: var(--text-white);
}

.technical-why-card {
    background: linear-gradient(135deg, #141414 0%, #080808 100%);
    border-left: 4px solid var(--red);
    padding: 4rem 5rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
}

.technical-why-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(230,0,0,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.why-card-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.why-lead {
    font-size: 1.35rem;
    line-height: 1.6;
    font-weight: 500;
    color: rgba(255,255,255,0.95);
}

.why-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.why-body strong {
    color: var(--text-white);
}

.why-close {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

.why-accent-line {
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    padding-top: 2rem;
    border-top: 1px solid rgba(230,0,0,0.2);
}

/* --- SLIDER CSS --- */
.ba-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255,255,255,0.07);
}

.ba-slider .after-img,
.ba-slider .before-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.ba-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    z-index: 2;
}

/* before-img clip is controlled exclusively via JS inline style */
.ba-slider .before-img {
    z-index: 2;
}

/* Placeholders visuais — ficam atrás da imagem quando ela carrega */
.ba-placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ba-placeholder-after {
    background:
        radial-gradient(ellipse at 60% 40%, rgba(230,0,0,0.15) 0%, transparent 60%),
        linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
}

.ba-placeholder-before {
    background: linear-gradient(160deg, #0e0e0e 0%, #050505 100%);
}

/* Labels ANTES / DEPOIS */
.ba-label {
    position: absolute;
    top: 1.2rem;
    font-family: var(--font-h);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 0.4rem 0.9rem;
    z-index: 5;
    pointer-events: none;
}

.ba-label-after {
    right: 1.2rem;
    background: rgba(5,5,5,0.75);
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
}

.ba-label-before {
    left: 1.2rem;
    background: var(--red);
    color: white;
}

/* Handle — linha vertical */
.ba-slider .handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.85);
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none;
}

/* Círculo centralizado na linha, posicionado absolutamente */
.handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6), 0 0 0 3px rgba(255,255,255,0.2);
    color: white;
}

.handle-circle svg {
    width: 20px;
    height: 20px;
}

.ba-hint {
    margin-top: 1.5rem;
    text-align: center;
    opacity: 0.45;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* --- SECTION 4: SOLUTIONS (2 COLUMNS & RED ICONS) --- */
.services-grid-premium-special {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card-elite {
    background: linear-gradient(135deg, #111 0%, #080808 100%);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3.5rem;
    display: flex;
    gap: 2.5rem;
    transition: var(--transition);
}

.service-card-elite:hover {
    transform: scale(1.02);
    border-color: var(--red);
}

/* Red Icons by default — SVG usa currentColor */
.icon-box-red {
    color: var(--red);
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    transition: var(--transition);
    filter: drop-shadow(0 0 6px rgba(230, 0, 0, 0.3));
}

.icon-box-red svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Hover: volta para a cor original do ícone (branco nítido) */
.service-card-elite:hover .icon-box-red {
    color: var(--text-white);
    filter: drop-shadow(0 0 16px var(--red-glow));
}

/* --- BENEFÍCIOS --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--grey-800);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230,0,0,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(230,0,0,0.05);
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-num {
    font-family: var(--font-h);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--blue);
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    color: var(--red);
    margin-bottom: 0;
    transition: var(--transition);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card:hover .benefit-icon {
    color: var(--text-white);
    filter: drop-shadow(0 0 10px var(--red-glow));
}

.benefit-divider {
    width: 30px;
    height: 1px;
    background: rgba(230,0,0,0.4);
    margin: 2rem auto;
}

.benefit-card h5 {
    color: var(--text-white);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- POR QUE FALCON? (SPLIT LAYOUT) --- */
.diff-content-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.diff-text-large h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 2.8vw, 2.6rem); line-height: 1.05; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 3rem; text-align: left !important; }

.tech-list-luxury { list-style: none; }
.tech-list-luxury li {
    display: flex; gap: 2rem; margin-bottom: 3.5rem;
    border-left: 3px solid var(--blue); padding-left: 2rem;
    transition: var(--transition);
}
.tech-list-luxury li:hover {
    border-left-color: var(--red);
}
.tech-list-luxury h4 { font-size: 1.3rem; margin-bottom: 0.8rem; }

/* --- SECTION 7: TESTIMONIALS --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--grey-800);
    padding: 3.5rem;
    border: 1px solid rgba(255,255,255,0.02);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover { border-color: var(--red); transform: translateY(-10px); }
.stars { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.4rem; text-shadow: 0 0 12px var(--gold-glow); }
.review-text { font-style: italic; color: var(--text-muted); font-size: 1rem; margin-bottom: 2rem; line-height: 1.8; }
.reviewer-name { font-weight: 800; color: var(--text-white); text-transform: uppercase; letter-spacing: 1px; }

/* --- FORM (PERFECT GLASS WITH CPF) --- */
.form-container-glass {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem;
    background: rgba(5,5,5,0.9);
    backdrop-filter: blur(25px);
    border: 1px solid var(--red);
    box-shadow: 0 40px 100px rgba(0,0,0,0.9);
}

.form-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-input-p {
    width: 100%;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-family: var(--font-b);
    font-size: 1rem;
}

.full-width { grid-column: span 2; }

.btn-submit-elite {
    display: block;
    margin: 2rem auto 0;
    padding: 1.1rem 4rem;
    background: var(--red);
    color: white;
    border: none;
    font-family: var(--font-h);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit-elite:hover {
    background: var(--red-alt);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--red-glow);
}

/* Seção contato: padding-bottom menor para aproximar do footer */
.contact-section-elite {
    padding-bottom: 60px;
}

/* --- FOOTER --- */
.footer-elite {
    padding: 40px 0 50px;
    text-align: center;
    background: #030303;
}

.footer-elite .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.f-logo-alt { height: 192px !important; margin-bottom: 1.2rem; width: auto; display: block; }

/* Footer info */
.f-info {
    margin: 0.4rem 0 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.f-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Footer WhatsApp button */
.f-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: #fff;
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
    margin-bottom: 2rem;
}
.f-whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}
.f-whatsapp-btn:hover {
    background: #1db954;
    transform: translateY(-2px);
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.f-socials {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
}

.social-link svg {
    width: 32px;
    height: 32px;
    fill: var(--text-muted);
    transition: var(--transition);
}

.social-link:hover svg {
    fill: var(--red);
    transform: scale(1.2);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* CTA split */
.nav-cta-mobile { display: none; list-style: none; }

/* Hamburger — hidden by default */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    position: relative;
    z-index: 4000;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- Tablet large (≤1100px) --- */
@media (max-width: 1100px) {
    .container { padding: 0 2.5rem; }
    .section { padding: 80px 0; }

    .target-grid   { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }

    .services-grid-premium-special { grid-template-columns: 1fr; }
    .diff-content-premium { grid-template-columns: 1fr; gap: 3rem; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid-modern { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }

    .technical-why-card { padding: 3rem; }
    .why-lead { font-size: 1.2rem; }
    .form-container-glass { padding: 4rem 3rem; }

    .diff-visual-box { order: -1; }
    .diff-visual-box img { max-height: 400px; object-fit: cover; }
}

/* --- Tablet (≤768px) --- */
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .section { padding: 60px 0; }

    /* --- Menu overlay --- */
    .nav-menu {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: #050505;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        list-style: none;
        z-index: 3000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .nav-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-menu a {
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 0.15em;
        color: #fff;
        text-decoration: none;
    }
    .nav-menu a:hover { color: var(--red); }
    .nav-cta-desktop { display: none; }
    .nav-cta-mobile  { display: list-item; }
    .nav-toggle { display: flex; }

    /* Logo — maior para logo horizontal */
    .main-logo { height: 70px !important; }
    .f-logo-alt { height: 80px !important; }

    /* Hero — ocupa tela cheia com padding adequado */
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: 100px;
        padding-bottom: 3rem;
        display: flex;
        align-items: center;
    }
    .hero-content { max-width: 100%; }
    .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); line-height: 1.05; }
    .hero-desc { font-size: 1rem; margin-bottom: 2.5rem; }
    .btn-luxury { padding: 1.1rem 2.5rem; font-size: 0.85rem; }
    .gradient-overlay {
        background: linear-gradient(160deg, rgba(5,5,5,0.75) 0%, rgba(5,5,5,0.55) 60%, rgba(5,5,5,0.4) 100%);
    }

    /* Grids */
    .target-grid       { grid-template-columns: 1fr; }
    .benefits-grid     { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Cards */
    .target-card        { padding: 2.5rem 2rem; }
    .benefit-card       { padding: 2.5rem 1.5rem; }
    .service-card-elite { padding: 2rem; gap: 1.5rem; }
    .testimonial-card   { padding: 2.5rem; }

    .technical-why-card { padding: 2.5rem 1.5rem; }
    .why-body { font-size: 1rem; }
    .form-container-glass { padding: 2.5rem 1.5rem; }

    .tech-list-luxury li { gap: 1rem; margin-bottom: 2rem; }
    .tech-list-luxury h4 { font-size: 1.1rem; }

    .section-title { margin-bottom: 2.5rem; font-size: clamp(1.4rem, 4.5vw, 2rem); }
}

/* --- Mobile (≤480px) --- */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section { padding: 50px 0; }

    .navbar { padding: 0.8rem 0; }
    .main-logo { height: 55px !important; }

    .hero-section { padding-top: 85px; }
    .hero-title { font-size: clamp(1.7rem, 8vw, 2.2rem); }
    .hero-desc { font-size: 0.95rem; }

    .benefits-grid { grid-template-columns: 1fr; }
    .target-grid   { grid-template-columns: 1fr; }

    .benefit-card       { padding: 2rem 1.5rem; }
    .service-card-elite { flex-direction: column; gap: 1rem; padding: 1.8rem; }
    .testimonial-card   { padding: 2rem; }
    .target-card        { padding: 2rem 1.5rem; }

    .technical-why-card { padding: 2rem 1.2rem; }
    .why-lead { font-size: 1.1rem; }

    .form-container-glass { padding: 2rem 1rem; }
    .btn-submit-elite { padding: 1rem 2rem; width: 100%; }

    .f-socials { gap: 2rem; }
    .f-logo-alt { height: 60px !important; }

    /* Navbar */
    .navbar { padding: 0.8rem 0; }
}
