:root {
    --rd-night: #0b1240;
    --rd-night-2: #060b28;
    --rd-violet: #8b37f5;
    --rd-indigo: #5538f9;
    --rd-cyan: #16d1fe;
    --rd-blue: #1976ff;
    --rd-white: #ffffff;
    --rd-soft: #f5f6fc;
    --rd-soft-2: #eef2ff;
    --rd-slate: #1f2547;
    --rd-muted: #5b637a;
    --rd-line: rgba(111, 128, 197, .22);
    --rd-green: #22c55e;
    --rd-amber: #f59e0b;
    --rd-radius-xl: 30px;
    --rd-radius-lg: 22px;
    --rd-radius-md: 16px;
    --rd-shadow-soft: 0 24px 70px rgba(9, 14, 55, .16);
    --rd-shadow-dark: 0 28px 90px rgba(0, 0, 0, .36);
    --rd-gradient: linear-gradient(135deg, var(--rd-violet) 0%, var(--rd-indigo) 50%, var(--rd-cyan) 100%);
    --rd-gradient-soft: linear-gradient(135deg, rgba(139, 55, 245, .14) 0%, rgba(85, 56, 249, .1) 45%, rgba(22, 209, 254, .16) 100%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    color: var(--rd-slate);
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

::selection {
    background: rgba(22, 209, 254, .25);
}

.rd-page {
    background: #fff;
}

.rd-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.gradient-text {
    background: var(--rd-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .76rem;
    line-height: 1;
    /*  letter-spacing: .14em;*/
    text-transform: uppercase;
    font-weight: 800;
    color: var(--rd-indigo);
}

.eyebrow-light {
    color: #9fb0ff;
}

.section-title {
    font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
    font-weight: 800;
    /*  letter-spacing: -.04em;*/
    line-height: 1.04;
    color: var(--rd-slate);
}

    .section-title.light {
        color: #fff;
    }

.section-lead {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--rd-muted);
}

    .section-lead.light {
        color: rgba(255, 255, 255, .72);
    }

.rd-btn {
    --btn-shadow: 0 16px 36px rgba(53, 76, 249, .32);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    min-height: 52px;
    padding: 0 1.35rem;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: .95rem;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
    cursor: pointer;
    white-space: nowrap;
}

.rd-btn-primary {
    color: #fff;
    background: var(--rd-gradient);
    box-shadow: var(--btn-shadow);
}

    .rd-btn-primary:hover {
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 22px 44px rgba(53, 76, 249, .42);
    }

.rd-btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
}

    .rd-btn-ghost:hover {
        color: #fff;
        border-color: rgba(255,255,255,.55);
        background: rgba(255,255,255,.12);
        transform: translateY(-2px);
    }

.rd-btn-light {
    color: var(--rd-indigo);
    background: #fff;
    box-shadow: 0 16px 35px rgba(0,0,0,.12);
}

    .rd-btn-light:hover {
        transform: translateY(-2px);
        color: var(--rd-indigo);
    }

.rd-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--rd-indigo);
    font-weight: 800;
}

    .rd-link-arrow:hover {
        color: var(--rd-cyan);
    }

/* Header */
.rd-navbar {
    min-height: 82px;
    z-index: 1000;
    background: rgba(7, 12, 43, .56);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .25s ease, min-height .25s ease, box-shadow .25s ease;
}

    .rd-navbar.is-scrolled {
        min-height: 70px;
        background: rgba(6, 10, 36, .9);
        box-shadow: 0 18px 45px rgba(0,0,0,.22);
    }

    .rd-navbar .navbar-brand img {
        height: 46px;
        width: auto;
        display: block;
    }

    .rd-navbar .nav-link {
        color: rgba(255,255,255,.76);
        font-weight: 750;
        font-size: .91rem;
        padding: .6rem .85rem !important;
    }

        .rd-navbar .nav-link:hover, .rd-navbar .nav-link:focus {
            color: #fff;
        }

    .rd-navbar .navbar-toggler {
        border: 1px solid rgba(255,255,255,.18);
        box-shadow: none;
    }

    .rd-navbar .navbar-toggler-icon {
        filter: invert(1);
    }

/* Hero */
.hero-section {
    position: relative;
    min-height: 900px;
    padding: 145px 0 96px;
    color: #fff;
    overflow: hidden;
    background: radial-gradient(circle at 18% 14%, rgba(139, 55, 245, .24), transparent 34%), radial-gradient(circle at 82% 22%, rgba(22, 209, 254, .16), transparent 35%), linear-gradient(140deg, #050a26 0%, #0b1240 46%, #090e33 100%);
}

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
        background-size: 64px 64px;
        mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.05));
        pointer-events: none;
    }

    .hero-section::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 38px;
        height: 260px;
        background: url('../img/bg-wave.svg') center bottom / cover no-repeat;
        opacity: .75;
        pointer-events: none;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    max-width: 690px;
    font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
    font-weight: 800;
    font-size: clamp(3.1rem, 5vw, 5.35rem);
    /*  letter-spacing: -.065em;*/
    line-height: 1.1em;
    margin: 0 0 1.45rem;
}

.hero-lead {
    max-width: 640px;
    color: rgba(255,255,255,.76);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 1.35rem;
}

.hero-note {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    max-width: 590px;
    color: rgba(255,255,255,.82);
    padding: 1rem 1.1rem;
    border: 1px solid rgba(22, 209, 254, .18);
    background: rgba(255,255,255,.045);
    border-radius: 18px;
    margin: 1.5rem 0 1.75rem;
}

    .hero-note .note-icon {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        color: var(--rd-cyan);
        background: rgba(22, 209, 254, .12);
        box-shadow: inset 0 0 0 1px rgba(22, 209, 254, .28);
    }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.hero-microcopy {
    color: rgba(255,255,255,.58);
    font-weight: 650;
    font-size: .93rem;
    max-width: 590px;
    margin: 0;
}

.hero-value-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
    /*max-width: 680px;*/
    margin-top: 2.1rem;
    border: 1px solid rgba(119, 135, 255, .24);
    border-radius: 22px;
    padding: .72rem;
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(20px);
}

.value-chip {
    display: flex;
    gap: .75rem;
    align-items: center;
    min-height: 72px;
    padding: .75rem;
    border-radius: 16px;
    background: rgba(255,255,255,.025);
}

.value-chip-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: rgba(22, 209, 254, .1);
    border: 1px solid rgba(22, 209, 254, .22);
}

.value-chip strong {
    display: block;
    font-size: .89rem;
    line-height: 1.15;
}

.value-chip span {
    color: rgba(255,255,255,.58);
    display: block;
    font-size: .76rem;
    line-height: 1.3;
    margin-top: .18rem;
}

.hero-mockup-wrap {
    position: relative;
    z-index: 2;
    padding-left: 1rem;
}

.product-mockup {
    position: relative;
    max-width: 700px;
    margin-left: auto;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,.45), rgba(22, 209, 254, .15), rgba(139, 55, 245, .35));
    box-shadow: var(--rd-shadow-dark), 0 0 80px rgba(22, 209, 254, .08);
}

.product-mockup-inner {
    border-radius: 27px;
    background: linear-gradient(180deg, rgba(11,18,64,.98), rgba(11,18,64,.86));
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}

.mockup-topbar {
    min-height: 78px;
    display: grid;
    grid-template-columns: 86px 1fr 1fr 1fr auto;
    gap: .95rem;
    align-items: center;
    padding: 1rem 1.1rem;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mini-brand {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--rd-gradient);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px rgba(85,56,249,.32);
}

    .mini-brand span {
        width: 32px;
        height: 32px;
        border: 3px solid #fff;
        border-right: 0;
        border-radius: 9px 0 0 9px;
        position: relative;
    }

        .mini-brand span::before {
            content: "";
            width: 8px;
            height: 8px;
            background: #fff;
            border-radius: 50%;
            position: absolute;
            left: 7px;
            top: 7px;
        }

        .mini-brand span::after {
            content: "+";
            color: #fff;
            font-weight: 900;
            font-size: 18px;
            position: absolute;
            right: -18px;
            top: -2px;
        }

.topbar-label {
    color: rgba(255,255,255,.48);
    font-size: .68rem;
    font-weight: 750;
    display: block;
    margin-bottom: .18rem;
}

.topbar-value {
    font-size: .87rem;
    font-weight: 800;
    line-height: 1.25;
    display: block;
}

.mockup-timer {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-weight: 800;
    color: rgba(255,255,255,.9);
    white-space: nowrap;
}

.pause-btn {
    height: 40px;
    padding: 0 .85rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    background: rgba(255,255,255,.06);
    font-weight: 800;
}

.mockup-main {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(270px, .72fr);
    gap: 1rem;
    padding: 1rem;
}

.video-frame {
    position: relative;
    min-height: 430px;
    border-radius: 22px;
    overflow: hidden;
    background: #0a102d;
    border: 1px solid rgba(255,255,255,.14);
}

    .video-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: saturate(.95) contrast(.96);
    }

    .video-frame::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(4, 8, 31, .64), transparent 36%);
        pointer-events: none;
    }

.briefing-pill {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .78rem;
    border-radius: 999px;
    background: rgba(7, 10, 34, .66);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.video-controls {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: .8rem;
}

.control-dot {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(8, 11, 31, .58);
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
}

.chat-panel {
    min-height: 430px;
    border-radius: 22px;
    background: #fff;
    padding: 1.05rem;
    color: var(--rd-slate);
    display: flex;
    flex-direction: column;
    gap: .82rem;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 900;
    color: var(--rd-slate);
}

    .chat-title svg {
        color: var(--rd-indigo);
    }

.message {
    max-width: 92%;
    padding: .86rem .9rem;
    border-radius: 17px;
    font-size: .86rem;
    line-height: 1.45;
    box-shadow: 0 10px 25px rgba(31,37,71,.06);
}

    .message small {
        display: block;
        font-weight: 900;
        margin-bottom: .22rem;
        color: var(--rd-indigo);
    }

    .message.doctor {
        background: #f5f6fc;
        align-self: flex-start;
    }

    .message.user {
        background: #eaf2ff;
        align-self: flex-end;
    }

.message-time {
    display: block;
    margin-top: .35rem;
    color: #8490b7;
    font-size: .72rem;
    text-align: right;
}

.chat-input {
    margin-top: auto;
    display: flex;
    gap: .55rem;
    align-items: center;
}

    .chat-input .input-visual {
        flex: 1;
        height: 44px;
        border: 1px solid #dfe5fb;
        border-radius: 13px;
        display: flex;
        align-items: center;
        padding: 0 .85rem;
        color: #8b94b6;
        font-size: .82rem;
    }

    .chat-input .mic-btn {
        width: 44px;
        height: 44px;
        border: 0;
        border-radius: 13px;
        background: var(--rd-gradient);
        color: #fff;
    }

/* Sections */
.section-pad {
    padding: 105px 0;
}

.section-pad-sm {
    padding: 78px 0;
}

.subir-margen {
    margin-top: -30px;
}

.zIndex3 {
    z-index:3;
}

.dark-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(180deg, #070c2b 0%, #0b1240 100%);
}

    .dark-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 82% 18%, rgba(22,209,254,.08), transparent 32%), radial-gradient(circle at 18% 88%, rgba(139,55,245,.12), transparent 36%);
        pointer-events: none;
    }

    .dark-section > * {
        position: relative;
        z-index: 1;
    }

.origin-panel {
    margin-top: -44px;
    position: relative;
    z-index: 4;
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--rd-shadow-soft);
    border: 1px solid rgba(76, 88, 144, .12);
    padding: clamp(2rem, 4vw, 4.5rem);
}

.origin-copy {
    max-width: 520px;
}

    .origin-copy p {
        color: var(--rd-muted);
        line-height: 1.72;
        margin-bottom: 1rem;
    }

.rolstage-lockup {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 900;
    color: var(--rd-indigo);
    margin-top: .2rem;
}

    .rolstage-lockup .mark {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: var(--rd-gradient);
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 20px;
    }

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.pillar-card {
    min-height: 158px;
    padding: 1.35rem;
    border-radius: 22px;
    border: 1px solid rgba(89,103,165,.14);
    background: linear-gradient(180deg, #fff, #fafbff);
    transition: transform .22s ease, box-shadow .22s ease;
}

    .pillar-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 45px rgba(31,37,71,.08);
    }

.visual-token {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    color: var(--rd-indigo);
    background: rgba(85,56,249,.08);
    box-shadow: inset 0 0 0 1px rgba(85,56,249,.08);
}

    .visual-token.cyan {
        color: #0697c0;
        background: rgba(22,209,254,.1);
    }

    .visual-token.green {
        color: var(--rd-green);
        background: rgba(34,197,94,.1);
    }

    .visual-token.amber {
        color: var(--rd-amber);
        background: rgba(245,158,11,.12);
    }

.pillar-card h3 {
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: .45rem;
    color: var(--rd-slate);
}

.pillar-card p {
    font-size: .9rem;
    color: var(--rd-muted);
    line-height: 1.55;
    margin: 0;
}

.problem-intro {
    max-width: 820px;
    margin-bottom: 2.2rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.problem-card {
    position: relative;
    min-height: 245px;
    padding: 1.55rem;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 24px 55px rgba(0,0,0,.16);
}

    .problem-card::after {
        content: "";
        position: absolute;
        width: 190px;
        height: 190px;
        right: -74px;
        bottom: -74px;
        background: radial-gradient(circle, rgba(22,209,254,.16), transparent 65%);
    }

.problem-visual {
    height: 72px;    
    margin-top: 1.5rem;
}

   
    display: grid;
    place-items: center;
    margin-bottom: 1.2rem;
      left: 7%;
        right: 7%;
        top: 54px;
      8);
    color: var(--rd-cyan);
    border: 1px solid rgba(255,255,255,.1);
}

.problem-card h3 {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 850;
    margin-bottom: .7rem;
}

.problem-card p {
    color: rgba(255,255,255,.68);
    line-height: 1.55;
    margin: 0;
    font-size: .93rem;
}

.process-panel {
    position: relative;
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--rd-shadow-soft);
    padding: 3.2rem 2.2rem;
    border: 1px solid rgba(89,103,165,.12);
}

.process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.3rem;
    margin-top: 3.2rem;
}

    .process-flow::before {
        content: "";
        position: absolute;
        left: 7%;
        right: 7%;
        top: 54px;
        height: 3px;
        background: linear-gradient(90deg, var(--rd-violet), var(--rd-cyan), var(--rd-indigo));
        opacity: .45;
    }

.step-card {
    position: relative;
    text-align: center;
    padding: 0 1rem;
}

.step-number {
    position: absolute;
    left: 50%;
    top: -12px;
    transform: translateX(-54px);
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    font-size:1.5rem;
    background: var(--rd-gradient);
    z-index: 2;
}

.step-orb {
    position: relative;
    z-index: 1;
    width: 112px;
    height: 112px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--rd-indigo);
    background: linear-gradient(180deg, #fff, #f4f6ff);
    box-shadow: 0 18px 40px rgba(85,56,249,.12), inset 0 0 0 1px rgba(85,56,249,.12);
}

.step-card h3 {
    font-weight: 900;
    font-size: 1.02rem;
    margin-bottom: .45rem;
}

.step-card p {
    color: var(--rd-muted);
    font-size: .91rem;
    line-height: 1.55;
    margin: 0;
}

.benefits-section {
    padding: 112px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 2.35rem;
}

.benefit-card {
    position: relative;
    overflow: hidden;
    min-height: 178px;
    padding: 1.55rem;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.11);
    background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.04));
    box-shadow: 0 24px 55px rgba(0,0,0,.12);
}

    .benefit-card.featured {
        grid-column: span 1;
        background: linear-gradient(145deg, rgba(85,56,249,.25), rgba(22,209,254,.08));
        border-color: rgba(22,209,254,.25);
    }

.benefit-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--rd-cyan);
    background: rgba(22,209,254,.09);
    margin-bottom: 1.1rem;
}

.benefit-card h3 {
    color: #fff;
    font-weight: 900;
    font-size: 1.28rem;
    margin: 0 0 .45rem;
}

.benefit-card p {
    color: rgba(255,255,255,.7);
    line-height: 1.55;
    margin: 0;
}

.light-section {
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.slider-shell {
    position: relative;
}

.slider-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.slider-controls {
    display: flex;
    gap: .55rem;
    align-items: center;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(88,101,167,.18);
    background: #fff;
    color: var(--rd-indigo);
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px rgba(31,37,71,.06);
}

    .slider-btn:hover {
        background: var(--rd-indigo);
        color: #fff;
    }

.slider-viewport {
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 1rem;
    transition: transform .42s ease;
    will-change: transform;
}

.slider-card {
    flex: 0 0 calc((100% - 2rem) / 3);
    min-height: 220px;
    padding: 1.65rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(89,103,165,.14);
    box-shadow: 0 22px 55px rgba(31,37,71,.07);
}

    .slider-card.dark-card {
        background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035));
        color: #fff;
        border-color: rgba(255,255,255,.12);
        box-shadow: 0 22px 55px rgba(0,0,0,.14);
    }

    .slider-card h3 {
        font-size: 1.12rem;
        font-weight: 900;
        margin-bottom: .55rem;
    }

    .slider-card p {
        color: var(--rd-muted);
        line-height: 1.56;
        margin: 0;
    }

    .slider-card.dark-card p {
        color: rgba(255,255,255,.68);
    }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: 1.15rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    border: 0;
    background: #d5dbf3;
    transition: width .22s ease, background .22s ease;
}

    .slider-dot.active {
        width: 28px;
        background: var(--rd-gradient);
    }

.applications-section {
    padding: 105px 0;
}

.application-card {
    min-height: 260px;
}

.visibility-panel {
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--rd-shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(89,103,165,.13);
}

.dashboard-mock {
    min-height: 540px;
    display: grid;
    grid-template-columns: 188px 1fr;
    background: #fff;
}

.dashboard-sidebar {
    background: linear-gradient(180deg, #0b1240, #07102d);
    color: #fff;
    padding: 1.4rem 1.1rem;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 900;
    margin-bottom: 1.6rem;
    color: #fff;
}

    .sidebar-logo img {
        width: 34px;
        height: 34px;
    }

.sidebar-nav {
    display: grid;
    gap: .45rem;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    min-height: 38px;
    padding: 0 .65rem;
    border-radius: 12px;
    color: rgba(255,255,255,.68);
    font-size: .84rem;
}

    .sidebar-item.active {
        color: #fff;
        background: rgba(85,56,249,.42);
    }

.dashboard-main {
    padding: 1.4rem;
    background: linear-gradient(180deg, #fff, #f9fbff);
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

    .dashboard-top h3 {
        font-weight: 900;
        margin: 0;
    }

    .dashboard-top p {
        color: var(--rd-muted);
        margin: .1rem 0 0;
        font-size: .9rem;
    }

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: 36px;
    padding: 0 .7rem;
    border-radius: 11px;
    border: 1px solid #e0e6fa;
    background: #fff;
    color: var(--rd-muted);
    font-size: .78rem;
    font-weight: 800;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .75rem;
    margin-bottom: .9rem;
}

.metric-card {
    min-height: 100px;
    border-radius: 18px;
    border: 1px solid #e2e7fb;
    background: #fff;
    padding: .9rem;
}

    .metric-card span {
        color: var(--rd-muted);
        font-size: .76rem;
        font-weight: 750;
        display: block;
    }

    .metric-card strong {
        display: block;
        font-size: 1.38rem;
        margin: .35rem 0 .1rem;
    }

    .metric-card small {
        color: #13a55e;
        font-weight: 800;
        font-size: .72rem;
    }

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
}

.chart-card {
    border: 1px solid #e2e7fb;
    background: #fff;
    border-radius: 18px;
    padding: 1rem;
    min-height: 210px;
}

    .chart-card h4 {
        font-size: .92rem;
        font-weight: 900;
        margin-bottom: .85rem;
    }

.line-chart {
    height: 130px;
    position: relative;
    background: linear-gradient(to bottom, transparent 24%, #eef2ff 24% 25%, transparent 25% 49%, #eef2ff 49% 50%, transparent 50% 74%, #eef2ff 74% 75%, transparent 75%);
    border-bottom: 1px solid #dbe2fb;
}

    .line-chart svg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        overflow: visible;
    }

.bars {
    display: grid;
    gap: .72rem;
}

.bar-row {
    display: grid;
    grid-template-columns: 108px 1fr 48px;
    gap: .65rem;
    align-items: center;
    font-size: .78rem;
    color: var(--rd-muted);
}

.bar {
    height: 8px;
    border-radius: 999px;
    background: #e4e8fb;
    overflow: hidden;
}

    .bar > span {
        display: block;
        height: 100%;
        border-radius: 999px;
        background: var(--rd-gradient);
    }

.visibility-copy {
    padding-left: 2.6rem;
}

.check-list {
    display: grid;
    gap: 1rem;
    margin: 1.7rem 0 1.6rem;
    padding: 0;
    list-style: none;
}

    .check-list li {
        display: flex;
        gap: .8rem;
        align-items: flex-start;
        color: var(--rd-muted);
        line-height: 1.5;
    }

    .check-list .check {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(34,197,94,.1);
        color: var(--rd-green);
    }

.security-panel {
    border-radius: 34px;
    padding: clamp(2rem, 4vw, 3.2rem);
    background: radial-gradient(circle at 88% 40%, rgba(22,209,254,.16), transparent 34%), linear-gradient(135deg, #0b1240, #070b2b);
    color: #fff;
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--rd-shadow-dark);
}

    .security-panel p {
        color: rgba(255,255,255,.72);
        line-height: 1.7;
    }

.security-badge {
    width: 66px;
    height: 66px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    color: var(--rd-cyan);
    background: rgba(22,209,254,.1);
    border: 1px solid rgba(22,209,254,.25);
    margin-bottom: 1.2rem;
}

.faq-section .accordion {
    --bs-accordion-border-color: rgba(89,103,165,.14);
    --bs-accordion-border-radius: 18px;
}

.faq-section .accordion-item {
    border: 1px solid rgba(89,103,165,.14);
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: .85rem;
    box-shadow: 0 16px 35px rgba(31,37,71,.04);
}

.faq-section .accordion-button {
    font-weight: 900;
    color: var(--rd-slate);
    background: #fff;
    box-shadow: none;
}

    .faq-section .accordion-button:not(.collapsed) {
        color: var(--rd-indigo);
        background: #fbfcff;
    }

.faq-section .accordion-body {
    color: var(--rd-muted);
    line-height: 1.68;
    padding-top: 0;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    color: #fff;
    background: radial-gradient(circle at 82% 8%, rgba(22,209,254,.22), transparent 32%), linear-gradient(135deg, var(--rd-violet), var(--rd-indigo) 52%, #0b7dff 100%);
}

    .final-cta::after {
        content: "";
        position: absolute;
        inset: 0;
        background: url('../img/bg-wave.svg') center / cover no-repeat;
        opacity: .45;
    }

    .final-cta > * {
        position: relative;
        z-index: 1;
    }

    .final-cta h2 {
        font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
        font-weight: 900;
        /*letter-spacing: -.045em;*/
        line-height: 1.06;
        font-size: clamp(2.35rem, 4.5vw, 4.25rem);
        margin: 0 0 1rem;
    }

    .final-cta p {
        color: rgba(255,255,255,.82);
        font-size: 1.08rem;
        line-height: 1.72;
        max-width: 720px;
    }

.cta-proof {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: rgba(255,255,255,.86);
    font-weight: 750;
    margin-top: .8rem;
}

.footer {
    background: #050a26;
    color: #fff;
    padding: 68px 0 28px;
}

.footer-logo img {
    height: 52px;
    width: auto;
}

.footer p, .footer a {
    color: rgba(255,255,255,.62);
}

    .footer a:hover {
        color: #fff;
    }

.footer h3 {
    font-size: .82rem;
    text-transform: uppercase;
    /*letter-spacing: .12em;*/
    font-weight: 900;
    color: rgba(255,255,255,.92);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .45rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,.09);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .86rem;
    color: rgba(255,255,255,.48);
}

.socials {
    display: flex;
    gap: .6rem;
    margin-top: 1rem;
}

    .socials a {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        display: grid;
        place-items: center;
        background: rgba(255,255,255,.06);
    }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 1199.98px) {
    .hero-title {
        font-size: clamp(2.75rem, 5.8vw, 4.4rem);
    }

    .mockup-topbar {
        grid-template-columns: 64px 1fr 1fr auto;
    }

        .mockup-topbar .mock-hide-lg {
            display: none;
        }

    .problem-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-mock {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .rd-navbar .navbar-collapse {
        padding: 1rem;
        margin-top: .8rem;
        border-radius: 18px;
        background: rgba(6, 10, 36, .96);
        border: 1px solid rgba(255,255,255,.08);
    }

    .hero-section {
        padding-top: 126px;
        min-height: auto;
    }

    .hero-mockup-wrap {
        padding-left: 0;
        margin-top: 2rem;
    }

    .hero-value-strip {
        grid-template-columns: 1fr;
    }

    .mockup-main {
        grid-template-columns: 1fr;
    }

    .chat-panel {
        min-height: 260px;
    }

    .video-frame {
        min-height: 360px;
    }

    .origin-panel {
        margin-top: -26px;
    }

    .pillar-grid {
        margin-top: 2rem;
    }

    .process-flow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

        .process-flow::before {
            left: 55px;
            right: auto;
            top: 0;
            bottom: 0;
            width: 3px;
            height: auto;
        }

    .step-card {
        text-align: left;
        padding-left: 135px;
        min-height: 112px;
    }

    .step-orb {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
    }

    .step-number {
        left: 0;
        transform: translate(82px, -8px);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slider-card {
        flex: 0 0 calc((100% - 1rem) / 2);
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .rd-container {
        width: min(100% - 28px, 1180px);
    }

    .rd-navbar .navbar-brand img {
        height: auto;
        
    }

    .section-pad {
        padding: 78px 0;
    }

    .section-pad-sm {
        padding: 58px 0;
    }

    .hero-title {
        font-size: clamp(2.35rem, 12vw, 3.3rem);
    }

    .hero-actions .rd-btn {
        width: 100%;
    }

    .product-mockup {
        margin: 0;
    }

    .mockup-topbar {
        grid-template-columns: 52px 1fr auto;
        gap: .65rem;
    }

        .mockup-topbar .mock-hide-md {
            display: none;
        }

    .mockup-main {
        padding: .65rem;
    }

    .video-frame {
        min-height: 300px;
        border-radius: 18px;
    }

    .chat-panel {
        border-radius: 18px;
    }

    .origin-panel, .process-panel, .security-panel, .visibility-panel {
        border-radius: 24px;
    }

    .pillar-grid, .problem-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }

    .problem-card {
        min-height: 205px;
    }

    .step-card {
        padding-left: 112px;
    }

    .step-orb {
        width: 92px;
        height: 92px;
    }

    .step-number {
        transform: translate(68px, -8px);
    }

    .slider-card {
        flex: 0 0 100%;
    }

    .slider-header {
        align-items: start;
        flex-direction: column;
    }

    .dashboard-main {
        padding: 1rem;
    }

    .metric-row {
        grid-template-columns: 1fr;
    }

    .bar-row {
        grid-template-columns: 92px 1fr 42px;
    }

    .final-cta .rd-btn {
        width: 100%;
    }
}

.value-chip-icon {
    display: grid !important;
    place-items: center;
    color: #fff;
}

i.ph-duotone {
    font-size: 1.5rem;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
}

    i.ph-duotone.large {
        font-size: 2.5rem;
    }

i.ph-duotone.big {
    font-size: 3.5rem;
    
}

.img-full {
    width:100%;
}

.hero-mockup-wrap img {
    transform: rotate(-10deg) scale(1); /* Rotación base y tamaño normal */
    box-shadow: 0 4px 8px rgba(111, 111, 111, 0.4);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

    .hero-mockup-wrap img:hover {
        /* 3. Estado al pasar el ratón */
        transform: rotate(-10deg) scale(1.1); /* Mantiene la rotación (opcional) y crece un 10% */
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4); /* La sombra se vuelve más intensa y profunda */
    }