:root {
    --rl-navy: #0B1240;
    --rl-navy-2: #070D2C;
    --rl-indigo: #5538F9;
    --rl-purple: #8B37F5;
    --rl-cyan: #16D1FE;
    --rl-white: #FFFFFF;
    --rl-bg: #F5F6FC;
    --rl-text: #1F2547;
    --rl-muted: #5B637A;
    --rl-border: #E2E8F0;
    --rl-card: #FFFFFF;
    --rl-green: #22C55E;
    --rl-amber: #F59E0B;
    --rl-radius: 22px;
    --rl-radius-sm: 14px;
    --rl-shadow: 0 24px 80px rgba(11,18,64,.14);
    --rl-shadow-soft: 0 16px 50px rgba(31,37,71,.08);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    color: var(--rl-text);
    background: #fff;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%
}

a {
    text-decoration: none
}

.container {
    max-width: 1180px
}

.rl-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226,232,240,.82);
}

.rl-header__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.rl-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto
}

    .rl-logo img {
        display: block;
        width: 150px;
        height: auto
    }

.rl-nav {
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

    .rl-nav a {
        color: var(--rl-text);
        font-weight: 700;
        font-size: 14px;
    }

        .rl-nav a:hover {
            color: var(--rl-indigo)
        }

.rl-header__cta {
    flex: 0 0 auto
}

.rl-menu-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--rl-border);
    border-radius: 12px;
    background: #fff;
    color: var(--rl-text);
}

    .rl-menu-toggle i {
        font-size: 24px
    }

.rl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    border: 1.5px solid transparent;
    transition: transform .16s ease,background .16s ease,border .16s ease,color .16s ease;
}

    .rl-btn:hover {
        transform: translateY(-1px)
    }

.rl-btn-primary {
    color: #fff;
    background: linear-gradient(135deg,var(--rl-purple),var(--rl-indigo) 55%,var(--rl-cyan));
    box-shadow: 0 14px 34px rgba(85,56,249,.28);
}

    .rl-btn-primary:hover {
        color: #fff;
        box-shadow: 0 18px 44px rgba(85,56,249,.34)
    }

.rl-btn-outline-light {
    border-color: rgba(255,255,255,.32);
    color: #fff;
    background: rgba(255,255,255,.06)
}

    .rl-btn-outline-light:hover {
        background: rgba(255,255,255,.12);
        color: #fff
    }

.rl-btn-light {
    background: #fff;
    color: var(--rl-indigo);
    box-shadow: 0 14px 34px rgba(0,0,0,.18)
}

    .rl-btn-light:hover {
        color: var(--rl-indigo)
    }

.rl-kicker {
    margin-bottom: 14px;
    color: var(--rl-indigo);
    text-transform: uppercase;
    /* letter-spacing:.08em;*/
    font-size: 12px;
    font-weight: 800;
}

.rl-kicker-light {
    color: rgba(255,255,255,.78)
}

.rl-section {
    padding: 112px 0;
}

    .rl-section + .rl-section {
        padding-top: 88px
    }

.rl-section-title {
    margin: 0;
    font-size: clamp(32px,4vw,52px);
    line-height: 1.05;
    /*letter-spacing:-.035em;*/
    font-weight: 800;
    color: var(--rl-text);
}

.rl-section-lead {
    margin: 24px 0 0;
    font-size: 20px;
    line-height: 1.55;
    color: var(--rl-muted);
}

.rl-section-text {
    margin: 18px 0 0;
    color: var(--rl-muted);
}

.rl-section-head {
    margin-bottom: 52px
}

.rl-section-head-center {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto
}

.rl-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    display: flex;
    align-items: center;
    color: #fff;
    background: var(--rl-navy);
    padding: 92px 0 86px;
}

.rl-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(7,13,44,.94) 0%,rgba(7,13,44,.84) 42%,rgba(7,13,44,.58) 100%), url('../img/fondo6.jpg');
    background-size: cover;
    background-position: center;
}

.rl-hero .container {
    position: relative;
    z-index: 1
}

.rl-hero__title {
    margin: 0;
    font-size: clamp(44px,5vw,70px);
    line-height: .98;
    /* letter-spacing:-.045em;*/
    font-weight: 800;
}

    .rl-hero__title span {
        background: linear-gradient(120deg,var(--rl-purple),var(--rl-cyan));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.rl-hero__lead {
    margin: 28px 0 0;
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255,255,255,.86);
}

.rl-hero__support {
    margin: 18px 0 0;
    color: rgba(255,255,255,.68);
}

.rl-hero__actions {
    margin-top: 34px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.rl-hero__micro {
    margin-top: 32px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 580px;
    color: rgba(255,255,255,.74);
    font-size: 14px;
    margin-left: 30px;
}

    .rl-hero__micro i {
        font-size: 24px;
        color: var(--rl-cyan);
        margin-top: 1px
    }

.rl-hero-mockup {
    position: relative;
    margin-left: 12px;
    border-radius: 28px;
    padding: 10px;
    background: linear-gradient(135deg,rgba(255,255,255,.24),rgba(255,255,255,.06));
    box-shadow: 0 42px 120px rgba(0,0,0,.42);
}

    .rl-hero-mockup::before {
        content: "";
        position: absolute;
        inset: -28px -30px auto auto;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(22,209,254,.22),transparent 68%);
    }

    .rl-hero-mockup img {
        position: relative;
        display: block;
        border-radius: 20px;
        width: 100%;
    }

.rl-problem {
    background: #fff
}

.rl-problem-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 36px;
    padding-right: 36px;
    border-left: 1px solid var(--rl-border);
}

.rl-problem-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 22px;
    align-items: center;
    padding: 24px 0;
}

    .rl-problem-item + .rl-problem-item {
        border-top: 1px solid var(--rl-border)
    }

    .rl-problem-item h3 {
        font-size: 22px;
        line-height: 1.15;
        margin: 0 0 8px;
        font-weight: 800
    }

    .rl-problem-item p {
        margin: 0;
        color: var(--rl-muted)
    }

.rl-illustration-badge {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#F3F0FF,#E7FBFF);
    color: var(--rl-indigo);
}

    .rl-illustration-badge i {
        font-size: 38px
    }

.rl-flow-section {
    background: linear-gradient(180deg,#fff 0%,var(--rl-bg) 100%)
}

.rl-flow-slider-wrap, .rl-applications, .rl-directors {
    position: relative
}

.rl-flow-card {
    height: 100%;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--rl-border);
    border-radius: var(--rl-radius);
    background: #fff;
    box-shadow: var(--rl-shadow-soft);
}

.rl-step-number {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg,var(--rl-purple),var(--rl-indigo));
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

.rl-flow-card h3 {
    font-size: 26px;
    line-height: 1.16;
    font-weight: 800;
    margin: 0 0 14px
}

.rl-flow-card p {
    color: var(--rl-muted);
    margin: 0 0 26px
}

.rl-flow-card img {
    margin-top: auto;
    border-radius: 16px;
    border: 1px solid rgba(226,232,240,.7);
    box-shadow: 0 18px 46px rgba(11,18,64,.12);
}

.rl-slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.rl-slider-controls-left {
    justify-content: flex-start;
    margin-top: 20px
}

.rl-slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--rl-border);
    background: #fff;
    color: var(--rl-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .rl-slider-btn:hover {
        color: var(--rl-indigo);
        border-color: rgba(85,56,249,.35)
    }

    .rl-slider-btn i {
        font-size: 20px
    }

.swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 7px
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #BBC2D6;
    opacity: 1
}

.swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 999px;
    background: var(--rl-indigo)
}

.rl-platform {
    background: #fff
}

.rl-feature-layout {
    display: grid;
    grid-template-columns: minmax(0,1.1fr) minmax(340px,.9fr);
    gap: 28px;
}

.rl-feature-large, .rl-feature-row {
    border: 1px solid var(--rl-border);
    background: #fff;
    box-shadow: var(--rl-shadow-soft);
}

.rl-feature-large {
    overflow: hidden;
    border-radius: var(--rl-radius);
    display: grid;
    grid-template-columns: .78fr 1fr;
    gap: 0;
    min-height: 420px;
}

    .rl-feature-large > div {
        padding: 38px
    }

    .rl-feature-large img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: left center
    }

.rl-feature-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEF2FF;
    color: var(--rl-indigo);
    margin-bottom: 28px;
}

    .rl-feature-icon i {
        font-size: 34px
    }

.rl-feature-large h3, .rl-feature-row h3 {
    font-size: 26px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 14px
}

.rl-feature-large p, .rl-feature-row p {
    color: var(--rl-muted);
    margin: 0
}

.rl-feature-stack {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.rl-feature-row {
    border-radius: var(--rl-radius-sm);
    padding: 26px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    align-items: start;
}

    .rl-feature-row i {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg,#F4F1FF,#E9FBFF);
        color: var(--rl-indigo);
        font-size: 30px;
    }

    .rl-feature-row h3 {
        font-size: 22px;
        margin-bottom: 8px
    }

.rl-directors {
    background: linear-gradient(180deg,#fff 0%,var(--rl-bg) 100%)
}

.rl-directors-card {
    padding: 46px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--rl-border);
    box-shadow: var(--rl-shadow-soft);
}

.rl-check-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: flex;
    flex-direction: column;
    gap: 18px
}

    .rl-check-list li {
        display: flex;
        gap: 12px;
        color: var(--rl-muted)
    }

    .rl-check-list i {
        font-size: 24px;
        color: var(--rl-indigo);
        margin-top: 2px
    }

    .rl-check-list strong {
        color: var(--rl-text)
    }

.rl-view-swiper img {
    display: block;
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--rl-border);
    box-shadow: 0 24px 70px rgba(11,18,64,.15);
}

.rl-benefits {
    background: #fff;
    padding-top: 70px;
    padding-bottom: 70px
}

.rl-benefit-strip {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

    .rl-benefit-strip article {
        min-height: 210px;
        padding: 34px;
        border-radius: 24px;
        border: 1px solid var(--rl-border);
        background: linear-gradient(180deg,#fff,#FAFBFF);
    }

    .rl-benefit-strip i {
        font-size: 44px;
        color: var(--rl-indigo)
    }

    .rl-benefit-strip h3 {
        font-size: 24px;
        line-height: 1.15;
        font-weight: 800;
        margin: 22px 0 10px
    }

    .rl-benefit-strip p {
        margin: 0;
        color: var(--rl-muted)
    }

.rl-applications {
    background: var(--rl-bg)
}

.rl-app-swiper {
    overflow: visible
}

.rl-app-card {
    overflow: hidden;
    height: 100%;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--rl-border);
    box-shadow: var(--rl-shadow-soft);
}

    .rl-app-card img {
        display: block;
        width: 100%;
        /* aspect-ratio: 16/9;
        object-fit: cover;*/
    }

    .rl-app-card div {
        padding: 32px
    }

    .rl-app-card h3 {
        font-size: 30px;
        line-height: 1.1;
        font-weight: 800;
        margin: 0 0 14px;
        color: var(--rl-text)
    }

    .rl-app-card p {
        font-size: 17px;
        color: var(--rl-muted);
        margin: 0
    }

.rl-regulated {
    position: relative;
    overflow: hidden;
    padding: 108px 0;
    background: var(--rl-navy);
    color: #fff;
}

    .rl-regulated::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,rgba(7,13,44,.92),rgba(7,13,44,.76)), url('../img/fondo5.jpg');
        background-size: cover;
        background-position: center;
    }

    .rl-regulated .container {
        position: relative;
        z-index: 1
    }

    .rl-regulated h2 {
        font-size: clamp(34px,4vw,56px);
        line-height: 1.05;
        /*letter-spacing:-.035em;*/
        font-weight: 800;
        margin: 0 0 24px;
    }

    .rl-regulated p {
        font-size: 19px;
        color: rgba(255,255,255,.78);
        margin: 0
    }

.rl-regulated-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px
}

    .rl-regulated-grid article {
        min-height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 26px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 22px;
        background: rgba(255,255,255,.055);
    }

    .rl-regulated-grid i {
        font-size: 36px;
        color: var(--rl-cyan)
    }

    .rl-regulated-grid span {
        font-weight: 800;
        font-size: 18px;
        line-height: 1.2
    }

.rl-faq {
    background: #fff
}

.rl-accordion .accordion-item {
    border: 1px solid var(--rl-border) !important;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: none;
}

.rl-accordion .accordion-button {
    padding: 22px 24px;
    font-weight: 800;
    color: var(--rl-text);
    box-shadow: none !important;
}

    .rl-accordion .accordion-button:not(.collapsed) {
        background: #F7F8FF;
        color: var(--rl-indigo)
    }

.rl-accordion .accordion-body {
    padding: 0 24px 24px;
    color: var(--rl-muted)
}

.rl-final-cta {
    padding: 0 0 96px;
    background: #fff
}

.rl-final-cta__box {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 32px;
    align-items: center;
    padding: 56px;
    border-radius: 30px;
    background: linear-gradient(135deg,var(--rl-purple),var(--rl-indigo) 55%,var(--rl-cyan));
    color: #fff;
    box-shadow: 0 32px 90px rgba(85,56,249,.28);
}

    .rl-final-cta__box::after {
        content: "";
        position: absolute;
        right: -120px;
        bottom: -160px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,.22);
    }

    .rl-final-cta__box h2 {
        position: relative;
        z-index: 1;
        font-size: clamp(32px,4vw,54px);
        line-height: 1.04;
        /* letter-spacing:-.035em;*/
        margin: 0 0 18px;
        font-weight: 800;
    }

    .rl-final-cta__box p {
        position: relative;
        z-index: 1;
        margin: 0;
        color: rgba(255,255,255,.82);
        font-size: 18px;
        max-width: 680px
    }

.rl-final-cta__actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end
}

.rl-footer {
    padding: 54px 0 34px;
    color: rgba(255,255,255,.72);
    background: var(--rl-navy-2);
}

.rl-footer__top, .rl-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.rl-footer__top {
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.12)
}

    .rl-footer__top nav, .rl-footer__bottom div {
        display: flex;
        gap: 26px;
        flex-wrap: wrap
    }

.rl-footer a {
    color: rgba(255,255,255,.76)
}

    .rl-footer a:hover {
        color: #fff
    }

.rl-footer__bottom {
    padding-top: 26px;
    font-size: 14px
}

@media (min-width:992px) {
    .rl-nav.collapse {
        display: flex !important
    }
}

@media (max-width:991.98px) {
    .rl-header__inner {
        min-height: 64px;
        gap: 16px
    }

    .rl-logo img {
        width: 130px
    }

    .rl-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center
    }

    .rl-header__cta {
        display: none
    }

    .rl-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 64px;
        background: #fff;
        border-bottom: 1px solid var(--rl-border);
        padding: 18px 24px 24px;
    }

        .rl-nav a {
            display: block;
            padding: 12px 0
        }

    .rl-hero {
        min-height: auto;
        padding: 76px 0 62px
    }

    .rl-hero-mockup {
        margin-left: 0;
        margin-top: 22px
    }

    .rl-section {
        padding: 82px 0
    }

    .rl-problem-list {
        padding-left: 0;
        border-left: 0
    }

    .rl-feature-layout {
        grid-template-columns: 1fr
    }

    .rl-feature-large {
        grid-template-columns: 1fr
    }

        .rl-feature-large img {
            height: auto
        }

    .rl-directors-card {
        padding: 28px;
        border-radius: 24px
    }

    .rl-benefit-strip {
        grid-template-columns: 1fr
    }

    .rl-regulated-grid {
        grid-template-columns: 1fr
    }

    .rl-final-cta__box {
        grid-template-columns: 1fr;
        padding: 38px 28px
    }

    .rl-final-cta__actions {
        justify-content: flex-start
    }

    .rl-footer__top, .rl-footer__bottom {
        align-items: flex-start;
        flex-direction: column
    }
}

@media (max-width:575.98px) {
    .rl-btn {
        width: 100%
    }

    .rl-hero__actions, .rl-final-cta__actions {
        width: 100%
    }

    .rl-problem-item {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .rl-flow-card {
        min-height: 510px;
        padding: 24px
    }

    .rl-feature-large > div {
        padding: 28px
    }

    .rl-feature-row {
        grid-template-columns: 1fr;
        padding: 24px
    }

    .rl-app-card div {
        padding: 26px
    }

    .rl-app-card h3 {
        font-size: 25px
    }
}

/* ==========================================================
   Mejora visual landing 2026-06
   - Más aire entre secciones
   - Cómo funciona más visual, sin imágenes con titulares
   - Beneficios en bloque oscuro/neón
   - Aplicaciones con slides homogéneos y recorte visual
   ========================================================== */

@media (min-width: 992px) {
    .rl-section {
        padding: 82px 0;
    }

        .rl-section + .rl-section {
            padding-top: 82px;
        }

    .rl-section-head {
        margin-bottom: 70px;
    }
}

.rl-flow-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 18% 18%, rgba(85,56,249,.08), transparent 32%), radial-gradient(circle at 88% 8%, rgba(22,209,254,.08), transparent 34%), linear-gradient(180deg,#fff 0%,#F6F8FF 100%);
}

    .rl-flow-section::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 48%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(85,56,249,.28), rgba(22,209,254,.24), transparent);
        pointer-events: none;
    }

.rl-flow-swiper .swiper-wrapper,
.rl-app-swiper .swiper-wrapper {
    align-items: stretch;
}

.rl-flow-swiper .swiper-slide,
.rl-app-swiper .swiper-slide {
    height: auto;
}

.rl-flow-card {
    position: relative;
    overflow: hidden;
    min-height: 590px;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.92)), radial-gradient(circle at 88% 12%, rgba(22,209,254,.20), transparent 34%);
    border: 1px solid rgba(85,56,249,.14);
    box-shadow: 0 26px 78px rgba(31,37,71,.10);
}

    .rl-flow-card::after {
        content: "";
        position: absolute;
        inset: auto -55px -65px auto;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(85,56,249,.16), transparent 65%);
    }

.rl-flow-card-featured {
    background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(247,250,255,.94)), radial-gradient(circle at 20% 0%, rgba(139,55,245,.20), transparent 38%);
}

.rl-step-number {
    position: relative;
    width: 62px;
    height: 62px;
    margin-bottom: 30px;
    border-radius: 999px;
    background: linear-gradient(135deg,var(--rl-purple),var(--rl-indigo) 58%,var(--rl-cyan));
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 0 0 9px rgba(85,56,249,.10), 0 14px 34px rgba(85,56,249,.28), inset 0 1px 0 rgba(255,255,255,.34);
}

    .rl-step-number::before {
        content: "";
        position: absolute;
        inset: -7px;
        border-radius: inherit;
        border: 1px solid rgba(22,209,254,.38);
    }

    .rl-step-number span {
        position: relative;
        z-index: 1;
    }

.rl-flow-card__copy {
    position: relative;
    z-index: 2;
}

.rl-flow-card h3 {
    max-width: 420px;
    font-size: clamp(27px, 2.2vw, 34px);
    line-height: 1.06;
    margin-bottom: 18px;
}

.rl-flow-card p {
    max-width: 430px;
    margin-bottom: 34px;
    font-size: 17px;
}

.rl-flow-visual {
    position: relative;
    z-index: 2;
    min-height: 250px;
    margin-top: auto;
    border-radius: 24px;
    border: 1px solid rgba(85,56,249,.14);
    background: radial-gradient(circle at 15% 20%, rgba(139,55,245,.14), transparent 34%), radial-gradient(circle at 85% 75%, rgba(22,209,254,.18), transparent 36%), linear-gradient(145deg,#F8FAFF,#FFFFFF);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 18px 54px rgba(11,18,64,.10);
    overflow: hidden;
}

    .rl-flow-visual::before {
        content: "";
        position: absolute;
        inset: 18px;
        border-radius: 20px;
        border: 1px dashed rgba(85,56,249,.16);
    }

.rl-flow-card img {
    display: none;
}

.rl-mini-window {
    position: absolute;
    left: 34px;
    right: 34px;
    top: 40px;
    height: 152px;
    border-radius: 20px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(85,56,249,.16);
    box-shadow: 0 18px 45px rgba(31,37,71,.10);
    padding: 28px;
}

    .rl-mini-window > span,
    .rl-briefing-sheet i,
    .rl-score-bars i {
        display: block;
        height: 9px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(85,56,249,.22), rgba(22,209,254,.20));
        margin-bottom: 13px;
    }

        .rl-mini-window > span:nth-child(1) {
            width: 76%;
        }

        .rl-mini-window > span:nth-child(2) {
            width: 58%;
        }

        .rl-mini-window > span:nth-child(3) {
            width: 68%;
        }

.rl-mini-checks {
    position: absolute;
    right: 24px;
    bottom: 22px;
    display: flex;
    gap: 7px;
}

    .rl-mini-checks i,
    .rl-orbit-dot,
    .rl-briefing-badge {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        background: var(--rl-cyan);
        box-shadow: 0 0 18px rgba(22,209,254,.58);
    }

.rl-orbit-dot {
    position: absolute;
}

.rl-orbit-dot-a {
    right: 48px;
    top: 42px;
}

.rl-orbit-dot-b {
    left: 56px;
    bottom: 38px;
    background: var(--rl-purple);
}

.rl-briefing-sheet {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(260px, 68%);
    min-height: 178px;
    transform: translate(-50%, -50%) rotate(-2deg);
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(85,56,249,.16);
    box-shadow: 0 22px 58px rgba(31,37,71,.12);
    padding: 34px 28px;
}

    .rl-briefing-sheet i:nth-child(1) {
        width: 80%;
    }

    .rl-briefing-sheet i:nth-child(2) {
        width: 62%;
    }

    .rl-briefing-sheet i:nth-child(3) {
        width: 70%;
    }

    .rl-briefing-sheet i:nth-child(4) {
        width: 48%;
    }

.rl-briefing-badge {
    position: absolute;
    right: 64px;
    top: 58px;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg,var(--rl-purple),var(--rl-cyan));
}

.rl-avatar-frame {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 28px;
    bottom: 72px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.58);
    background: var(--rl-navy);
    box-shadow: 0 24px 62px rgba(11,18,64,.20);
}

    .rl-avatar-frame img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 37% 48%;
        transform: scale(1.45);
    }

.rl-voice-wave {
    position: absolute;
    left: 50%;
    bottom: 28px;
    display: flex;
    gap: 6px;
    align-items: center;
    transform: translateX(-50%);
}

    .rl-voice-wave i {
        width: 7px;
        border-radius: 999px;
        background: linear-gradient(180deg,var(--rl-cyan),var(--rl-purple));
        box-shadow: 0 0 16px rgba(22,209,254,.42);
    }

        .rl-voice-wave i:nth-child(1) {
            height: 18px;
        }

        .rl-voice-wave i:nth-child(2) {
            height: 34px;
        }

        .rl-voice-wave i:nth-child(3) {
            height: 54px;
        }

        .rl-voice-wave i:nth-child(4) {
            height: 30px;
        }

        .rl-voice-wave i:nth-child(5) {
            height: 22px;
        }

.rl-score-ring {
    position: absolute;
    left: 36px;
    top: 48px;
    width: 124px;
    height: 124px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #fff 54%, transparent 55%), conic-gradient(var(--rl-indigo) 0 82%, rgba(85,56,249,.12) 82% 100%);
    box-shadow: 0 24px 55px rgba(85,56,249,.18);
}

    .rl-score-ring span {
        font-size: 34px;
        line-height: 1;
        font-weight: 800;
        color: var(--rl-text);
    }

.rl-score-bars {
    position: absolute;
    right: 34px;
    top: 62px;
    width: 46%;
}

    .rl-score-bars i:nth-child(1) {
        width: 92%;
    }

    .rl-score-bars i:nth-child(2) {
        width: 78%;
    }

    .rl-score-bars i:nth-child(3) {
        width: 66%;
    }

    .rl-score-bars i:nth-child(4) {
        width: 84%;
    }

.rl-progress-chart {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 52px;
    height: 130px;
    display: flex;
    align-items: end;
    gap: 16px;
}

    .rl-progress-chart i {
        flex: 1;
        border-radius: 12px 12px 0 0;
        background: linear-gradient(180deg,var(--rl-cyan),var(--rl-indigo));
        box-shadow: 0 0 24px rgba(85,56,249,.20);
    }

        .rl-progress-chart i:nth-child(1) {
            height: 34%;
        }

        .rl-progress-chart i:nth-child(2) {
            height: 48%;
        }

        .rl-progress-chart i:nth-child(3) {
            height: 64%;
        }

        .rl-progress-chart i:nth-child(4) {
            height: 78%;
        }

        .rl-progress-chart i:nth-child(5) {
            height: 92%;
        }

.rl-progress-line {
    position: absolute;
    left: 34px;
    right: 34px;
    top: 54px;
    height: 2px;
    background: linear-gradient(90deg, var(--rl-purple), var(--rl-cyan));
    box-shadow: 0 0 18px rgba(22,209,254,.45);
}

.rl-benefits-neon {
    position: relative;
    overflow: hidden;
    padding: 116px 0;
    color: #fff;
    background: var(--rl-navy);
}

    .rl-benefits-neon::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(7,13,44,.78), rgba(7,13,44,.96)), url('../img/fondo5.jpg');
        background-size: cover;
        background-position: center;
    }

    .rl-benefits-neon::after {
        content: "";
        position: absolute;
        inset: auto -12% -42% auto;
        width: 620px;
        height: 620px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(22,209,254,.18), transparent 60%);
    }

    .rl-benefits-neon .container {
        position: relative;
        z-index: 1;
    }

.rl-neon-head {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr);
    gap: 56px;
    align-items: end;
    margin-bottom: 52px;
}

    .rl-neon-head h2 {
        margin: 0;
        max-width: 760px;
        font-size: clamp(36px, 4.4vw, 62px);
        line-height: 1.02;
        font-weight: 800;
    }

    .rl-neon-head p {
        margin: 0;
        color: rgba(255,255,255,.76);
        font-size: 19px;
        line-height: 1.65;
    }

.rl-benefits-neon .rl-benefit-strip {
    grid-template-columns: repeat(3, minmax(0,1fr));
}

    .rl-benefits-neon .rl-benefit-strip article {
        position: relative;
        overflow: hidden;
        min-height: 280px;
        padding: 34px;
        border-radius: 28px;
        border: 1px solid rgba(22,209,254,.30);
        background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035)), radial-gradient(circle at 85% 20%, rgba(85,56,249,.28), transparent 42%);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 0 0 1px rgba(85,56,249,.12), 0 28px 80px rgba(0,0,0,.24), 0 0 42px rgba(22,209,254,.10);
    }

        .rl-benefits-neon .rl-benefit-strip article::after {
            content: "";
            position: absolute;
            left: 34px;
            right: 34px;
            bottom: 0;
            height: 2px;
            background: linear-gradient(90deg,var(--rl-purple),var(--rl-cyan));
            box-shadow: 0 0 22px rgba(22,209,254,.65);
        }

.rl-neon-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(85,56,249,.18);
    border: 1px solid rgba(22,209,254,.28);
    box-shadow: 0 0 34px rgba(22,209,254,.18);
}

.rl-benefits-neon .rl-benefit-strip i {
    font-size: 38px;
    color: var(--rl-cyan);
}

.rl-benefits-neon .rl-benefit-strip h3 {
    color: #fff;
    margin-top: 26px;
}

.rl-benefits-neon .rl-benefit-strip p {
    color: rgba(255,255,255,.72);
}

.rl-applications {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 16% 8%, rgba(85,56,249,.09), transparent 30%), linear-gradient(180deg,#F8FAFF 0%,#FFFFFF 100%);
}

.rl-app-swiper {
    overflow: hidden;
    padding: 10px 4px 32px;
}

.rl-app-card {
    height: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(85,56,249,.13);
    box-shadow: 0 22px 70px rgba(31,37,71,.10);
}

.rl-app-media {
    height: 292px;
    margin: 18px 18px 0;
    overflow: hidden;
    border-radius: 24px;
    background: var(--rl-navy);
    border: 1px solid rgba(85,56,249,.15);
}

    .rl-app-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /*object-position: right center;*/
        transform: scale(1.34);
        /* transform-origin: right center;*/
    }

.rl-app-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 34px 34px 36px;
}

.rl-app-tag {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #EEF2FF;
    color: var(--rl-indigo);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 20px;
}

.rl-app-card h3 {
    font-size: clamp(28px, 2.5vw, 38px);
    line-height: 1.04;
    margin-bottom: 18px;
}

.rl-app-card p {
    font-size: 18px;
    line-height: 1.55;
}

@media (min-width: 1200px) {
    .rl-flow-card {
        min-height: 620px;
    }

    .rl-app-card {
        min-height: 590px;
    }
}

@media (max-width: 991.98px) {
    .rl-neon-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .rl-benefits-neon .rl-benefit-strip {
        grid-template-columns: 1fr;
    }

    .rl-flow-card {
        min-height: 560px;
    }
}

@media (max-width: 575.98px) {
    .rl-section {
        padding: 90px 0;
    }

    .rl-flow-card {
        min-height: 540px;
        padding: 26px;
    }

    .rl-flow-visual {
        min-height: 220px;
    }

    .rl-app-card {
        min-height: 540px;
    }

    .rl-app-media {
        height: 230px;
        margin: 14px 14px 0;
    }

    .rl-app-card__body {
        padding: 26px;
    }

    .rl-benefits-neon {
        padding: 88px 0;
    }
}


sup.small {
    font-size: 0.6em;
}

/* ==========================================================
   Ajustes finales: iPad/mobile y modal Bootstrap
   ========================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

main,
.rl-hero,
.rl-flow-section,
.rl-benefits-neon,
.rl-applications,
.rl-regulated,
.rl-final-cta,
.rl-footer {
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    main,
    .rl-hero,
    .rl-flow-section,
    .rl-benefits-neon,
    .rl-applications,
    .rl-regulated,
    .rl-final-cta,
    .rl-footer {
        overflow-x: hidden;
    }
}

.rl-hero-mockup {
    overflow: hidden;
}

@media (pointer: coarse) {
    body {
        overscroll-behavior-x: none;
        touch-action: pan-y pinch-zoom;
    }

    .swiper,
    .swiper-wrapper,
    .swiper-slide {
        touch-action: pan-y;
    }
}

#rlInfoModal .modal-content {
    border: 1px solid rgba(85, 56, 249, .18);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 28px 90px rgba(11, 18, 64, .28);
}

#rlInfoModal .modal-header {
    border-bottom: 0;
    color: #fff;
    background:
        radial-gradient(circle at 88% 12%, rgba(22, 209, 254, .22), transparent 34%),
        linear-gradient(135deg, var(--rl-navy), var(--rl-indigo));
}

#rlInfoModal .modal-title {
    font-weight: 800;
    letter-spacing: -.01em;
}

#rlInfoModal .btn-close {
    filter: invert(1) grayscale(1);
    opacity: .82;
}

#rlInfoModal .btn-close:hover {
    opacity: 1;
}

#rlInfoModal .modal-footer {
    background: #F5F6FC;
    border-top: 1px solid var(--rl-border);
}

#rlInfoModal .input-group-text {
    color: var(--rl-indigo);
    background: #EEF2FF;
    border-color: #DDE3FF;
    font-weight: 800;
}

#rlInfoSubmit {
    border: 0;
    font-weight: 800;
    background: linear-gradient(135deg, var(--rl-purple), var(--rl-indigo) 58%, var(--rl-cyan));
    box-shadow: 0 12px 28px rgba(85, 56, 249, .24);
}

#rlInfoSubmit:hover,
#rlInfoSubmit:focus {
    background: linear-gradient(135deg, #7D2FE5, var(--rl-indigo) 58%, #10BFE8);
    box-shadow: 0 16px 36px rgba(85, 56, 249, .30);
}

@media (max-width: 575.98px) {
    #rlInfoModal .modal-footer {
        align-items: stretch !important;
        flex-direction: column;
    }

    #rlInfoModal .modal-footer > .d-flex,
    #rlInfoSubmit {
        width: 100%;
    }
}
