/* ==========================================================================
   SMART CITY LANDING CSS
   Basado en landing de Flotas — Se respetan: root, footer, form fields, modal
   ========================================================================== */

/* ==========================================================================
   1. VARIABLES Y CONFIGURACIÓN BASE (RESPECTADO)
   ========================================================================== */
:root {
    --navy: #0A1B45;
    --navy-deep: #060F2C;
    --cyan: #00A6FF;
    --teal: #00D9A6;
    --grad: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 100%);
    --bg-soft: #F4F7FC;
    --ink: #0A1B45;
    --ink-soft: #5B6478;
    --line: #E3E8F2;
    --radius: 18px;
    --red: #E15748;
    --red-soft: rgba(225,87,72,0.14);
    font-family: 'Nunito', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', sans-serif;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: 'Nunito', sans-serif; cursor: pointer; border: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.relative { position: relative; }
.z-10 { z-index: 10; }
.mt-40 { margin-top: 40px; }

/* Tipografía Base */
.eyebrow {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--cyan);
    display: inline-block;
    margin-bottom: 14px;
}
.eyebrow.red { color: var(--red); }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Screen reader only */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   2. BOTONES (RESPECTADO)
   ========================================================================== */
.btn {
    font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15px;
    padding: 15px 30px; border-radius: 999px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.btn-grad { background: var(--grad); color: #fff; box-shadow: 0 12px 28px rgba(0,166,255,0.30); }
.btn-grad:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0,166,255,0.4); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { transform: translateY(-2px); }

/* ==========================================================================
   3. HEADER Y MENÚ (RESPECTADO)
   ========================================================================== */
.navbar {
    position: sticky; top: 0; z-index: 500;
    background: rgba(10,27,69,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; object-fit: contain; }

.nav-links { display: flex; gap: 34px; }
.nav-links a { color: #cdd7ef; font-weight: 700; font-size: 14.5px; transition: color .2s; }
.nav-links a:hover { color: #fff; }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.nav-burger { display: none; background: transparent; color: #fff; font-size: 24px; cursor: pointer; border: none; }
.mobile-menu {
    display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; width: 100%;
    background: rgba(10,27,69,0.98); padding: 0 24px; max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.mobile-menu.open { max-height: 400px; padding: 20px 24px 30px; border-top: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.mobile-menu a { color: #fff; font-size: 16px; font-weight: 700; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu .btn-mobile-wsp { background: var(--grad); margin-top: 15px; text-align: center; border-radius: 10px; border-bottom: none; padding: 14px; color: #fff; }

/* ==========================================================================
   4. HERO SECTION (ADAPTADO PARA SMART CITY)
   ========================================================================== */
.hero {
    position: relative;
    background: linear-gradient(180deg, rgba(6, 15, 44, 0.768) 0%, rgba(18, 27, 65, 0.834) 55%, var(--navy-deep) 100%),
                url('https://www.geosatelital.com.pe/wp-content/uploads/2025/11/beneficios-reales-de-usar-geoprime-gps-para-autos-particulares-y-de-empresa-geosatelital.webp') center 30%/cover no-repeat,
                var(--navy-deep);
    padding: 56px 0 40px;
    overflow: hidden;
}
.hero::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(0,166,255,0.18), transparent 45%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative; 
    z-index: 2;
}

.hero-copy h1 {
    font-size: clamp(34px, 4.2vw, 54px);
    font-weight: 900;
    color: #fff;
    line-height: 1.06;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.hero-copy h1 em { 
    font-style: normal; 
    background: var(--grad); 
    -webkit-background-clip: text; 
    background-clip: text; 
    -webkit-text-fill-color: transparent; 
    color: transparent; 
    display: inline-block;
}

.hero-copy p {
    color: #c3cfe8;
    font-size: 16.5px;
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 580px;
    font-weight: 600;
}

.hero-icons {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px 18px;
    margin-top: 34px;
    max-width: 460px;
}
.hero-icon-item { display: flex; align-items: center; gap: 12px; }
.hero-icon-item .ic {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,166,255,0.25), rgba(0,217,166,0.18));
    border: 1px solid rgba(0,166,255,0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan); font-size: 15px;
    flex-shrink: 0;
}
.hero-icon-item span { color: #dbe4f7; font-size: 13.5px; font-weight: 700; line-height: 1.25; }

/* Formulario del Hero (RESPECTADO) */
.form-contact {
    background: #fff;
    border-radius: 22px;
    padding: 30px 26px 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 400px;
    justify-self: end;
}
.form-contact h2 { font-size: 21px; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.form-contact p.form-sub { color: var(--ink-soft); font-size: 13.5px; font-weight: 700; margin-bottom: 18px; }
.form-contact form { display: flex; flex-direction: column; gap: 12px; }

.hero-input {
    font-family: 'Nunito', sans-serif; width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--line); border-radius: 12px;
    font-size: 14.5px; font-weight: 700; color: var(--ink); background: #F9FBFF; outline: none;
    transition: border-color .2s;
}
.hero-input:focus { border-color: var(--cyan); background: #fff; }
.hero-input::placeholder { color: #9aa5bd; font-weight: 600; }

.form-contact select.hero-input {
  color: #9aa5bd; font-weight: 600; cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath fill='%235B6478' d='M0 0l7 9 7-9z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-contact select.hero-input:required:valid { color: var(--ink); font-weight: 700; }
.form-contact select.hero-input option { color: var(--ink); font-weight: 700; background: #fff; }

.form-contact button[type=submit] {
    margin-top: 6px; background: var(--grad); color: #fff; font-weight: 900;
    font-size: 15px; letter-spacing: 0.5px; padding: 15px; border-radius: 12px;
    box-shadow: 0 12px 26px rgba(0,166,255,0.35); transition: transform .2s ease;
    border: none; cursor: pointer;
}
.form-contact button[type=submit]:hover { transform: translateY(-2px); }

/* ==========================================================================
   CONSENTIMIENTO DE MARKETING - CSS (RESPECTADO)
   ========================================================================== */
.form-consent {
    margin: 14px 0 18px 0; text-align: left; width: 100%;
}
.consent-label {
    display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
    font-family: 'Nunito', sans-serif; font-size: 12.5px; font-weight: 600;
    color: var(--ink-soft); line-height: 1.45;
}
.consent-label input[type="checkbox"] {
    appearance: none; -webkit-appearance: none;
    width: 18px; height: 18px; border: 1.5px solid var(--line); border-radius: 5px;
    background: #F9FBFF; cursor: pointer; display: grid; place-content: center;
    margin-top: 1px; flex-shrink: 0; transition: background .2s, border-color .2s;
}
.consent-label input[type="checkbox"]::before {
    content: ""; width: 10px; height: 6px;
    border-left: 2px solid #fff; border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0); transition: transform 0.2s ease-in-out;
}
.consent-label input[type="checkbox"]:checked {
    background: var(--cyan); border-color: var(--cyan);
}
.consent-label input[type="checkbox"]:checked::before {
    transform: rotate(-45deg) scale(1);
}
.consent-label a { color: var(--cyan); font-weight: 700; text-decoration: underline; }
.consent-label a:hover { color: var(--navy); }

/* ==========================================================================
   5. TRUST BAR (ADAPTADO PARA SMART CITY)
   ========================================================================== */
.trust { background: var(--line); padding: 34px 0; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.trust-item b { display: block; font-size: 26px; font-weight: 900; color: var(--navy); }
.trust-item span { font-size: 12.5px; color: var(--ink-soft); font-weight: 700; }

/* ==========================================================================
   6. SECCIÓN INTRO / CONCEPTO (ADAPTADO)
   ========================================================================== */
.intro-band { position: relative; background: var(--navy); padding: 100px 0; }
.intro-header { max-width: 800px; margin: 0 auto 50px auto; }
.intro-header h2 { color: #fff; font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.intro-header p { color: #c3cfe8; font-size: 17px; line-height: 1.6; font-weight: 600; }
.intro-header p strong { color: var(--teal); }

.intro-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 30px;
}
.intro-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-content: stretch; }

.intro-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 35px 25px; border-radius: 20px;
    display: flex; flex-direction: column; justify-content: flex-start; height: 100%; 
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.intro-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.06); border-color: rgba(0,166,255,0.4); }

.intro-card-icon {
    width: 56px; height: 56px; border-radius: 16px; margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(0,166,255,0.15), rgba(0,217,166,0.15));
    color: var(--cyan); font-size: 24px; display: flex; align-items: center; justify-content: center;
}
.intro-card h3 { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.intro-card p { color: #9aa5bd; font-size: 15px; line-height: 1.6; font-weight: 600; }

.intro-image {
    position: relative; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    display: flex; height: 100%;
}
.intro-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.6s ease; }
.intro-image:hover img { transform: scale(1.04); }
.intro-image-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, var(--navy) 0%, transparent 50%); pointer-events: none; }

/* Insight bar (nuevo) */
.insight-bar {
    display: flex; align-items: center; gap: 14px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.06));
    border: 1px solid rgba(255,255,255,0.08); border-radius: 12px;
    padding: 18px 22px; margin-top: 24px;
    font-size: 14px; line-height: 1.5; color: #c3cfe8;
}
.insight-bar .ic { font-size: 22px; color: var(--teal); flex-shrink: 0; }
.insight-bar b { color: #fff; }

/* ==========================================================================
   7. SECCIÓN PROBLEMA / TECH CARDS (ADAPTADO)
   ========================================================================== */
.tech-section { padding: 100px 0; background: #fff; }
.tech-header { max-width: 750px; margin: 0 auto 50px auto; }
.tech-header h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 900; color: var(--navy); line-height: 1.25; margin-top: 10px; }
.tech-header p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; font-weight: 600; margin-top: 12px; }

.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.tech-card {
    background: #fff; border-radius: 20px; padding: 30px 24px; text-align: center;
    box-shadow: 0 10px 30px rgba(10,27,69,0.05); border: 1px solid var(--line);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.tech-card:hover { background-color: var(--ink); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,166,255,0.12); border-color: rgba(0,166,255,0.3); }

.tech-icon {
    width: 64px; height: 64px; border-radius: 50%; background: rgba(0,166,255,0.1); color: var(--cyan);
    font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto;
}
.tech-icon.red-icon { background: var(--red-soft); color: var(--red); }
.tech-card:hover .tech-icon { background: rgba(255,255,255,0.1); color: #fff; }
.tech-card:hover .tech-icon.red-icon { background: rgba(255,255,255,0.1); }

.tech-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.tech-card:hover h3 { color: #fff; }
.tech-card p { font-size: 14px; color: var(--ink-soft); font-weight: 600; line-height: 1.6; }
.tech-card:hover p { color: #c3cfe8; }

.card-src { display: block; font-size: 10.5px; color: var(--muted); font-style: italic; margin-top: 10px; }
.tech-card:hover .card-src { color: #7C8AA8; }

/* ==========================================================================
   8. SECCIÓN OPORTUNIDAD (ADAPTADO)
   ========================================================================== */
.remote-action-section {
    padding: 100px 0;
    background: var(--bg-soft);
}
.remote-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.remote-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 27, 69, 0.15);
}
.remote-media img { width: 100%; height: auto; object-fit: cover; }

.remote-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
}
.remote-content p {
    color: var(--ink-soft);
    font-size: 17.5px;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Trend band (nuevo) */
.trendband {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    background: var(--navy); border: 1px solid var(--line); border-radius: 12px;
    padding: 18px 8px; margin: 6px 0 28px 0;
}
.trend-item { text-align: center; padding: 6px 10px; border-right: 1px solid var(--line); }
.trend-item:last-child { border-right: none; }
.trend-item .v { font-weight: 900; font-size: clamp(16px, 1.7vw, 20px); color: var(--teal); margin-bottom: 6px; }
.trend-item .d { font-size: 11px; color: var(--ice-dim); line-height: 1.3; }

.remote-bullets {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.remote-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
}
.remote-bullets li strong { font-weight: 800; }
.remote-bullets .check-icon {
    background: var(--grad); color: #fff;
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    box-shadow: 0 6px 15px rgba(0, 166, 255, 0.25);
    flex-shrink: 0; margin-top: 2px;
}

/* ==========================================================================
   9. SECCIÓN SOLUCIÓN — PILARES (NUEVO)
   ========================================================================== */
.sol-wrap { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 24px; 
    max-width: 1100px; 
    margin: 0 auto;
}
.pillar {
    display: flex; flex-direction: column; gap: 18px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 35px 28px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.pillar:hover { transform: translateY(-5px); background: rgba(255,255,255,0.06); border-color: rgba(0,166,255,0.4); }
.pillar .badge {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 4px;
}
.pillar .badge.b1 { background: var(--red-soft); color: var(--red); }
.pillar .badge.b2 { background: rgba(0,166,255,0.14); color: var(--cyan); }
.pillar .badge.b3 { background: rgba(0,217,166,0.14); color: var(--teal); }
.pillar .title { font-weight: 900; font-size: 20px; color: #fff; margin: 0 0 10px 0; }
.pillar .body { font-size: 15px; color: #9aa5bd; font-weight: 600; line-height: 1.6; }

/* ==========================================================================
   10. SECCIÓN SERVICIOS — SMART CITY GRID (8 TARJETAS)
   ========================================================================== */
.smartcity-grid { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   11. SECCIÓN EL CAMINO — STEPS (NUEVO)
   ========================================================================== */
.training-section { padding: 100px 0; background: #fff; }
.training-header { max-width: 800px; margin: 0 auto 50px auto; text-align: center; }
.training-header h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.training-header p { color: var(--ink-soft); font-size: 17px; line-height: 1.6; font-weight: 600; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}
.step-card {
    background: var(--card); border: 1px solid var(--line); border-radius: 20px;
    padding: 32px 28px; position: relative;
    box-shadow: 0 10px 30px rgba(10,27,69,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,166,255,0.1); }
.step-card .n {
    position: absolute; top: 18px; right: 22px;
    font-weight: 900; font-size: 32px; color: rgba(10,27,69,0.08);
}
.step-card .badge {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(0,166,255,0.1); color: var(--cyan);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 18px;
}
.step-card .tag {
    font-weight: 800; font-size: 11px; letter-spacing: 1.2px;
    color: var(--cyan); text-transform: uppercase; margin-bottom: 6px;
}
.step-card h3 { font-weight: 900; font-size: 20px; color: var(--navy); margin: 0 0 10px 0; }
.step-card p { font-size: 14px; color: var(--ink-soft); font-weight: 600; line-height: 1.6; }

.impactband {
    display: flex; align-items: center; gap: 28px;
    background: var(--navy); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 28px 32px; margin-top: 20px;
    max-width: 1000px; margin-left: auto; margin-right: auto;
}
.impactband .v {
    font-weight: 900; font-size: clamp(24px, 3vw, 36px);
    color: var(--teal); flex-shrink: 0; white-space: nowrap;
}
.impactband .d { font-size: 14px; color: #c3cfe8; font-weight: 600; line-height: 1.55; }

/* ==========================================================================
   . CLIENTS SLIDER INFINITO
   ========================================================================== */
.clients-slider {
    padding: 80px 0; background: #ffffff; border-bottom: 1px solid var(--line); overflow: hidden;
}
.clients-header { text-align: center; margin-bottom: 40px; }
.clients-header .eyebrow { display: inline-block; margin-bottom: 12px; }
.clients-header h2 { font-size: clamp(24px, 3.2vw, 36px); font-weight: 900; color: var(--navy); max-width: 800px; margin: 0 auto; line-height: 1.25; }

.slider-container {
    width: 100%; position: relative; padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.slider-track { display: flex; align-items: center; gap: 70px; width: max-content; }
.slide { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.slide img {
    height: 60px; width: auto; object-fit: contain;
    filter: grayscale(100%) opacity(0.5); transition: filter 0.3s ease, transform 0.3s ease;
}
.slide img:hover { filter: grayscale(0%) opacity(1); transform: scale(1.05); }

@keyframes scrollSlider { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 35px)); } }
.slider-track.animate { animation: scrollSlider 30s linear infinite; }
.slider-track.animate:hover { animation-play-state: paused; }

/* ==========================================================================
   12. CTA FINAL (RESPECTADO)
   ========================================================================== */
.cta-final-section {
    position: relative; padding: 120px 0; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.cta-final-bg { position: absolute; inset: 0; z-index: 1; }
.cta-final-bg img { 
    width: 100%; height: 100%; object-fit: cover; object-position: center 40%; 
}
.cta-final-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,15,44,0.92) 0%, rgba(10,27,69,0.75) 100%); }

.cta-final-content { position: relative; z-index: 2; max-width: 850px; margin: 0 auto; }
.cta-final-content h2 { color: #ffffff; font-size: clamp(30px, 4vw, 48px); font-weight: 900; line-height: 1.15; margin-bottom: 24px; }
.cta-final-content p { color: #c3cfe8; font-size: 18px; line-height: 1.6; font-weight: 600; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   13. FOOTER (RESPECTADO INTEGRALMENTE)
   ========================================================================== */
.footer { background: var(--navy-deep); padding: 56px 0 30px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 30px; }
.footer-logo img { max-width: 200px; height: auto; object-fit: contain; margin: 0 auto; }

.footer-social { display: flex; gap: 14px; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center; color: #cdd7ef;
    transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--grad); color: #fff; }

.footer-copyright { display: flex; align-items: center; justify-content: center; gap: 18px; padding: 20px 0; width: 100%; }
.footer-copyright .line { flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.footer-copyright p { color: #8fa3d6; font-size: 13px; font-weight: 700; white-space: nowrap; text-align: center; }

.footer-links { text-align: center; }
.footer-links a { color: #8fa3d6; font-size: 12.5px; font-weight: 700; }
.footer-links a:hover { color: #fff; }
.footer-links .separator { color: #3c4a76; margin: 0 10px; font-size: 12px; }

/* ==========================================================================
   14. MODAL DE ÉXITO (RESPECTADO INTEGRALMENTE)
   ========================================================================== */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(6, 15, 44, 0.85); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999; opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-box {
    background: #fff; border-radius: 24px; padding: 40px 30px;
    max-width: 400px; width: 90%; text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }

.modal-icon { font-size: 60px; color: #25D366; margin-bottom: 20px; }
.modal-box h3 { color: var(--navy); font-size: 24px; font-weight: 900; margin-bottom: 12px; }
.modal-box p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; font-weight: 600; margin-bottom: 26px; }
.modal-box button { width: 100%; justify-content: center; }

/* ==========================================================================
   15. MEDIA QUERIES (RESPECTADAS + NUEVAS SECCIONES)
   ========================================================================== */

/* Tablets Horizontales */
@media (max-width: 1080px) {
    .intro-layout { grid-template-columns: 1fr; gap: 40px; }
    .intro-image { min-height: 400px; order: -1; }
    .remote-action-grid { grid-template-columns: 1fr; gap: 40px; }
    .remote-media { order: -1; }
    .sol-wrap { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
}

/* Tablets Verticales */
@media (max-width: 992px) {
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .smartcity-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Celulares Grandes */
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none !important; }
    .navbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
    .brand img { max-width: 160px; height: auto; }
    .nav-burger { display: block; }

    .hero { padding: 34px 0 30px; }
    .hero-grid { grid-template-columns: 1fr; gap: 0; }
    .hero-copy h1 br, .hero-copy p br { display: none; }
    .form-contact { justify-self: center; max-width: 100%; margin-top: 30px; }
    .hero-icons { max-width: 100%; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }

    .intro-band { padding: 60px 0; }
    .intro-cards-grid { grid-template-columns: 1fr; }
    .intro-card { padding: 30px 24px; }
    .intro-image { min-height: 280px; }

    .trendband { grid-template-columns: 1fr; gap: 14px 0; }
    .trend-item { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
    .trend-item:last-child { border-bottom: none; }

    .impactband { flex-direction: column; text-align: center; gap: 14px; }

    .cta-final-section { padding: 80px 0; }
    .cta-final-content p { font-size: 16px; margin-bottom: 30px; }

    .footer-top { flex-direction: column; gap: 18px; text-align: center; }
    .footer-copyright { flex-direction: column; justify-content: center !important; align-items: center !important; gap: 8px; }
    .footer-copyright .line { display: none; }
    .footer-copyright p { margin: 0 auto; }
    .footer-links a { display: inline-block; margin: 4px 0; }
}

/* Celulares Pequeños */
@media (max-width: 576px) {
    .tech-grid { grid-template-columns: 1fr; }
    .smartcity-grid { grid-template-columns: 1fr; }
    .training-section { padding: 60px 0; }
    .remote-action-section { padding: 60px 0; }
}