/* ============================================
   BULLSEYE SP — Impeccable redesign
   Barlow Condensed · Barlow
   Light surfaces: #F7F6F3 / #EFEDE8
   Dark surfaces:  #1B1B1B
   Accent: #F39237
   ============================================ */

:root {
    --orange:     #F39237;
    --orange-h:   #f5a553;
    --orange-d:   #c97520;

    /* Light palette */
    --bg:         #F7F6F3;
    --bg-2:       #EFEDE8;
    --line:       rgba(0,0,0,0.1);
    --line-o:     rgba(243,146,55,0.35);
    --text:       #1B1B1B;
    --muted:      #6b7075;

    /* Dark palette */
    --dark:       #1B1B1B;
    --dark-2:     #222222;
    --dark-3:     #2b2b2b;
    --dark-4:     #363636;
    --line-d:     rgba(255,255,255,0.1);
    --line-od:    rgba(243,146,55,0.28);
    --text-l:     #e8e8e8;
    --muted-d:    #868c93;

    --white:      #ffffff;
    --font-d:     'Barlow Condensed', sans-serif;
    --font-b:     'Barlow', sans-serif;
    --r:          6px;
    --r-lg:       12px;
    --ease:       cubic-bezier(.16,1,.3,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-b); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.section-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.sec-title {
    font-family: var(--font-d);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.orange { color: var(--orange); }

/* ============================================
   LOGO
   ============================================ */
.nav-logo-img {
    height: 90px;
    width: auto;
    max-width: 240px;
    display: block;
    object-fit: contain;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
    margin-bottom: 16px;
}

.lp-name {
    font-family: var(--font-d);
    font-size: 1rem;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 3px;
}

.lp-dim { font-size: 0.6rem; color: var(--muted-d); letter-spacing: 0.5px; }

/* ============================================
   NAV  — dark, always
   ============================================ */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: var(--dark);
    border-bottom: 1px solid var(--line-d);
    transition: box-shadow 0.3s;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.45);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted-d);
    letter-spacing: 0.3px;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--white); }

/* WA y FB en desktop — en línea con separación */
.nav-menu-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-left: 8px;
    border-top: none;
    padding-top: 0;
    width: auto;
}
.nav-wa, .nav-fb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted-d);
    text-decoration: none;
    padding: 0 14px;
    border-left: 1px solid var(--line-d);
    white-space: nowrap;
    transition: color 0.2s;
}
.nav-wa:hover { color: #25D366; }
.nav-fb:hover { color: #1877F2; }
.nav-wa i { color: #25D366; }
.nav-fb i { color: #1877F2; }

.nav-cta {
    background: var(--orange) !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
    padding: 8px 20px;
    border-radius: var(--r);
    font-size: 0.85rem !important;
    letter-spacing: 0.2px;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--orange-h) !important;
    transform: translateY(-1px) !important;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    width: 22px; height: 2px;
    background: var(--text-l);
    border-radius: 2px;
    display: block;
    transition: all 0.25s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--orange);
    color: var(--dark);
    font-family: var(--font-b);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--orange-h);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(243,146,55,0.3);
}

.btn-full { width: 100%; justify-content: center; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--orange);
    border-bottom: 1px solid var(--line-o);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.link-arrow:hover { color: var(--orange-h); border-color: var(--orange-h); }

/* ============================================
   HERO — dark
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: var(--dark);
}

/* Real hero background image */
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}




/* Dark overlay on top of the image */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(27,27,27,0.88) 0%,
        rgba(27,27,27,0.72) 50%,
        rgba(27,27,27,0.60) 100%
    );
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse 70% 60% at 75% 40%, rgba(243,146,55,0.09) 0%, transparent 65%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 100px 28px 72px;
    position: relative;
    z-index: 3;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted-d);
    margin-bottom: 28px;
}

.kicker-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(243,146,55,0.5); }
    55%       { box-shadow: 0 0 0 7px rgba(243,146,55,0); }
}

.hero-headline {
    font-family: var(--font-d);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 28px;
    padding-bottom: 0.15em;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero-headline .line-wrap { display: block; overflow: visible; padding-bottom: 0.12em; }
.hero-headline .orange { color: var(--orange); text-shadow: 0 2px 20px rgba(243,146,55,0.3); }

.reveal-line {
    display: block;
    transform: translateY(110%);
    opacity: 0;
}

/* Fallback: if JS doesn't fire, still show the text */
.no-js .reveal-line,
.reveal-line.visible,
.hero-headline:not(.animated) .reveal-line {
    transform: translateY(0);
    opacity: 1;
}

.reveal-line.visible { animation: reveal-up 0.8s var(--ease) forwards; }
.reveal-line.visible-delay { animation: reveal-up 0.8s var(--ease) 0.12s forwards; }

@keyframes reveal-up { to { transform: translateY(0); opacity: 1; } }

.hero-sub {
    font-size: 0.98rem;
    color: var(--muted-d);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 28px;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    border-bottom: 1px solid var(--line-d);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.hero-phone i { color: var(--orange); font-size: 0.85rem; }
.hero-phone:hover { color: var(--orange); border-color: var(--line-od); }

/* hero-bottom removed — stats moved to right panel */

.hero-proof {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    border-top: 1px solid var(--line-d);
    padding-top: 24px;
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 28px 0 0;
}

.proof-item:first-child { padding-left: 0; }

.proof-val {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.proof-n {
    font-family: var(--font-d);
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.proof-unit {
    font-family: var(--font-d);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.proof-l {
    font-size: 0.75rem;
    color: var(--muted-d);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.proof-sep {
    width: 1px;
    height: 36px;
    background: var(--line-d);
    margin: 0 28px 0 0;
    align-self: center;
}

/* ---- Hero right card ---- */
.hero-right {
    display: flex;
    align-items: stretch;
}

.hero-card {
    background: rgba(20,20,20,0.75);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line-d);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.hero-card__label {
    font-family: var(--font-d);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

.hero-card__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-l);
    padding: 10px 0;
    border-bottom: 1px solid var(--line-d);
}

.hero-card__list li:last-child { border-bottom: none; }

.hero-card__list li i {
    color: var(--orange);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.hero-card__footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--line-d);
}

.hero-card__footer span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--muted-d);
}

.hero-card__footer i { color: var(--orange); font-size: 0.75rem; }

.hero-card__wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: var(--white);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 11px 16px;
    border-radius: var(--r);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

.hero-card__wa:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.hero-accent-bar {
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(243,146,55,0.15) 40%, transparent 70%);
}

/* ============================================
   TICKER — orange band
   ============================================ */
.ticker {
    overflow: hidden;
    background: var(--orange);
    padding: 12px 0;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    animation: ticker-scroll 28s linear infinite;
}

.ticker-track span {
    font-family: var(--font-d);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    padding: 0 20px;
}

.tick-sep { color: rgba(27,27,27,0.35) !important; }

@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================
   VIDEO — light bg-2
   ============================================ */
.video-sec {
    padding: 96px 0;
    background: var(--bg-2);
}

.vid-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: center;
}

.vid-header { margin-bottom: 0; }
.vid-header h2 { color: var(--text); margin-bottom: 16px; }
.vid-header p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

.vid-frame {
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.vid-frame iframe,
.vid-frame video { width: 100%; aspect-ratio: 16/9; display: block; border: none; }

.vid-player {
    background: #000;
    object-fit: cover;
}

.vid-placeholder {
    aspect-ratio: 16/9;
    background: rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1.5px dashed rgba(243,146,55,0.4);
    border-radius: var(--r-lg);
}

.vid-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(243,146,55,0.12);
    border: 1.5px solid rgba(243,146,55,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--orange);
}

.vid-placeholder p { color: var(--muted); font-size: 0.9rem; text-align: center; }
.vid-placeholder strong { color: var(--text); }

.vid-spec {
    font-size: 0.75rem !important;
    padding: 3px 10px;
    border: 1px solid var(--line-o);
    border-radius: 4px;
    color: var(--orange-d) !important;
}

/* ============================================
   SERVICES — light bg
   ============================================ */
.services {
    padding: 96px 0;
    background: var(--bg);
}

.srv-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 52px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--text);
}

.srv-header .sec-title { color: var(--text); }

/* ---- Service Cards grid ---- */
.svc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
    gap: 1.5rem;
}

.svc-card {
    --_accent: var(--card-accent, #F39237);
    --_radius: 32px;
    --_pad: 18px;
    --_inner-r: calc(var(--_radius) - var(--_pad));
    --_ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --_ease-in: cubic-bezier(0.55, 0, 1, 0.45);
    --_dur: 300ms;

    background: var(--white);
    border-radius: var(--_radius);
    box-shadow: 0 16px 40px -12px rgba(0,0,0,0.14);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.18s ease-out;
}

.svc-card:hover {
    box-shadow: 0 24px 56px -12px rgba(0,0,0,0.22);
}

/* --- Image area --- */
.svc-card__img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: var(--_inner-r);
    margin: var(--_pad) var(--_pad) 0;
}

.svc-card__img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.svc-card__img--base {
    opacity: 1;
    will-change: opacity;
    filter: grayscale(1) brightness(0.8);
    transition: opacity var(--_dur) ease-out;
}

.svc-card__img--hover {
    opacity: 0;
    will-change: opacity;
    transition: opacity var(--_dur) ease-out;
}

.svc-card:hover .svc-card__img--base {
    opacity: 0;
}

.svc-card:hover .svc-card__img--hover {
    opacity: 1;
}

/* Desktop: mostrar imagen, ocultar top con icono */
.svc-card__top { display: none; }

/* ======================================
   MOBILE CARDS — diseño limpio 1 columna
   ====================================== */
@media (max-width: 768px) {

    .svc-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* Reset card a layout vertical normal */
    .svc-card {
        --_radius: 16px;
        flex-direction: column;
    }

    /* Ocultar imagen */
    .svc-card__img-wrap { display: none; }

    /* Mostrar fila de icono + badge en la parte superior */
    .svc-card__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 16px 0;
        margin-bottom: 0;
    }

    .svc-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 1rem;
    }

    .svc-card__badge--mobile {
        display: inline-block;
        font-size: 0.62rem;
        padding: 0.3em 0.85em;
        writing-mode: horizontal-tb;
        white-space: nowrap;
    }

    /* Body simplificado */
    .svc-card__body {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 12px 16px 16px;
    }

    /* Título + pill en la misma fila */
    .svc-card__title {
        font-size: 1.15rem;
        grid-column: unset;
        flex: 1;
    }

    .svc-card__pill {
        grid-column: unset;
        font-size: 0.6rem;
        padding: 0.3em 0.8em;
        align-self: flex-start;
    }

    /* Descripción a 2 líneas */
    .svc-card__desc {
        font-size: 0.84rem;
        -webkit-line-clamp: 2;
        grid-column: unset;
    }

    /* Tags */
    .svc-card__tags {
        grid-column: unset;
        gap: 5px;
    }

    .svc-card__tags li {
        font-size: 0.65rem;
        padding: 0.25em 0.8em;
    }

    /* Botón ancho completo */
    .svc-card__cta {
        grid-column: unset;
        width: 100%;
        justify-content: center;
        padding: 0.7em 1em;
        font-size: 0.85rem;
        border-radius: 10px;
        margin-top: 2px;
    }
}

.svc-card__icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--_accent) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--_accent) 25%, transparent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--_accent);
    flex-shrink: 0;
}

/* Badge sobre la imagen (desktop) — posicionado absolutamente en el img-wrap */
.svc-card__img-wrap .svc-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: var(--white);
    color: var(--muted);
    border: none;
    border-radius: 999px;
    padding: 0.35em 0.9em;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.svc-card__img-wrap .svc-card__badge--hot {
    background: var(--_accent);
    color: #fff;
}


.svc-card__badge--mobile { display: none; }

@media (max-width: 768px) {
    .svc-card__badge--mobile { display: inline-block; }
}


.svc-card__badge {
    display: inline-block;
    padding: 0.3em 0.85em;
    background: color-mix(in srgb, var(--_accent) 10%, transparent);
    color: color-mix(in srgb, var(--_accent) 90%, var(--text));
    border: 1px solid color-mix(in srgb, var(--_accent) 30%, transparent);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 999px;
}

.svc-card__badge--hot {
    background: color-mix(in srgb, var(--_accent) 18%, transparent);
    color: var(--_accent);
    border-color: color-mix(in srgb, var(--_accent) 45%, transparent);
}

/* --- Card body --- */
.svc-card__body {
    display: grid;
    grid-template-columns: 1fr max-content;
    grid-template-rows: auto;
    align-items: start;
    flex: 1;
    padding: var(--_pad);
    gap: 10px 12px;
}

/* Title spans left column, badge pill spans right column — same row */
.svc-card__title {
    font-family: var(--font-d);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    margin: 0;
    grid-column: 1;
    align-self: center;
}

/* Accent pill — same row as title, right side */
.svc-card__pill {
    grid-column: 2;
    align-self: center;
    white-space: nowrap;
    padding: 0.4em 1em;
    border-radius: 999px;
    background: var(--_accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* All other children span full width */
.svc-card__top,
.svc-card__desc,
.svc-card__tags,
.svc-card__cta {
    grid-column: 1 / -1;
}

.svc-card__desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/* --- Tags --- */
.svc-card__tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0; margin: 0;
}

.svc-card__tags li {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3em 0.9em;
    border-radius: 999px;
    background: color-mix(in srgb, var(--_accent) 12%, transparent);
    color: color-mix(in srgb, var(--_accent) 80%, var(--text));
    border: 1px solid color-mix(in srgb, var(--_accent) 25%, transparent);
}

/* --- CTA button --- */
.svc-card__cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding: 0.75em 1.5em;
    border-radius: 999px;
    background: var(--_accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: filter 0.2s, transform 0.2s;
}

.svc-card__cta:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
    color: #fff;
}

/* ============================================
   ABOUT — light bg-2
   ============================================ */
.about {
    padding: 96px 0;
    background: var(--bg-2);
}

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: start;
}

.about-visual { position: relative; }

.img-ph {
    width: 100%;
    aspect-ratio: 5/6;
    background: rgba(0,0,0,0.05);
    border: 1.5px dashed rgba(243,146,55,0.4);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 20px;
}

.img-ph i { font-size: 2.2rem; color: rgba(243,146,55,0.35); margin-bottom: 8px; }
.img-ph strong { font-size: 0.9rem; color: var(--muted); }
.img-ph span { font-size: 0.72rem; color: var(--muted); opacity: 0.7; }

.about-cert {
    position: absolute;
    bottom: -18px; right: -18px;
    background: var(--dark);
    border: 1px solid var(--line-d);
    border-radius: var(--r);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.about-cert i { font-size: 1.6rem; color: #d4af37; }
.about-cert strong { display: block; font-size: 0.82rem; color: var(--white); font-weight: 600; }
.about-cert span { font-size: 0.72rem; color: var(--muted-d); }

.about-text .sec-title { color: var(--text); margin-bottom: 24px; }

.about-lead {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-text strong { color: var(--orange-d); font-weight: 600; }

.about-text > p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-pillars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.pillar { display: flex; align-items: flex-start; gap: 14px; }

.pillar-mark {
    display: block;
    width: 3px; min-width: 3px; height: 100%; min-height: 60px;
    background: var(--orange);
    border-radius: 2px;
    margin-top: 2px;
}

.pillar strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.pillar p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ============================================
   DIFERENCIADORES — dark
   ============================================ */
.diff {
    padding: 96px 0;
    background: var(--dark);
}

.diff-title { color: var(--white); margin-bottom: 56px; }

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line-d);
    border: 1px solid var(--line-d);
    border-radius: var(--r-lg);
    overflow: hidden;
}

.diff-item {
    background: var(--dark);
    padding: 36px 28px;
    transition: background 0.2s;
}

.diff-item:hover { background: var(--dark-2); }

.diff-icon { display: block; font-size: 1.5rem; color: var(--orange); margin-bottom: 16px; }

.diff-item h3 {
    font-family: var(--font-d);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.diff-item p { font-size: 0.87rem; color: var(--muted-d); line-height: 1.7; }

/* ============================================
   CLIENTES — light bg
   ============================================ */
.clients {
    padding: 96px 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
}

.clients .sec-title { color: var(--text); margin-bottom: 14px; }

.clients-sub { font-size: 0.95rem; color: var(--muted); margin-bottom: 56px; max-width: 500px; }

.clients-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 12px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    text-align: center;
}

.client-item:hover {
    border-color: var(--line-o);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.client-logo-ph {
    width: 100%; height: 56px;
    border: 1.5px dashed rgba(243,146,55,0.35);
    border-radius: var(--r);
    background: rgba(243,146,55,0.04);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
}

.client-logo-ph span:first-child { font-family: var(--font-d); font-size: 0.75rem; font-weight: 700; color: rgba(243,146,55,0.5); letter-spacing: 2px; }
.client-logo-ph span:last-child { font-size: 0.6rem; color: var(--muted); }

.client-logo-img {
    height: 56px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}

.client-item:hover .client-logo-img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-item > span { font-size: 0.75rem; color: var(--muted); line-height: 1.4; font-weight: 500; }

/* ============================================
   TESTIMONIALS — light bg-2
   ============================================ */
.testimonials {
    padding: 96px 0;
    background: var(--bg-2);
}

.testimonials .sec-title { color: var(--text); margin-bottom: 52px; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testi {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    display: flex; flex-direction: column; gap: 24px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.testi:hover {
    border-color: var(--line-o);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.testi > p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    quotes: "\201C" "\201D";
}

.testi > p::before { content: open-quote; color: var(--orange); font-size: 1.2em; line-height: 0; vertical-align: -0.2em; }

.testi footer {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    display: flex; flex-direction: column; gap: 3px;
}

.testi-name { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.testi-role { font-size: 0.78rem; color: var(--muted); }

/* ============================================
   CONTACT — dark left, light right
   ============================================ */
.contact { background: var(--bg); }

.contact-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 96px 28px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-left {
    background: var(--dark);
    border-radius: var(--r-lg);
    padding: 48px 40px;
}

.contact-title { color: var(--white); margin-bottom: 16px; }

.contact-left > p { font-size: 1rem; color: var(--muted-d); margin-bottom: 40px; }

.contact-facts { display: flex; flex-direction: column; gap: 14px; }

.fact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--line-d);
    border-radius: var(--r);
    transition: border-color 0.2s, background 0.2s;
    background: rgba(255,255,255,0.04);
}

.fact-item:hover { border-color: var(--line-od); background: rgba(243,146,55,0.05); }

.fact-item i {
    width: 36px; height: 36px; min-width: 36px;
    background: rgba(243,146,55,0.12);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    color: var(--orange);
    font-size: 0.95rem;
}

.fact-phone, .fact-wa { text-decoration: none; }
.fact-wa i { background: rgba(37,211,102,0.12); color: #25d366; }

.fact-item strong { display: block; font-size: 0.85rem; color: var(--white); font-weight: 600; }
.fact-item span   { font-size: 0.82rem; color: var(--muted-d); }

/* Form */
.contact-right {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.contact-form h3 {
    font-family: var(--font-d);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }

.field label { font-size: 0.8rem; font-weight: 600; color: var(--muted); letter-spacing: 0.3px; }

.field input,
.field select,
.field textarea {
    background: var(--bg);
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: var(--r);
    padding: 11px 14px;
    color: var(--text);
    font-family: var(--font-b);
    font-size: 0.9rem;
    outline: none;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(107,112,117,0.5); }

.field select option { background: var(--white); color: var(--text); }

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(243,146,55,0.12);
    background: var(--white);
}

.field textarea { resize: vertical; min-height: 90px; }

.form-note {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--muted);
    display: flex; align-items: center; gap: 5px; justify-content: center;
}

.form-note i { color: var(--orange); }

/* Toast */
.toast {
    position: fixed;
    bottom: 28px; right: 28px;
    background: var(--white);
    border: 1px solid var(--orange);
    border-radius: var(--r);
    padding: 14px 20px;
    color: var(--text);
    font-size: 0.88rem;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    z-index: 9999;
    transform: translateY(16px);
    opacity: 0;
    transition: all 0.3s var(--ease);
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--orange); }

/* ============================================
   FOOTER — dark
   ============================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--line-d);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 28px 52px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 48px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--muted-d);
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 260px;
}

.socials { display: flex; gap: 10px; }

.socials a {
    width: 36px; height: 36px;
    background: var(--dark-3);
    border: 1px solid var(--line-d);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted-d);
    font-size: 0.85rem;
    transition: all 0.2s;
}

.socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--dark);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-d);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a { font-size: 0.85rem; color: var(--muted-d); transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }

.footer-contact p {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: var(--muted-d); margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-contact p i { color: var(--orange); width: 14px; }
.footer-contact a:hover { color: var(--orange-h); }

.wa-btn {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 14px;
    background: #25d366; color: var(--white);
    padding: 9px 16px; border-radius: var(--r);
    font-size: 0.82rem; font-weight: 600;
    transition: all 0.2s;
}

.wa-btn:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 4px 18px rgba(37,211,102,0.3); }

.footer-base {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 28px;
    border-top: 1px solid var(--line-d);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

.footer-base span { font-size: 0.78rem; color: var(--muted-d); }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.phone-float {
    position: fixed;
    bottom: 154px; right: 26px;
    width: 54px; height: 54px;
    background: var(--orange); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--white);
    box-shadow: 0 4px 18px rgba(243,146,55,0.45);
    z-index: 900;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.phone-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(243,146,55,0.6); }

.wa-float {
    position: fixed;
    bottom: 90px; right: 26px;
    width: 54px; height: 54px;
    background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--white);
    box-shadow: 0 4px 18px rgba(37,211,102,0.4);
    z-index: 900;

    transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.sr { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.sr.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   VIDEO — extra content
   ============================================ */
.vid-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange-d);
    margin-bottom: 16px;
}

.vid-kicker i { font-size: 0.9rem; }

.vid-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 28px;
}

.vid-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.vid-features li i {
    color: var(--orange);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.vid-cta { margin-top: 0; }

.vid-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 48px;
}

.vid-stat {
    background: var(--bg-2);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.2s;
}

.vid-stat:hover { background: var(--bg); }

.vid-stat i {
    font-size: 1.4rem;
    color: var(--orange);
    margin-bottom: 4px;
}

.vid-stat strong {
    font-family: var(--font-d);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.vid-stat span {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ============================================
   ABOUT CAROUSEL
   ============================================ */
.about-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 5/6;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.16);
}

.ac-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.ac-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.ac-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.ac-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.ac-watermark {
    position: absolute !important;
    top: 16px;
    right: 16px;
    width: 72px !important;
    height: 72px !important;
    object-fit: contain !important;
    object-position: center !important;
    opacity: 0.75;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
    pointer-events: none;
    z-index: 10;
}

.ac-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(27,27,27,0.75);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    z-index: 20;
    pointer-events: all;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
    outline: none;
}

.ac-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.ac-btn:active { opacity: 0.8; }

.ac-prev { left: 14px; }
.ac-next { right: 14px; }

.ac-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
    pointer-events: all;
}

.ac-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.ac-dot.active {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.25);
}

/* ============================================
   TESTIMONIALS — enhanced
   ============================================ */
.testi {
    position: relative;
    overflow: hidden;
}

.testi::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, rgba(243,146,55,0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.testi:hover::before { opacity: 1; }

.testi--featured {
    border-color: rgba(243,146,55,0.35);
    box-shadow: 0 8px 32px rgba(243,146,55,0.1);
}

.testi--featured::before { opacity: 1; }

.testi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.testi-stars {
    display: flex;
    gap: 3px;
}

.testi-stars i {
    color: var(--orange);
    font-size: 0.82rem;
}

.testi-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange-d);
    background: rgba(243,146,55,0.1);
    padding: 3px 9px;
    border-radius: 99px;
    white-space: nowrap;
}

.testi footer {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row;
}

.testi-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: rgba(243,146,55,0.12);
    border: 1.5px solid rgba(243,146,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE — mobile stats
   ============================================ */
@media (max-width: 768px) {
    .vid-stats-row { grid-template-columns: 1fr; }
    .vid-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .proof-n { font-size: 2.6rem; }
    .proof-unit { font-size: 1.2rem; }
    .proof-sep { margin: 0 16px 0 0; }
    .testi-grid { grid-template-columns: 1fr; }
    .testi-top { flex-wrap: wrap; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .svc-cards { grid-template-columns: repeat(2, 1fr); }
    .srv-item::before { display: none; }
    .diff-grid { grid-template-columns: repeat(2, 1fr); }
    .clients-row { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-wrap { gap: 48px; }
    .contact-inner { gap: 48px; }

    /* Panel hamburguesa */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100dvh;
        background: var(--dark-2);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 40px;
        gap: 6px;
        transform: translateX(100%);
        transition: transform 0.3s var(--ease);
        z-index: 1000;
        border-left: 1px solid var(--line-d);
    }
    .nav-menu.open { transform: translateX(0); box-shadow: -8px 0 40px rgba(0,0,0,0.5); }
    .nav-menu a { font-size: 1.1rem; color: var(--text-l); padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; }
    .nav-menu .nav-cta { border-bottom: none; margin-top: 8px; padding: 14px 20px; width: 100%; text-align: center; justify-content: center; }
    .nav-menu-only-mobile { display: flex !important; }
    .nav-menu-footer {
        margin-top: auto;
        padding-top: 24px;
        border-top: 1px solid var(--line-d);
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }
    .nav-wa, .nav-fb {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--muted-d) !important;
        text-decoration: none;
        padding: 0;
        border-left: none;
    }
    .nav-wa i { color: #25D366; font-size: 1.2rem; width: 20px; text-align: center; }
    .nav-fb i { color: #1877F2; font-size: 1.2rem; width: 20px; text-align: center; }
    .nav-burger { display: flex; z-index: 1002; }
}

@media (max-width: 768px) {
    /* Hero */
    .hero-inner { grid-template-columns: 1fr; padding: 90px 28px 28px; gap: 24px; }
    .hero-right { display: none; }
    .hero-headline { font-size: clamp(2.5rem, 10vw, 4rem); }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-proof { flex-wrap: wrap; gap: 0; padding-top: 14px; }
    .proof-item { padding: 0 20px 0 0; }

    /* Tarjetas — 1 columna, limpias */
    .svc-cards { grid-template-columns: 1fr; gap: 14px; }

    .svc-card { flex-direction: column; --_radius: 16px; }

    /* Ocultar imagen y badge del top */
    .svc-card__img-wrap { display: none; }
    .svc-card__badge--mobile { display: none; }

    /* Top: solo icono */
    .svc-card__top {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 18px 18px 0;
    }

    .svc-card__icon { width: 44px; height: 44px; border-radius: 12px; font-size: 1rem; }

    /* Body */
    .svc-card__body {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 12px 18px 18px;
        grid-template-columns: unset;
    }

    .svc-card__title  { font-size: 1.2rem; grid-column: unset; }
    .svc-card__pill   { grid-column: unset; align-self: flex-start; }
    .svc-card__desc   { grid-column: unset; font-size: 0.85rem; -webkit-line-clamp: 3; }
    .svc-card__tags   { grid-column: unset; }
    .svc-card__tags li { font-size: 0.66rem; }

    /* Botón ancho completo */
    .svc-card__cta {
        grid-column: unset;
        width: 100%;
        justify-content: center;
        border-radius: 10px;
        padding: 0.75em 1em;
        font-size: 0.88rem;
    }

    .srv-header { flex-direction: column; align-items: flex-start; }

    .about-wrap { grid-template-columns: 1fr; }

    .diff-grid { grid-template-columns: 1fr; }
    .clients-row { grid-template-columns: repeat(2, 1fr); }

    .contact-inner { grid-template-columns: 1fr; }
    .contact-left { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer compacto en móvil */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        padding: 32px 20px 24px;
    }

    /* Logo + descripción: ocupa las 2 columnas */
    .footer-brand {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }

    /* Ocultar descripción larga en móvil */
    .footer-brand p { display: none; }

    /* Logo e íconos en la misma fila */
    .footer-logo-img { height: 70px; margin-bottom: 0; }
    .socials a { width: 32px; height: 32px; }

    /* Ocultar columna de Empresa en móvil */
    .footer-col:nth-child(3) { display: none; }

    /* Reducir texto en columnas */
    .footer-col h4 { font-size: 0.85rem; margin-bottom: 10px; }
    .footer-col ul { gap: 7px; }
    .footer-col a { font-size: 0.8rem; }

    /* Contacto compacto */
    .footer-contact p { font-size: 0.78rem; margin-bottom: 5px; }
    .wa-btn { font-size: 0.78rem; padding: 7px 12px; margin-top: 10px; }

    .footer-base {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 14px 20px;
        text-align: center;
    }
    .footer-base span { font-size: 0.72rem; }
    .ticker { display: none; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: clamp(2rem, 9vw, 3rem); }
    .contact-right { padding: 24px 18px; }
    .clients-row { grid-template-columns: 1fr; }
    .logo-ph { width: 160px; height: 46px; }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
#scroll-top {
    position: fixed;
    bottom: 26px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--dark-2);
    border: 1px solid var(--line-d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    z-index: 900;
}
#scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#scroll-top:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
#scroll-top svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 768px) {
    #scroll-top { bottom: 26px; right: 20px; width: 40px; height: 40px; }
    .wa-float { bottom: 82px; right: 20px; width: 50px; height: 50px; font-size: 1.4rem; }
    .phone-float { bottom: 140px; right: 20px; width: 50px; height: 50px; font-size: 1.2rem; }
}

/* ============================================
   PALETA DEFINITIVA — Blanco Humo · Gris Plata · Gris Grafito · Naranja Seguridad
   ============================================ */

:root {
    --orange:   #FF5A00;
    --dark:     #212B36;
    --dark-2:   #2C3A47;
    --white:    #FFFFFF;
    --text-l:   #F4F6F8;
    --text-d:   #212B36;
    --muted-d:  rgba(255,255,255,0.65);
    --muted-l:  #637381;
    --bg-l:     #F4F6F8;
    --bg-l2:    #DFE3E8;
    --line-d:   rgba(255,255,255,0.10);
    --line-l:   rgba(33,43,54,0.12);
}

body { background: #F4F6F8; color: #212B36; }

#servicios,
#diferenciadores,
#testimonios { background: #F4F6F8; }

#video,
#nosotros,
#clientes { background: #DFE3E8; }

#servicios .sec-title,
#diferenciadores .sec-title,
#testimonios .sec-title,
#video .sec-title,
#nosotros .sec-title,
#clientes .sec-title { color: #212B36; }

#servicios .sec-kicker,
#diferenciadores .sec-kicker,
#testimonios .sec-kicker,
#video .sec-kicker,
#nosotros .sec-kicker,
#clientes .sec-kicker { color: #FF5A00; }

.ticker { background: #FF5A00; }
.ticker-track span { color: #FFFFFF; }
.tick-sep { color: rgba(255,255,255,0.5); }

.svc-card { background: #FFFFFF; box-shadow: 0 4px 24px rgba(33,43,54,0.10); }
.svc-card:hover { box-shadow: 0 8px 40px rgba(33,43,54,0.18); }
.svc-card__title { color: #212B36; }
.svc-card__desc  { color: #637381; }
.svc-card__pill  { background: #DFE3E8; color: #212B36; }
.svc-card__tags span { color: #637381; }
.svc-card__cta   { background: #FF5A00; color: #FFFFFF; border-color: #FF5A00; }
.svc-card__cta:hover { background: #e04e00; border-color: #e04e00; }

.diff-item { background: #FFFFFF; border-color: rgba(33,43,54,0.10); }
.diff-item:hover { background: #DFE3E8; }
.diff-item h3 { color: #212B36; }
.diff-item p  { color: #637381; }
.diff-icon    { color: #FF5A00; }

.testi { background: #FFFFFF; border-color: rgba(33,43,54,0.10); }
.testi blockquote { color: #212B36; }
.testi-tag { background: rgba(255,90,0,0.1); color: #FF5A00; }
.testi footer { color: #637381; }

.client-logo-img { filter: grayscale(1) opacity(0.6); }
.client-logo-img:hover { filter: none; }

.about-text h2 { color: #212B36; }
.about-text p  { color: #637381; }
.about-fact strong { color: #212B36; }
.about-fact span   { color: #637381; }

.vid-features li { color: #212B36; }
.vid-kicker { color: #FF5A00; }
.vid-stat-n { color: #212B36; }
.vid-stat-l { color: #637381; }

#contacto { background: #212B36; }

.footer { background: #111820; border-top: 3px solid #FF5A00; }

.btn-primary { background: #FF5A00; }
.btn-primary:hover { background: #e04e00; }

#scroll-top { background: #DFE3E8; border-color: rgba(33,43,54,0.15); color: #FF5A00; }
#scroll-top:hover { background: #FF5A00; color: #FFFFFF; border-color: #FF5A00; }

