:root {
    --brand: #FFBC02;
    --brand-hover: #E5A800;
    --brand-soft: rgba(255, 188, 2, 0.12);
    --dark: #0F172A;
    --dark-soft: #1E293B;
    --surface: #FFFFFF;
    --surface-muted: #F8FAFC;
    --surface-alt: #F1F5F9;
    --text: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --border: #E2E8F0;
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --header-h: 112px;
    --section-py: clamp(4rem, 8vw, 6rem);
    --container-max: 1140px;
    --poppins: "Poppins", system-ui, sans-serif;
    --kanit: "Kanit", system-ui, sans-serif;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    /* Legacy aliases */
    --yellow-primary: var(--brand);
    --yellow-secondary: var(--brand-hover);
    --white: var(--surface);
    --black: var(--dark);
    --gray: var(--text-muted);
    --gray-second: var(--text-muted);
    --body-bg: var(--surface-muted);
    --footer: var(--dark);
    --gray-dark: var(--dark-soft);
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--poppins);
    background-color: var(--surface-muted);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    transition: box-shadow var(--transition), padding var(--transition);
}

.site-header.is-scrolled .site-navbar {
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark) !important;
    text-decoration: none;
}

.site-brand .brand-accent {
    color: var(--brand);
}

img.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.site-navbar .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.is-active {
    color: var(--dark) !important;
    background: var(--brand-soft);
}

.site-navbar .nav-link.is-active {
    font-weight: 600;
}

.navbar-cta .btn-primary {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 999px;
    white-space: nowrap;
}

/* ── Buttons ── */
.btn {
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--brand);
    border: none;
    color: var(--dark);
    box-shadow: 0 4px 14px rgba(255, 188, 2, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--brand-hover);
    color: var(--dark);
    box-shadow: 0 6px 20px rgba(255, 188, 2, 0.45);
}

.btn-outline-dark {
    border: 2px solid var(--border);
    color: var(--dark);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--surface);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

/* ── Section system ── */
.page-section {
    padding: var(--section-py) 0;
}

.page-section--alt {
    background: var(--surface);
}

.section-header {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-hover);
    background: var(--brand-soft);
    padding: 0.35rem 0.875rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.section-header .title-section {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.section-header--light .section-eyebrow {
    background: rgba(255, 255, 255, 0.15);
    color: var(--brand);
}

.section-header--light .section-subtitle,
.section-header--light .title-section {
    color: var(--surface);
}

/* ── Hero ── */
.hero-section {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 188, 2, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(15, 23, 42, 0.04) 0%, transparent 50%),
        var(--surface-muted);
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark-soft);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.4rem 0.875rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    color: var(--brand-hover);
}

.hero-brand {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.title-section-home {
    font-family: var(--kanit);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.25rem;
    position: relative;
}

.title-section-home::after {
    display: none;
}

.hero-lead,
.text-section {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-top: 0;
    text-align: left;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin: 2rem 0;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.hero-feature i {
    font-size: 1.25rem;
    color: var(--brand-hover);
    margin-bottom: 0.5rem;
    display: block;
}

.hero-feature strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    background: linear-gradient(135deg, var(--brand-soft), rgba(255, 188, 2, 0.25));
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.hero-phone-wrap {
    position: relative;
    z-index: 1;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

img.img-app {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
}

.logos-apps-store {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0;
}

.logos-apps-store--compact {
    margin-top: 0.5rem;
}

img.logo-store {
    width: 140px;
    height: auto;
    transition: transform var(--transition);
}

img.logo-store:hover {
    transform: translateY(-2px);
}

.title-section-sm {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0;
}

/* ── Cards ── */
.card-servicio,
.card-beneficio,
.card-paso,
.card-contacto {
    background: var(--surface);
    border: 1px solid var(--border) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    height: 100%;
}

.card-servicio:hover,
.card-beneficio:hover,
.card-paso:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 188, 2, 0.35) !important;
}

.card-servicio {
    padding: 2rem;
    width: 100%;
}

.card-beneficio {
    padding: 1.5rem;
}

.card-servicio-container {
    display: flex;
    margin-bottom: 1.5rem;
}

.card-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-soft);
    border-radius: var(--radius);
}

img.icon-servicio {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.title-section {
    font-family: var(--kanit);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    line-height: 1.25;
}

.title-section-second {
    font-family: var(--kanit);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-soft);
    text-align: center;
    margin-top: 0;
    line-height: 1.4;
}

.card-servicio .text-section,
.card-beneficio .text-section {
    font-size: 0.9375rem;
    margin-top: 0.75rem;
    text-align: center;
}

.title-section-sm-yellow {
    font-family: var(--kanit);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    margin: 0.75rem 0 0.5rem;
}

/* ── Servicios ── */
.servicios {
    background: var(--surface);
    padding: var(--section-py) 0;
    background-image: none;
}

.servicios::before {
    content: none;
}

/* ── Quienes somos ── */
.quienes-somos {
    padding: var(--section-py) 0;
    background: var(--surface-muted);
}

.quienes-somos-logo {
    width: min(100%, 320px);
    display: block;
    margin: 0 auto;
    filter: drop-shadow(var(--shadow));
}

.text-centrado {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.about-highlight-item i {
    font-size: 1.25rem;
    color: var(--brand-hover);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.about-highlight-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Valores ── */
.valores {
    position: relative;
    padding: var(--section-py) 0;
    background: url('../img/fondo4.jpg') center / cover no-repeat;
}

.valores::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.78) 100%);
}

.valores > .container {
    position: relative;
    z-index: 1;
}

.valores .title-section {
    color: var(--surface);
}

.valores .title-section-sm-yellow,
.valores h3.title-section {
    color: var(--brand);
    font-size: 1.25rem;
    text-align: left;
}

.white {
    color: rgba(255, 255, 255, 0.88) !important;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.valor-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 1.75rem;
    backdrop-filter: blur(8px);
}

.valor-card h3 {
    font-family: var(--kanit);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 0.75rem;
}

.valor-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.valores .row {
    margin: 0 !important;
}

.valores .col-md-6 {
    width: auto;
}

/* ── Cómo funciona ── */
.como-funciona {
    padding: var(--section-py) 0;
    background: var(--surface);
}

.paso-como-funciona {
    margin-top: 1rem;
}

.paso-como-funciona i {
    font-size: 1.75rem;
    color: var(--brand-hover);
}

.card-paso {
    padding: 1.25rem;
}

.card-paso .text-section {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    text-align: center;
}

.img-paso-container {
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

img.img-paso {
    max-width: 260px;
    margin: 0 auto;
    display: block;
}

.download-panel {
    text-align: center;
    margin-top: 1.5rem;
}

.download-panel p {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

/* ── Planes / CTA ── */
.planes {
    padding: var(--section-py) 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
}

.planes .title-section {
    color: var(--surface);
}

.cta-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3.5rem);
    backdrop-filter: blur(8px);
}

.cta-card .subtitle-lanzamiento {
    color: var(--surface);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin: 1rem 0 0.5rem;
}

.cta-card .cta-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.img-lanzamiento {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.planes .logos-apps-store {
    justify-content: center;
}

/* ── Contacto ── */
.contacto {
    padding: var(--section-py) 0;
    background: var(--surface-muted);
}

.contacto .title-section {
    text-align: left;
}

.contacto .text-section {
    text-align: left;
}

.contact-info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.iconos-contacto {
    font-style: normal;
    margin-top: 0;
}

.icon-contacto {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
}

.icon-contacto:last-child {
    border-bottom: none;
}

.icon-contacto i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-soft);
    color: var(--brand-hover);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.icon-contacto .text-section,
.icon-contacto p {
    margin: 0;
    font-size: 0.9375rem;
    text-align: left;
}

.icon-contacto a {
    color: var(--dark);
    text-decoration: none;
}

.icon-contacto a:hover {
    color: var(--brand-hover);
}

.form-contacto {
    width: 100%;
}

.form-contacto-container {
    display: flex;
    align-items: stretch;
}

.card-contacto {
    padding: 2rem;
    width: 100%;
}

.card-contacto .title-section {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.form-control {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    background: var(--surface-muted);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
    background: var(--surface);
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft);
}

.form-control::placeholder {
    color: var(--text-light);
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-soft);
    margin-bottom: 0.375rem;
}

.quienes-somos .title-section-home {
    text-align: left;
}

.logos-apps-store.justify-content-center {
    justify-content: center;
}

/* ── Footer ── */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 4rem;
}

.footer-grid {
    padding-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--surface);
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 360px;
}

.footer-heading {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--surface);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--brand);
}

.icons-redes-sociales {
    display: flex;
    gap: 0.625rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--surface) !important;
    transition: background var(--transition), transform var(--transition);
}

.social-link:hover {
    background: var(--brand);
    color: var(--dark) !important;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.125rem;
    background: none;
    padding: 0;
}

.footer-stores {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* ── Pago pages ── */
.pago {
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.title-lg {
    font-family: var(--kanit);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--dark);
    margin-top: 1.5rem;
}

.text-pago {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

img.img-pago {
    width: min(100%, 280px);
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
}

/* ── Modals ── */
.modal-content {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.btns-modal {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.btn.btn-secondary {
    background: var(--surface-alt);
    color: var(--dark);
}

/* ── Legacy / utilities ── */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
}

.skip-link:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    background: var(--brand);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.touch-target,
.touch-target-inline,
.navbar-toggler,
.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-link.touch-target {
    min-width: auto;
}

.touch-target-input,
.form-control {
    min-height: 48px;
    font-size: 16px;
}

textarea.touch-target-input {
    min-height: 120px;
}

img.img-paso,
img.img-lanzamiento,
img.icon-servicio,
img.logo-store,
.quienes-somos-logo {
    max-width: 100%;
    height: auto;
}

img.img-app {
    aspect-ratio: 27 / 32;
}

img.img-paso {
    aspect-ratio: 1 / 2;
}

/* Remove old nav hover block fill */
.nav-item:hover,
.nav-item:hover .nav-link {
    background: transparent;
}

.navbar {
    padding: 0;
}

.menu-footer-container,
.margin-footer,
.logo-container-footer,
.text-gray,
.title-footer,
.menu-footer,
.footer-copy,
.footer-options {
    /* legacy – overridden by site-footer */
}

.card-plan-container { margin-bottom: 1.5rem; }
.card-plan { border-radius: var(--radius); border: 1px solid var(--border); }
.card-plan:hover { transform: translateY(-2px); }

/* ══════════════════════════════════════
   PREMIUM LAYER
   ══════════════════════════════════════ */

/* Top bar */
.top-bar {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    text-align: center;
}

.top-bar__badge {
    background: var(--brand);
    color: var(--dark);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.top-bar__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.top-bar__link {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.top-bar__link:hover {
    color: var(--surface);
}

/* Nav pills */
.nav-pills-wrap {
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.25rem;
}

.nav-pills-wrap .navbar-nav {
    flex-direction: row;
    gap: 0.125rem;
}

.nav-pills-wrap .nav-link {
    border-radius: 999px !important;
    padding: 0.45rem 0.875rem !important;
    font-size: 0.875rem;
}

.nav-pills-wrap .nav-link.is-active {
    background: var(--surface) !important;
    box-shadow: var(--shadow-sm);
    color: var(--dark) !important;
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--dark);
    border-radius: 999px;
    width: 40px;
    height: 40px;
    padding: 0;
}

.btn-ghost:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

/* Hero premium */
.hero-section {
    position: relative;
    padding-top: clamp(2.5rem, 5vw, 4rem);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 80%);
    pointer-events: none;
}

.hero-lead {
    font-size: 1.125rem;
    max-width: 520px;
}

.hero-trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-bottom: 1.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.hero-trust-line span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
}

.hero-trust-line i {
    color: var(--brand-hover);
}

.hero-float {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.625rem 0.875rem;
    box-shadow: var(--shadow);
    animation: float 4s ease-in-out infinite;
}

.hero-float i {
    font-size: 1.125rem;
    color: var(--brand-hover);
}

.hero-float strong {
    display: block;
    font-size: 0.875rem;
    color: var(--dark);
    line-height: 1.2;
}

.hero-float span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-float--top {
    top: 8%;
    left: -4%;
    animation-delay: 0s;
}

.hero-float--bottom {
    bottom: 12%;
    right: -2%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Trust bar */
.trust-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 0;
    margin-top: -1px;
}

.trust-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.trust-item__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-soft);
    border-radius: var(--radius-sm);
    color: var(--brand-hover);
    font-size: 1.125rem;
}

.trust-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.125rem;
}

.trust-item span {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Pro cards */
.pro-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    overflow: hidden;
}

.pro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-hover));
    opacity: 0;
    transition: opacity var(--transition);
}

.pro-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 188, 2, 0.3);
}

.pro-card:hover::before {
    opacity: 1;
}

.pro-card--featured .card-icon-wrap {
    margin: 0 0 1.25rem;
}

.pro-card--featured .title-section-second,
.pro-card--featured .text-section {
    text-align: left;
}

.pro-card__number {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-family: var(--kanit);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--surface-alt);
    line-height: 1;
}

.pro-card__list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}

.pro-card__list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.pro-card__list i {
    color: var(--brand-hover);
    font-weight: 700;
}

.pro-card--compact {
    padding: 1.5rem;
    text-align: center;
}

.pro-card--compact .card-icon-wrap--sm {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
}

.card-icon-wrap--sm i {
    font-size: 1.25rem;
    color: var(--brand-hover);
}

.pro-card--compact .title-section-second {
    font-size: 1rem;
}

.pro-card--compact .text-section {
    font-size: 0.8125rem;
    margin-top: 0.5rem;
}

/* Process timeline */
.process-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--brand) 0%, var(--border) 100%);
}

.process-step {
    display: flex;
    gap: 1.25rem;
    padding-bottom: 1.75rem;
    position: relative;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step__marker {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    color: var(--brand);
    font-family: var(--kanit);
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 50%;
    border: 3px solid var(--surface);
    box-shadow: 0 0 0 2px var(--brand-soft);
    z-index: 1;
}

.process-step__body h3 {
    font-family: var(--kanit);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.375rem;
}

.process-step__body p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.process-panel {
    position: relative;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    overflow: hidden;
}

.process-panel__glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--brand);
    opacity: 0.15;
    filter: blur(60px);
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.download-panel__sub {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Testimonials */
.quote-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}

.quote-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.quote-card__stars {
    color: var(--brand);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.quote-card p {
    font-size: 0.9375rem;
    color: var(--dark-soft);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.quote-card footer strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--dark);
}

.quote-card footer span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* CTA banner */
.planes {
    background: var(--surface-muted);
}

.cta-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, #162032 50%, var(--dark-soft) 100%);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 188, 2, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.section-eyebrow--dark {
    background: rgba(255, 188, 2, 0.15);
    color: var(--brand);
}

.cta-banner__title {
    font-family: var(--kanit);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--surface);
    margin: 0.75rem 0;
    line-height: 1.2;
}

.cta-banner__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-banner__visual {
    position: relative;
    z-index: 1;
}

.cta-banner__visual .img-lanzamiento {
    width: 140px;
    height: 140px;
    filter: drop-shadow(0 8px 24px rgba(255, 188, 2, 0.25));
}

/* Footer accent */
.footer-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-hover), var(--brand));
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1020;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
    color: white;
}

/* Contact premium */
.contacto .section-header .title-section,
.contacto .section-header .section-subtitle {
    text-align: center;
}

.contact-info-card {
    height: 100%;
    margin-top: 0;
}

.card-contacto {
    border-top: 3px solid var(--brand);
}

/* Map search differentiator */
.map-feature {
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 100% 50%, rgba(255, 188, 2, 0.08) 0%, transparent 55%),
        var(--surface-muted);
}

.map-feature__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.map-feature__list {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0;
}

.map-feature__list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.map-feature__list li:last-child {
    border-bottom: none;
}

.map-feature__list > i,
.map-feature__list li > i {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-soft);
    color: var(--brand-hover);
    border-radius: var(--radius-sm);
    font-size: 1.125rem;
}

.map-feature__list strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.map-feature__list span {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.map-feature__showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.device-frame {
    position: relative;
    width: min(100%, 300px);
    background: var(--dark);
    border-radius: 36px;
    padding: 10px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.08);
    z-index: 2;
}

.device-frame__notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: var(--dark);
    border-radius: 0 0 14px 14px;
    z-index: 3;
}

.device-frame__screen {
    width: 100%;
    height: auto;
    border-radius: 28px;
    display: block;
}

.map-feature__demo {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 260px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.map-feature__demo-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.875rem;
}

.map-feature__demo-label i {
    color: #22c55e;
}

.map-feature__demo-label span {
    color: var(--brand-hover);
}

.map-radius-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.map-radius-chip {
    border: 1px solid var(--border);
    background: var(--surface-muted);
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--transition);
}

.map-radius-chip:hover {
    border-color: var(--brand);
    color: var(--dark);
}

.map-radius-chip.is-active {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--dark);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 188, 2, 0.35);
}

.map-feature__demo-hint {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0.875rem 0 0;
}

.pro-card--highlight {
    border-color: rgba(255, 188, 2, 0.45);
    background: linear-gradient(180deg, rgba(255, 188, 2, 0.06) 0%, var(--surface) 40%);
}

.pro-card--highlight .card-icon-wrap--sm i {
    font-size: 1.25rem;
    color: var(--brand-hover);
}

/* Interactive map simulator */
.map-simulator {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 560px;
    margin: 0 auto;
}

.map-simulator__appbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--brand);
    color: var(--dark);
    padding: 0.875rem 1rem;
    font-family: var(--kanit);
    font-weight: 700;
    font-size: 1rem;
}

.map-simulator__back {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.map-simulator__map {
    height: 320px;
    width: 100%;
    background: var(--surface-alt);
    z-index: 1;
}

.map-simulator__panel {
    padding: 1rem 1.25rem 1.25rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    transition: opacity 0.3s ease;
}

.map-simulator__panel.is-searching {
    opacity: 0.85;
}

.map-simulator__panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    flex-wrap: wrap;
}

.map-simulator__radius-badge {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark);
}

.map-simulator__radius-badge i {
    color: #22c55e;
}

.map-simulator__radius-badge span {
    color: var(--brand-hover);
}

.map-simulator__results-badge {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--brand-soft);
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
}

.map-simulator__results-badge span {
    color: var(--dark);
}

.map-simulator__controls {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.map-simulator__select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    background: var(--surface-muted);
    color: var(--dark);
}

.map-simulator__search-row {
    display: flex;
    gap: 0.5rem;
}

.map-simulator__input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0 0.875rem;
    background: var(--surface-muted);
}

.map-simulator__input-wrap i {
    color: var(--text-light);
    font-size: 0.875rem;
}

.map-simulator__input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    min-height: 44px !important;
    font-weight: 600;
    width: 100%;
}

.map-simulator__unit {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.map-simulator__search-btn {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--dark-soft);
    color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: background var(--transition), transform var(--transition);
}

.map-simulator__search-btn:hover {
    background: var(--dark);
}

.map-simulator__search-btn.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.map-simulator__search-btn.is-loading i {
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.map-simulator__hint {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0.75rem 0 0;
}

.map-simulator__results {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    max-height: 180px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.map-result-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background var(--transition);
}

.map-result-item:last-child {
    border-bottom: none;
}

.map-result-item:hover {
    background: var(--brand-soft);
}

.map-result-item__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--brand-soft);
    color: var(--brand-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-result-item strong {
    display: block;
    font-size: 0.8125rem;
    color: var(--dark);
}

.map-result-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.map-result-empty {
    padding: 1rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
}

/* Leaflet marker overrides */
.map-center-marker {
    background: var(--brand);
    border: 3px solid var(--surface);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.map-center-marker i {
    transform: rotate(45deg);
    color: var(--dark);
    font-size: 1rem;
}

.map-equipment-marker {
    background: var(--surface);
    border: 2px solid var(--brand);
    border-radius: 50%;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.map-equipment-marker i {
    color: var(--brand-hover);
    font-size: 1rem;
}

.map-equipment-marker--active {
    transform: scale(1);
    opacity: 1;
}

.map-equipment-marker--dim {
    opacity: 0.35;
    transform: scale(0.85);
}

.leaflet-container {
    font-family: var(--poppins);
}

.leaflet-popup-content-wrapper {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

.leaflet-popup-content {
    margin: 0.625rem 0.875rem;
    font-size: 0.8125rem;
    line-height: 1.5;
}
