.origin-clean-hero {
    background-color: #ffffff !important;
    min-height: 400px !important;
    padding-top: 160px !important;
    padding-bottom: 60px !important;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.origin-clean-hero .eyebrow {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 20px;
    display: block;
}
.origin-clean-hero h1 {
    font-size: clamp(2.2rem, 3.8vw, 3.6rem) !important;
    line-height: 1.15;
    font-weight: 800;
    color: #0A192F;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.origin-clean-hero .subtitle {
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.origin-clean-hero .description {
    font-size: 1rem;
    color: #000000 !important;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}
.origin-clean-hero .btn-primary-clean {
    background-color: #1a56ff !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 28px !important;
    border-radius: 8px !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(26, 86, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.origin-clean-hero .btn-primary-clean:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 86, 255, 0.4);
}

/* MARKETPLACE SPECIFIC STYLES */

/* ANIMATED HERO DIAGRAM - 1:1 WITH MEDIA_1789053058909.PNG */
.mp-hero-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    position: relative;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
}

.mp-hero-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid #F1F5F9;
}

.mp-hero-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-hero-topbar-brand {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0A192F;
    letter-spacing: -0.3px;
}

.mp-hero-status-pill {
    font-size: 0.72rem;
    font-weight: 700;
    color: #059669;
    background: #ECFDF5;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #A7F3D0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mp-hero-status-dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    animation: mpPulseDot 1.8s ease-in-out infinite;
}

@keyframes mpPulseDot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }
    50% {
        transform: scale(1.25);
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
    }
}

.mp-hero-diagram-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 14px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.mp-node-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease;
}

.mp-node-column--1 {
    animation: mpAssembleCol1 5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.mp-node-column--2 {
    animation: mpAssembleCol2 5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.mp-node-column--3 {
    animation: mpAssembleCol3 5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

/* Real-time Assembly Loop Keyframes for Marketplace Hero Diagram */

/* Col 1: PUNTO DE CONTACTO (Enters from Left) */
@keyframes mpAssembleCol1 {
    0%, 100% {
        transform: translateX(-50px) scale(0.88);
        opacity: 0.15;
    }
    18%, 82% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* Col 2: EVALUACIÓN EN LÍNEA (Rises from center) */
@keyframes mpAssembleCol2 {
    0%, 100% {
        transform: translateY(20px) scale(0.88);
        opacity: 0.15;
    }
    28%, 82% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Col 3: CASCADA DE LENDERS (Enters from Right) */
@keyframes mpAssembleCol3 {
    0%, 100% {
        transform: translateX(50px) scale(0.88);
        opacity: 0.15;
    }
    38%, 82% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

/* Lenders Staggered Appearance inside Col 3 */
.mp-card-box--lender:nth-of-type(1) {
    animation: mpAssembleLenderA 5s ease-in-out infinite;
}
.mp-card-box--winning {
    animation: mpAssembleLenderB 5s ease-in-out infinite;
}
.mp-card-box--lender:nth-of-type(3) {
    animation: mpAssembleLenderC 5s ease-in-out infinite;
}

@keyframes mpAssembleLenderA {
    0%, 100% { transform: translateX(25px); opacity: 0.2; }
    34%, 82% { transform: translateX(0); opacity: 0.8; }
}

@keyframes mpAssembleLenderB {
    0%, 100% { transform: translateX(40px) scale(0.9); opacity: 0.15; box-shadow: 0 0 0 transparent; }
    42%, 82% { transform: translateX(0) scale(1); opacity: 1; box-shadow: 0 6px 18px rgba(16, 185, 129, 0.25); }
}

@keyframes mpAssembleLenderC {
    0%, 100% { transform: translateX(25px); opacity: 0.2; }
    48%, 82% { transform: translateX(0); opacity: 0.8; }
}

/* Bracket SVG Drawing & Connecting Effect */
.mp-lender-bracket-wrap {
    transform-origin: left center;
    animation: mpAssembleBracket 5s ease-in-out infinite;
}

@keyframes mpAssembleBracket {
    0%, 100% { opacity: 0; transform: scaleX(0); }
    34%, 82% { opacity: 1; transform: scaleX(1); }
}

.mp-node-title {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 4px;
    text-align: left;
}

/* Col 1: Comercio Card */
.mp-card-box--contact {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-left: 4px solid #1A56FF;
    border-radius: 12px;
    padding: 16px 14px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mp-card-box-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #EFF6FF;
    color: #1A56FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mp-card-box-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0A192F;
    margin-bottom: 2px;
}

.mp-card-box-subtitle {
    font-size: 0.72rem;
    color: #64748B;
    line-height: 1.3;
}

.mp-card-box-caption {
    font-size: 0.68rem;
    color: #64748B;
    text-align: left;
    margin-top: 6px;
}

/* Col 2: Finvero Evaluation Card */
.mp-card-box--finvero {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 18px 16px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mp-finvero-brand {
    font-size: 1.35rem;
    font-weight: 900;
    color: #0A192F;
    letter-spacing: -0.5px;
}

.mp-finvero-brand sup {
    font-size: 0.65rem;
    font-weight: 700;
}

.mp-finvero-desc {
    font-size: 0.74rem;
    color: #64748B;
    margin-top: 4px;
    margin-bottom: 16px;
    line-height: 1.35;
}

/* Score Gauges */
.mp-gauges-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 8px;
}

.mp-gauge-card {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: mpGaugePulseCard 4s ease-in-out infinite;
}

@keyframes mpGaugePulseCard {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

.mp-gauge-svg {
    width: 96px;
    height: 96px;
}

.mp-gauge-track {
    fill: none;
    stroke: #E2E8F0;
    stroke-width: 5.5;
}

.mp-gauge-track--fraude {
    stroke: #EF4444;
}

.mp-gauge-fill--riesgo {
    fill: none;
    stroke: #10B981;
    stroke-width: 5.5;
    stroke-linecap: round;
    stroke-dasharray: 238;
    stroke-dashoffset: 75;
    animation: mpGaugeAnimRiesgo 5s ease-in-out infinite;
}

.mp-gauge-fill--fraude {
    fill: none;
    stroke: #EF4444;
    stroke-width: 5.5;
    stroke-linecap: round;
    stroke-dasharray: 238;
    stroke-dashoffset: 125;
    animation: mpGaugeAnimFraude 5s ease-in-out infinite 0.5s;
}

@keyframes mpGaugeAnimRiesgo {
    0% {
        stroke-dashoffset: 238;
    }
    25%, 85% {
        stroke-dashoffset: 75;
    }
    100% {
        stroke-dashoffset: 238;
    }
}

@keyframes mpGaugeAnimFraude {
    0% {
        stroke-dashoffset: 238;
    }
    30%, 85% {
        stroke-dashoffset: 125;
    }
    100% {
        stroke-dashoffset: 238;
    }
}

.mp-gauge-center-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    padding: 0 4px;
}

.mp-gauge-number {
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.1;
    margin-bottom: 2px;
}

.mp-gauge-number--danger {
    color: #EF4444 !important;
}

.mp-gauge-label {
    font-size: 9.5px;
    font-weight: 500;
    color: #64748B;
    line-height: 1.15;
}

/* Col 3: Lender Stack */
.mp-card-box--lender {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mp-lender-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-lender-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-lender-info {
    text-align: left;
}

.mp-lender-name {
    font-size: 0.82rem;
    font-weight: 800;
    color: #0A192F;
}

.mp-lender-sub {
    font-size: 0.68rem;
    color: #64748B;
}

.mp-lender-rate {
    font-size: 0.85rem;
    font-weight: 800;
    color: #475569;
}

/* Lender B (Winning) */
.mp-card-box--winning {
    background: #ECFDF5;
    border: 1px solid #10B981;
}

.mp-card-box--winning .mp-lender-icon {
    background: #D1FAE5;
    color: #059669;
}

.mp-card-box--winning .mp-lender-name {
    color: #065F46;
}

.mp-card-box--winning .mp-lender-sub {
    color: #047857;
}

.mp-card-box--winning .mp-lender-approved {
    color: #059669;
    font-weight: 700;
}

.mp-card-box--winning .mp-lender-rate {
    color: #059669;
    font-weight: 800;
}

.mp-lender-bracket-wrap {
    position: absolute;
    left: -14px;
    top: 28px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
}

/* Bottom Footer Caption */
.mp-hero-footer-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #F1F5F9;
    font-size: 0.78rem;
    color: #475569;
    font-weight: 500;
}

/* SVG Flow Lines Animation */
.mp-svg-connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    animation: mpEntranceSvg 0.8s ease-in 0.8s forwards;
    opacity: 0;
}

@keyframes mpEntranceSvg {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Entrance Animations for Diagram Components */
@keyframes mpEntranceLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes mpEntranceCenter {
    0% { opacity: 0; transform: scale(0.85) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes mpEntranceRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

.mp-node-column--1 {
    animation: mpEntranceLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.mp-node-column--2 {
    animation: mpEntranceCenter 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
}

.mp-node-column--3 {
    animation: mpEntranceRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    opacity: 0;
}

.mp-flow-path-bg {
    stroke: #E2E8F0;
    stroke-width: 2;
    fill: none;
}

.mp-flow-path-active {
    stroke: #1A56FF;
    stroke-width: 2.5;
    fill: none;
    stroke-dasharray: 6, 6;
    animation: mpDashFlow 1.2s linear infinite;
}

.mp-flow-path-success {
    stroke: #10B981;
    stroke-width: 2.5;
    fill: none;
    stroke-dasharray: 6, 6;
    animation: mpDashFlow 1.2s linear infinite;
}

@keyframes mpDashFlow {
    0% { stroke-dashoffset: 24; }
    100% { stroke-dashoffset: 0; }
}

.mp-hero-caption {
    margin-top: 16px;
    font-size: 0.82rem;
    color: #64748B;
    text-align: center;
    font-weight: 500;
    border-top: 1px solid #F1F5F9;
    padding-top: 12px;
}

/* SCORE GAUGES WIDGET (Riesgo & Fraude) */
.mp-gauges-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.mp-gauge-card {
    background: #FFFFFF;
    border-radius: 50%;
    width: 82px;
    height: 82px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    border: 1.5px solid #FCD34D;
    transition: transform 0.3s ease;
}

.mp-gauge-card:hover {
    transform: scale(1.05);
}

.mp-gauge-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-135deg);
}

.mp-gauge-track {
    fill: none;
    stroke: #E2E8F0;
    stroke-width: 7;
}

.mp-gauge-fill {
    fill: none;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-dasharray: 180;
    stroke-dashoffset: 45;
}

.mp-gauge-fill--riesgo {
    stroke: url(#mpRiesgoGradient);
}

.mp-gauge-fill--fraude {
    stroke: url(#mpFraudeGradient);
}

.mp-gauge-content {
    position: relative;
    z-index: 2;
    text-align: center;
    line-height: 1;
}

.mp-gauge-number {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0A192F;
    display: block;
}

.mp-gauge-title {
    font-size: 0.5rem;
    font-weight: 700;
    color: #0A192F;
    display: block;
    margin-top: 2px;
    max-width: 58px;
    margin-left: auto;
    margin-right: auto;
}

/* Impact Rows (Section 5) - High-end Visual Fintech Style */
.mp-impact-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.mp-impact-row {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 28px 36px;
    gap: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mp-impact-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #1A56FF;
    border-radius: 4px 0 0 4px;
}

.mp-impact-row--comercial::before { background: #1A56FF; }
.mp-impact-row--riesgo::before { background: #10B981; }
.mp-impact-row--operaciones::before { background: #8B5CF6; }
.mp-impact-row--tecnologia::before { background: #F59E0B; }

.mp-impact-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border-color: #CBD5E1;
}

.mp-impact-left {
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.mp-impact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mp-impact-icon--comercial { background: #EFF6FF; color: #1A56FF; }
.mp-impact-icon--riesgo { background: #ECFDF5; color: #10B981; }
.mp-impact-icon--operaciones { background: #F3E8FF; color: #8B5CF6; }
.mp-impact-icon--tecnologia { background: #FFFBEB; color: #F59E0B; }

.mp-impact-meta {
    display: flex;
    flex-direction: column;
}

.mp-impact-area {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748B;
    margin-bottom: 2px;
}

.mp-impact-cifra {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0A192F;
    line-height: 1;
    letter-spacing: -0.5px;
}

.mp-impact-right {
    flex: 1;
    border-left: 1px solid #F1F5F9;
    padding-left: 32px;
}

.mp-impact-titular {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0A192F;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.mp-impact-cuerpo {
    font-size: 0.98rem;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 768px) {
    .mp-impact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px;
    }
    .mp-impact-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #F1F5F9;
        padding-top: 16px;
        width: 100%;
    }
    .mp-connector-line {
        width: 2px;
        height: 16px;
    }
}

/* EXACT RETO DIAGRAM - HUMAN FINTECH DESIGN */
.mp-reto-diagram-container {
    margin-top: 36px;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.mp-reto-funnel-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    align-items: center;
}

.mp-reto-block {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 20px;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.mp-reto-block--light {
    background: #F1F5F9;
    color: #0A192F;
    border: 1px solid #E2E8F0;
    clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
}

.mp-reto-block--light:not(.mp-reto-block--first) {
    clip-path: polygon(22px 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
}

.mp-reto-block--dark {
    background: #0A192F;
    color: #FFFFFF;
    border: 1px solid #0A192F;
    clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 4px 14px rgba(10, 25, 47, 0.2);
}

.mp-reto-block--dark span {
    color: #FFFFFF;
}

.mp-reto-leaks-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.mp-reto-leak-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 12px;
}

.mp-reto-drop-pin {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.mp-reto-drop-line {
    width: 2px;
    height: 48px;
    border-left: 2px dashed #D97706;
}

.mp-reto-drop-dot {
    width: 10px;
    height: 10px;
    background: #D97706;
    border-radius: 50%;
    margin-top: -2px;
}

.mp-reto-leak-title {
    font-size: 1rem;
    font-weight: 800;
    color: #9A3412;
    margin-bottom: 6px;
    line-height: 1.25;
}

.mp-reto-leak-desc {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .mp-reto-funnel-row,
    .mp-reto-leaks-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .mp-reto-block {
        clip-path: none !important;
        border-radius: 8px;
    }
    .mp-reto-drop-line {
        height: 24px;
    }
}

/* MINDMAP DIAGRAM DÓNDE APARECE TU OFERTA (Section 4) */
.mp-offer-mindmap-container {
    margin-top: 36px;
    margin-bottom: 48px;
    background: #FAFCFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 40px 24px;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.mp-mindmap-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 24px;
    align-items: center;
    position: relative;
    max-width: 1050px;
    margin: 0 auto;
}

/* Central Hub Card with Person Image + Dark Badge */
.mp-mindmap-hub-wrap {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.mp-mindmap-hub-card {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 24px !important;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.12) !important;
    padding: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 240px !important;
    text-align: center !important;
    transition: transform 0.25s ease !important;
}

.mp-mindmap-hub-card:hover {
    transform: translateY(-4px) !important;
}

.mp-mindmap-hub-img-box {
    width: 100% !important;
    height: 190px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    margin-bottom: 8px !important;
}

.mp-mindmap-hub-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.mp-mindmap-hub-badge {
    background: #0F172A !important;
    color: #FFFFFF !important;
    border-radius: 16px !important;
    padding: 10px 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.mp-mindmap-hub-badge h3 {
    color: #FFFFFF !important;
    font-size: 1.15rem !important;
    font-weight: 900 !important;
    letter-spacing: -0.2px !important;
    margin: 0 0 2px 0 !important;
}

.mp-mindmap-hub-badge span {
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    color: #38BDF8 !important;
    font-style: normal !important;
    display: block !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
}

/* Branch Cards with Image 2 Clean White Style */
.mp-mindmap-card {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 24px !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08) !important;
    z-index: 2 !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease !important;
}

.mp-mindmap-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12) !important;
}

/* Header inside Cards */
.mp-mindmap-card-header {
    background: #F8FAFC !important;
    padding: 14px 18px !important;
    border-bottom: 1px solid #E2E8F0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
}

.mp-mindmap-card-brand {
    width: 36px !important;
    height: 36px !important;
    background: #0F172A !important;
    color: #FFFFFF !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 900 !important;
    font-size: 0.95rem !important;
    letter-spacing: -0.5px !important;
    flex-shrink: 0 !important;
}

.mp-mindmap-card-meta {
    text-align: right !important;
}

.mp-mindmap-card-meta h4 {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.2px !important;
}

.mp-mindmap-card-meta span {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #64748B !important;
    font-style: normal !important;
    display: block !important;
}

/* Body inside Cards */
.mp-mindmap-card-body {
    padding: 14px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

/* List Rows inside Card Body */
.mp-mindmap-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-bottom: 8px !important;
    border-bottom: 1px solid #F1F5F9 !important;
}

.mp-mindmap-row:last-child {
    border-bottom: none !important;
}

.mp-mindmap-row-left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.mp-mindmap-row-icon {
    width: 28px !important;
    height: 28px !important;
    background: #F1F5F9 !important;
    color: #0F172A !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.mp-mindmap-row-title {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    display: block !important;
    line-height: 1.2 !important;
}

.mp-mindmap-row-sub {
    font-size: 0.72rem !important;
    color: #94A3B8 !important;
    display: block !important;
    font-weight: 500 !important;
}

.mp-mindmap-row-val {
    font-size: 0.98rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
}

/* Bottom Dark Overlay Badge inside Card */
.mp-mindmap-card-badge {
    background: #0F172A !important;
    color: #FFFFFF !important;
    padding: 10px 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    border-radius: 14px !important;
    margin: 4px 12px 12px 12px !important;
}

.mp-mindmap-card-check-circle {
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #FFFFFF !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.mp-mindmap-card-badge-text {
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    letter-spacing: 0.4px !important;
}

/* Branch Positions */
.mp-mindmap-card--top {
    grid-column: 2;
    grid-row: 1;
}

.mp-mindmap-card--left {
    grid-column: 1;
    grid-row: 2;
}

.mp-mindmap-card--right {
    grid-column: 3;
    grid-row: 2;
}

.mp-mindmap-card--bottom {
    grid-column: 2;
    grid-row: 3;
}

/* MINDMAP CONNECTING LINES & ENTRANCE ANIMATIONS */
.mp-mindmap-svg-connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.mp-mindmap-line {
    stroke: #94A3B8;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: mpDrawLine 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mp-mindmap-line--top { animation-delay: 0.3s; }
.mp-mindmap-line--left { animation-delay: 0.5s; }
.mp-mindmap-line--right { animation-delay: 0.7s; }
.mp-mindmap-line--bottom { animation-delay: 0.9s; }

@keyframes mpDrawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Staggered Card Entrance Animations */
.mp-mindmap-hub-wrap {
    opacity: 0;
    transform: scale(0.8);
    animation: mpPopHub 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes mpPopHub {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mp-mindmap-card--top {
    opacity: 0;
    transform: translateY(-24px);
    animation: mpSlideTop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes mpSlideTop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mp-mindmap-card--left {
    opacity: 0;
    transform: translateX(-24px);
    animation: mpSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@keyframes mpSlideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mp-mindmap-card--right {
    opacity: 0;
    transform: translateX(24px);
    animation: mpSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

@keyframes mpSlideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mp-mindmap-card--bottom {
    opacity: 0;
    transform: translateY(24px);
    animation: mpSlideBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

@keyframes mpSlideBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Pill Fade-in Inside Cards */
.mp-mindmap-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EFF6FF;
    color: #1A56FF;
    border: 1px solid #DBEAFE;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    animation: mpPillEntrance 0.5s ease forwards;
    transition: all 0.25s ease;
}

.mp-mindmap-card--top .mp-mindmap-pill:nth-child(1) { animation-delay: 0.6s; }
.mp-mindmap-card--top .mp-mindmap-pill:nth-child(2) { animation-delay: 0.7s; }

.mp-mindmap-card--left .mp-mindmap-pill:nth-child(1) { animation-delay: 0.7s; }
.mp-mindmap-card--left .mp-mindmap-pill:nth-child(2) { animation-delay: 0.75s; }
.mp-mindmap-card--left .mp-mindmap-pill:nth-child(3) { animation-delay: 0.8s; }
.mp-mindmap-card--left .mp-mindmap-pill:nth-child(4) { animation-delay: 0.85s; }
.mp-mindmap-card--left .mp-mindmap-pill:nth-child(5) { animation-delay: 0.9s; }

.mp-mindmap-card--right .mp-mindmap-pill:nth-child(1) { animation-delay: 0.9s; }
.mp-mindmap-card--right .mp-mindmap-pill:nth-child(2) { animation-delay: 0.95s; }
.mp-mindmap-card--right .mp-mindmap-pill:nth-child(3) { animation-delay: 1.0s; }
.mp-mindmap-card--right .mp-mindmap-pill:nth-child(4) { animation-delay: 1.05s; }

.mp-mindmap-card--bottom .mp-mindmap-pill:nth-child(1) { animation-delay: 1.1s; }
.mp-mindmap-card--bottom .mp-mindmap-pill:nth-child(2) { animation-delay: 1.15s; }

@keyframes mpPillEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mp-mindmap-pill:hover {
    background: #1A56FF;
    color: #FFFFFF;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 12px rgba(26, 86, 255, 0.25);
}

.mp-mindmap-pill:hover svg {
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .mp-mindmap-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    .mp-mindmap-hub-wrap,
    .mp-mindmap-card--top,
    .mp-mindmap-card--left,
    .mp-mindmap-card--right,
    .mp-mindmap-card--bottom {
        grid-column: 1;
        grid-row: auto;
    }
    .mp-mindmap-svg-lines {
        display: none;
    }
}

/* Footnotes & Legal Notes */
.mp-kpi-nota {
    margin-top: 16px;
    font-size: 0.85rem;
    color: #64748B;
    line-height: 1.5;
}

.mp-doc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #1A56FF;
    text-decoration: none;
    margin-top: 24px;
    font-size: 1rem;
}

.mp-doc-link:hover {
    text-decoration: underline;
}

.mp-comp-footnote {
    margin-top: 16px;
    font-size: 0.88rem;
    color: #475569;
    background: #F8FAFC;
    border-left: 4px solid #1A56FF;
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    line-height: 1.5;
}

/* =========================================================
   HERO TIMELINE TREE DIAGRAM ( media_1789751291207 )
   ========================================================= */
.mp-hero-timeline-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.mp-timeline-container {
  position: relative;
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}

.mp-timeline-stem {
  position: absolute;
  top: 30px;
  bottom: 20px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, #0F172A 0%, #0F172A 85%, rgba(15, 23, 42, 0.1) 100%);
  transform: translateX(-50%);
  z-index: 1;
}

.mp-timeline-row {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  z-index: 2;
}

.mp-timeline-row:last-child {
  margin-bottom: 0;
}

.mp-timeline-row--left {
  justify-content: flex-start;
  padding-right: 52%;
}

.mp-timeline-row--right {
  justify-content: flex-end;
  padding-left: 52%;
}

/* Branch Ticks */
.mp-timeline-row--left::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 50%;
  width: 15px;
  height: 2px;
  background: #0F172A;
  transform: translateY(-50%);
}

.mp-timeline-row--right::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background: #0F172A;
  transform: translateY(-50%);
}

/* Tree Cards */
.mp-tree-card {
  width: 100%;
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  position: relative;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mp-tree-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
}

.mp-tree-card--dark {
  background: #0B132B;
  color: #FFFFFF;
  border: 1px solid #1E293B;
}

.mp-tree-card--white-bordered {
  background: #FFFFFF;
  color: #0F172A;
  border: 1.5px solid #0F172A;
}

.mp-tree-card--soft {
  background: #FAF8F5;
  color: #0F172A;
  border: 1px solid #E2E8F0;
}

.mp-card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.mp-card-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #64748B;
}

.mp-card-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-card-icon-badge--blue {
  background: #2563EB;
  color: #FFFFFF;
}

.mp-card-icon-badge--soft {
  background: transparent;
  color: #0F172A;
}

.mp-card-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.15;
  margin-bottom: 4px;
}

.mp-tree-card--dark .mp-card-val {
  color: #FFFFFF;
}

.mp-card-sub {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 500;
  line-height: 1.4;
}

.mp-tree-card--dark .mp-card-sub {
  color: #CBD5E1;
}

.mp-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: #38BDF8;
  text-decoration: underline;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
}

.mp-card-pill-btn {
  display: inline-block;
  background: #0F172A;
  color: #FFFFFF !important;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  margin-top: 12px;
  text-align: center;
}

@media (max-width: 768px) {
  .mp-timeline-stem {
    left: 20px;
    transform: none;
  }

  .mp-timeline-row--left,
  .mp-timeline-row--right {
    padding-left: 45px !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }

  .mp-timeline-row--left::after,
  .mp-timeline-row--right::before {
    left: 20px !important;
    right: auto !important;
    width: 25px !important;
  }
}

/* =========================================================
   CATALOG CARDS CLEAN (ESTILO CARDS EL RETO)
   ========================================================= */
.catalog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.catalog-card-clean {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 2.2rem 1.8rem !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03) !important;
  transition: all 0.25s ease !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.catalog-card-clean:hover {
  border-color: #2563EB !important;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12) !important;
  transform: translateY(-4px) !important;
}

.catalog-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 1rem !important;
}

.catalog-card-icon-box {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  border: 1.5px solid #0F172A !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #FFFFFF !important;
  color: #0F172A !important;
  flex-shrink: 0 !important;
}

.catalog-card-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.catalog-card-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.catalog-card-desc {
  color: #64748B !important;
  font-size: 0.93rem !important;
  line-height: 1.6 !important;
  margin-bottom: 1.5rem !important;
  flex-grow: 1 !important;
  font-weight: 400 !important;
}

.catalog-card-checklist {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border-top: 1px solid #F1F5F9;
  padding-top: 1rem !important;
}

.catalog-card-check-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #1E293B !important;
  line-height: 1.4 !important;
}

.catalog-card-check-icon {
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

/* =========================================================
   DIAGRAMA PROCESO HORIZONTAL (ESTILO IMAGEN 2)
   ========================================================= */
.mp-process-wrapper {
  margin-top: 3.5rem !important;
  padding: 3rem 2rem !important;
  background: #FFFFFF !important;
  border-radius: 28px !important;
  border: 1px solid #E2E8F0 !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
}

.mp-process-grid {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  position: relative !important;
  gap: 1.2rem !important;
}

/* Line connecting the icon boxes */
.mp-process-grid::before {
  content: "" !important;
  position: absolute !important;
  top: 48px !important;
  left: 12% !important;
  right: 12% !important;
  height: 2px !important;
  background: #000000 !important;
  z-index: 1 !important;
}

.mp-process-step {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  position: relative !important;
  z-index: 2 !important;
}

.mp-process-icon-box {
  width: 96px !important;
  height: 96px !important;
  background: #0F172A !important;
  border-radius: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15) !important;
  margin-bottom: 0.8rem !important;
  transition: transform 0.25s ease, background-color 0.25s ease !important;
}

.mp-process-step:hover .mp-process-icon-box {
  transform: translateY(-4px) !important;
  background: #1E293B !important;
}

.mp-process-badge {
  width: 32px !important;
  height: 32px !important;
  background: #2563EB !important;
  color: #FFFFFF !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.35) !important;
  margin-bottom: 0.8rem !important;
}

.mp-process-step-tag {
  display: inline-block !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  color: #2563EB !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 4px !important;
}

.mp-process-title {
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  line-height: 1.35 !important;
  margin-bottom: 0.5rem !important;
  padding: 0 0.25rem !important;
}

.mp-process-desc {
  font-size: 0.88rem !important;
  color: #64748B !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  padding: 0 0.25rem !important;
  font-weight: 400 !important;
}

@media (max-width: 991px) {
  .mp-process-grid {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2.5rem !important;
  }

  .mp-process-grid::before {
    top: 0 !important;
    bottom: 0 !important;
    left: 50% !important;
    right: auto !important;
    width: 2px !important;
    height: 100% !important;
  }

  .mp-process-step {
    max-width: 320px !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   LENDERS 4-STEP TIMELINE & MOBILE PHONE MOCKUP (1:1 REPLICA OF IMAGE 2)
   ========================================================================== */
.fv-lenders-how-container {
    margin-top: 60px !important;
    background: #FFFFFF !important;
    border-radius: 32px !important;
    padding: 48px 40px !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05) !important;
}

.fv-lenders-timeline {
    position: relative !important;
    padding-left: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 36px !important;
}

.fv-lenders-timeline-line {
    position: absolute !important;
    left: 28px !important;
    top: 24px !important;
    bottom: 24px !important;
    width: 2px !important;
    background: #E2E8F0 !important;
    z-index: 1 !important;
}

.fv-lenders-step {
    position: relative !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 24px !important;
    z-index: 2 !important;
}

.fv-lenders-step-circle {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: #CBD5E1 !important;
    color: #FFFFFF !important;
    font-weight: 800 !important;
    font-size: 1.05rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
}

.fv-lenders-step.active .fv-lenders-step-circle {
    background: #2563EB !important;
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.18) !important;
}

.fv-lenders-step-content {
    padding-top: 2px !important;
}

.fv-lenders-step-title {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #94A3B8 !important;
    margin: 0 0 6px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.2px !important;
    transition: color 0.3s ease !important;
}

.fv-lenders-step.active .fv-lenders-step-title {
    color: #2563EB !important;
}

.fv-lenders-step-desc {
    font-size: 0.92rem !important;
    color: #64748B !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

/* Right Card: Dark Background & Smartphone Shell */
.fv-lenders-phone-card {
    background: #0F172A !important;
    border-radius: 28px !important;
    padding: 44px 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.18) !important;
}

.fv-lenders-phone-wrapper {
    width: 100% !important;
    max-width: 320px !important;
}

.fv-lenders-phone-shell {
    background: #FAFAF9 !important;
    border: 8px solid #334155 !important;
    border-radius: 40px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    overflow: hidden !important;
    position: relative !important;
}

.fv-lenders-phone-notch {
    padding: 12px 20px 8px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #0F172A !important;
}

.fv-lenders-phone-screen {
    padding: 16px 20px 24px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.fv-lenders-screen-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: #0F172A !important;
}

.fv-lenders-screen-title {
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    color: #0F172A !important;
}

.fv-lenders-screen-body {
    background: #FFFFFF !important;
    border-radius: 20px !important;
    padding: 24px 18px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
}

.fv-lenders-screen-icons {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

.fv-lenders-icon-square {
    width: 48px !important;
    height: 48px !important;
    background: #2563EB !important;
    color: #FFFFFF !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25) !important;
}

.fv-lenders-icon-square:nth-child(3) {
    background: #F8FAFC !important;
    color: #0F172A !important;
    border: 1px solid #E2E8F0 !important;
    box-shadow: none !important;
}

.fv-lenders-icon-logo {
    font-weight: 900 !important;
    font-size: 1.15rem !important;
    letter-spacing: -0.5px !important;
}

.fv-lenders-screen-arrow {
    font-size: 1.1rem !important;
    color: #94A3B8 !important;
    font-weight: 700 !important;
}

.fv-lenders-screen-msg {
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    line-height: 1.35 !important;
    margin: 0 !important;
}

.fv-lenders-screen-disclaimer {
    font-size: 0.72rem !important;
    color: #64748B !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-weight: 600 !important;
}

.fv-lenders-screen-btn {
    width: 100% !important;
    background: #0F172A !important;
    color: #FFFFFF !important;
    padding: 12px 0 !important;
    border-radius: 12px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: block !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15) !important;
    transition: background-color 0.2s ease !important;
}

.fv-lenders-screen-btn:hover {
    background: #1E293B !important;
    color: #FFFFFF !important;
}





/* =========================================================
   FLOW DIAGRAM & INT-1 & STEP CARDS (Section 4 External CSS)
   ========================================================= */

/* Flow Diagram Container (Image 2) */
.pymes-flujo-diagram-container {
    background: #FAFCFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 36px 24px;
    margin-top: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.pymes-flujo-badge-pill {
    display: inline-block;
    background: #EFF6FF;
    color: #2563EB;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #DBEAFE;
    text-transform: uppercase;
}

.pymes-flujo-input-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pymes-flujo-input-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.pymes-flujo-input-card--red {
    border: 2px solid #3B82F6;
}

.pymes-flujo-input-card--embebido {
    border: 2px solid #0EA5E9;
}

.pymes-flujo-input-card--marca {
    border: 2px solid #8B5CF6;
}

.pymes-flujo-num-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F1F5F9;
    color: #2563EB;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.pymes-flujo-input-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 4px;
}

.pymes-flujo-input-sub {
    font-size: 0.82rem;
    color: #64748B;
    font-weight: 500;
    margin: 0;
}

.pymes-flujo-arrow-divider {
    text-align: center;
    margin: 20px 0;
    color: #64748B;
    font-size: 1.5rem;
}

.pymes-flujo-step-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 20px 16px;
    border-left: 4px solid #2563EB;
    border-top: 1px solid #E2E8F0;
    border-right: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    height: 100%;
    transition: transform 0.25s ease;
}

.pymes-flujo-step-card:hover {
    transform: translateY(-3px);
}

.pymes-flujo-step-card--paso1 { border-left-color: #2563EB; }
.pymes-flujo-step-card--paso2 { border-left-color: #0EA5E9; }
.pymes-flujo-step-card--paso3 { border-left-color: #6366F1; }
.pymes-flujo-step-card--paso4 { border-left-color: #10B981; }

.pymes-flujo-step-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: #2563EB;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.pymes-flujo-step-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 6px;
}

.pymes-flujo-step-desc {
    font-size: 0.82rem;
    color: #64748B;
    line-height: 1.4;
    margin: 0;
}

.pymes-flujo-monitor-bar {
    background: #0F172A;
    border-radius: 14px;
    padding: 16px 24px;
    margin-top: 24px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.pymes-flujo-monitor-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.98rem;
}

.pymes-flujo-monitor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 10px #10B981;
}

.pymes-flujo-monitor-right {
    font-size: 0.85rem;
    color: #94A3B8;
    font-weight: 500;
}

/* Documentation Technical Link Button */
.pymes-doc-link-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.pymes-doc-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563EB;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    transition: all 0.2s ease;
}

.pymes-doc-link-btn:hover {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
}

/* INT-1 Card (Image 3 Top Block) */
.pymes-int1-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 36px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03);
}

.pymes-int1-tag {
    font-size: 0.78rem;
    font-weight: 800;
    color: #2563EB;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.pymes-int1-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.pymes-int1-col-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 18px;
    height: 100%;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.pymes-int1-col-box strong {
    color: #0F172A;
}

/* Detailed Vertical Cards PASO 01-04 (Image 3 Grid) */
.pymes-step-detailed-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 28px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pymes-step-detailed-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.pymes-step-detailed-card--active {
    border: 2px solid #2563EB !important;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.1) !important;
}

.pymes-step-detailed-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pymes-step-detailed-num {
    width: 38px;
    height: 38px;
    border: 1.5px solid #0F172A;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    color: #0F172A;
    flex-shrink: 0;
}

.pymes-step-detailed-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: #2563EB;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
}

.pymes-step-detailed-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0;
    line-height: 1.25;
}

.pymes-step-detailed-desc {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 20px;
}

.pymes-step-detailed-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px dashed #E2E8F0;
    padding-top: 16px;
}

.pymes-step-detailed-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.35;
}

.pymes-step-detailed-check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}


/* INT-1 Summary Bar above Mindmap Diagram */
.pymes-int1-bar {
    background: #FFFFFF !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 20px !important;
    padding: 20px 24px !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
}

.pymes-int1-badge {
    background: #2563EB !important;
    color: #FFFFFF !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    letter-spacing: 0.5px !important;
}

.pymes-int1-heading {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin: 0 !important;
    letter-spacing: -0.2px !important;
}

.pymes-int1-card-pill {
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 14px !important;
    padding: 14px 16px !important;
    text-align: left !important;
    height: 100% !important;
}

.pymes-int1-card-pill strong {
    color: #2563EB !important;
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    display: block !important;
    margin-bottom: 4px !important;
}

.pymes-int1-card-pill span {
    font-size: 0.82rem !important;
    color: #475569 !important;
    line-height: 1.4 !important;
    display: block !important;
}

.pymes-card-intro-desc {
    font-size: 0.8rem !important;
    color: #64748B !important;
    line-height: 1.45 !important;
    margin-bottom: 10px !important;
}


/* PROCESS TIMELINE (IMAGE 2 DESIGN) */
.fv-process-timeline-container {
    position: relative !important;
    padding: 20px 0 !important;
    margin-top: 20px !important;
    margin-bottom: 40px !important;
}

.fv-process-timeline-line {
    position: absolute !important;
    top: 55px !important;
    left: 12% !important;
    right: 12% !important;
    height: 2px !important;
    background: #0F172A !important;
    z-index: 1 !important;
}

@media (max-width: 991px) {
    .fv-process-timeline-line {
        display: none !important;
    }
}

.fv-process-step-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    position: relative !important;
}

.fv-process-icon-box {
    width: 72px !important;
    height: 72px !important;
    background: #0F172A !important;
    color: #FFFFFF !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18) !important;
    margin-bottom: 18px !important;
    transition: transform 0.25s ease !important;
}

.fv-process-icon-box:hover {
    transform: translateY(-4px) !important;
}

.fv-process-num-badge {
    position: absolute !important;
    bottom: -10px !important;
    width: 26px !important;
    height: 26px !important;
    background: #2563EB !important;
    color: #FFFFFF !important;
    border-radius: 50% !important;
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #FFFFFF !important;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3) !important;
}

.fv-process-tag {
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    color: #2563EB !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-top: 8px !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.fv-process-title {
    font-size: 1.05rem !important;
    font-weight: 900 !important;
    color: #0F172A !important;
    margin-bottom: 8px !important;
    line-height: 1.25 !important;
    text-transform: uppercase !important;
    letter-spacing: -0.2px !important;
}

.fv-process-desc {
    font-size: 0.85rem !important;
    color: #64748B !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    max-width: 240px !important;
}
