/* =====================================================
   WHY JNR ZONE
===================================================== */

.why-section {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(37, 99, 235, 0.18),
            transparent 34%
        ),
        radial-gradient(
            circle at 88% 24%,
            rgba(6, 182, 212, 0.13),
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 88%,
            rgba(139, 92, 246, 0.12),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #07101e 0%,
            #0a1425 48%,
            #07111f 100%
        );
}

.why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 72px 72px;
    mask-image: linear-gradient(
        to bottom,
        transparent,
        #000 12%,
        #000 88%,
        transparent
    );
    pointer-events: none;
}

.why-section::after {
    content: "";
    position: absolute;
    top: 220px;
    left: 50%;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.09),
        transparent 68%
    );
    filter: blur(70px);
    transform: translateX(-50%);
    animation: whyAmbientGlow 13s ease-in-out infinite;
    pointer-events: none;
}

.why-section > .container {
    position: relative;
    z-index: 2;
}


/* =====================================================
   SECTION TITLE
===================================================== */

.why-section .section-title {
    max-width: 900px;
    margin: 0 auto 90px;
    text-align: center;
}

.why-section .section-title .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 18px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 10px 35px rgba(14, 165, 233, 0.08);
}

.why-section .section-title h2 {
    margin: 28px 0 0;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 850;
    line-height: 1.06;
    letter-spacing: -2.4px;
}

.why-section .section-title p {
    max-width: 760px;
    margin: 28px auto 0;
    color: #aebdd1;
    font-size: 18px;
    line-height: 1.85;
}


/* =====================================================
   BENEFIT GRID
===================================================== */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 130px;
}

.benefit-card {
    position: relative;
    min-height: 430px;
    padding: 38px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.072),
            rgba(255, 255, 255, 0.025)
        );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 26px 80px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease,
        background 0.45s ease;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.22),
        transparent 68%
    );
    filter: blur(8px);
    opacity: 0.7;
    transition:
        transform 0.6s ease,
        opacity 0.6s ease;
}

.benefit-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 12%,
        rgba(255, 255, 255, 0.075) 46%,
        transparent 78%
    );
    transform: translateX(-130%);
    transition: transform 0.9s ease;
    pointer-events: none;
}

.benefit-card:hover {
    transform: translateY(-12px);
    border-color: rgba(96, 165, 250, 0.42);
    background:
        linear-gradient(
            145deg,
            rgba(59, 130, 246, 0.12),
            rgba(255, 255, 255, 0.034)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 34px 95px rgba(37, 99, 235, 0.16);
}

.benefit-card:hover::before {
    transform: scale(1.18);
    opacity: 1;
}

.benefit-card:hover::after {
    transform: translateX(130%);
}


/* =====================================================
   BENEFIT NUMBER
===================================================== */

.benefit-number {
    position: absolute;
    top: 26px;
    right: 30px;
    color: rgba(255, 255, 255, 0.06);
    font-size: 86px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -6px;
    user-select: none;
    transition:
        color 0.45s ease,
        transform 0.45s ease;
}

.benefit-card:hover .benefit-number {
    color: rgba(96, 165, 250, 0.1);
    transform: translateY(-5px);
}


/* =====================================================
   BENEFIT ICON
===================================================== */

.benefit-icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 30px;
    border: 1px solid rgba(125, 211, 252, 0.16);
    border-radius: 23px;
    background:
        linear-gradient(
            145deg,
            rgba(59, 130, 246, 0.32),
            rgba(6, 182, 212, 0.16)
        );
    color: #ffffff;
    font-size: 29px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 42px rgba(37, 99, 235, 0.2);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.benefit-card:nth-child(2) .benefit-icon {
    background:
        linear-gradient(
            145deg,
            rgba(16, 185, 129, 0.3),
            rgba(6, 182, 212, 0.15)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 42px rgba(16, 185, 129, 0.17);
}

.benefit-card:nth-child(3) .benefit-icon {
    background:
        linear-gradient(
            145deg,
            rgba(139, 92, 246, 0.32),
            rgba(59, 130, 246, 0.16)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 42px rgba(139, 92, 246, 0.18);
}

.benefit-card:nth-child(4) .benefit-icon {
    background:
        linear-gradient(
            145deg,
            rgba(245, 158, 11, 0.32),
            rgba(239, 68, 68, 0.15)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 18px 42px rgba(245, 158, 11, 0.17);
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-4px) rotate(-3deg) scale(1.05);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 24px 55px rgba(59, 130, 246, 0.25);
}


/* =====================================================
   BENEFIT CONTENT
===================================================== */

.benefit-card h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 780;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.benefit-card > p {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 18px 0 0;
    color: #aebdd1;
    font-size: 16px;
    line-height: 1.8;
}

.benefit-card ul {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 16px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.benefit-card li {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
    color: #dce7f5;
    font-size: 14px;
    font-weight: 600;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.benefit-card li:hover {
    transform: translateX(4px);
    border-color: rgba(74, 222, 128, 0.22);
    background: rgba(34, 197, 94, 0.07);
}


/* =====================================================
   CARD FLOAT VARIATION
===================================================== */

.benefit-card:nth-child(1),
.benefit-card:nth-child(4) {
    animation: whyCardFloatA 8s ease-in-out infinite;
}

.benefit-card:nth-child(2),
.benefit-card:nth-child(3) {
    animation: whyCardFloatB 9s ease-in-out infinite;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.6s;
}

.benefit-card:nth-child(3) {
    animation-delay: 1.1s;
}

.benefit-card:nth-child(4) {
    animation-delay: 1.5s;
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes whyAmbientGlow {
    0%,
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 0.72;
    }

    50% {
        transform: translateX(-50%) translateY(45px) scale(1.08);
        opacity: 1;
    }
}

@keyframes whyCardFloatA {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

@keyframes whyCardFloatB {
    0%,
    100% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(6px);
    }
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
    .why-section {
        padding: 120px 0;
    }

    .benefit-grid {
        gap: 22px;
    }

    .benefit-card {
        min-height: 410px;
        padding: 32px;
    }

    .benefit-card h3 {
        font-size: 27px;
    }
}

@media (max-width: 820px) {
    .why-section {
        padding: 95px 0;
    }

    .why-section .section-title {
        margin-bottom: 62px;
    }

    .why-section .section-title h2 {
        letter-spacing: -1.5px;
    }

    .why-section .section-title p {
        font-size: 16px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        margin-bottom: 100px;
    }

    .benefit-card {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .why-section {
        padding: 78px 0;
    }

    .why-section .section-title h2 {
        font-size: 37px;
    }

    .why-section .section-title p {
        margin-top: 21px;
        line-height: 1.72;
    }

    .benefit-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .benefit-number {
        top: 22px;
        right: 22px;
        font-size: 66px;
    }

    .benefit-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 25px;
        border-radius: 19px;
        font-size: 25px;
    }

    .benefit-card h3 {
        font-size: 25px;
    }

    .benefit-card ul {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .why-section::after,
    .benefit-card {
        animation: none !important;
    }

    .benefit-card,
    .benefit-icon,
    .benefit-number,
    .benefit-card li {
        transition-duration: 0.01ms !important;
    }
}

/* =====================================================
   COMPARISON SECTION
===================================================== */

.switch-comparison{

    margin:140px 0;

}

.comparison-header{

    max-width:820px;

    margin:0 auto 70px;

    text-align:center;

}

.comparison-eyebrow{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#60a5fa;

    font-size:12px;

    letter-spacing:2px;

    font-weight:700;

}

.comparison-header h3{

    margin:28px 0 20px;

    color:#fff;

    font-size:52px;

    line-height:1.15;

    font-weight:800;

}

.comparison-header p{

    color:#aebdd1;

    line-height:1.9;

    font-size:18px;

}


/* =====================================================
   GRID
===================================================== */

.comparison-grid{

    display:grid;

    grid-template-columns:1fr 130px 1fr;

    gap:35px;

    align-items:center;

}


/* =====================================================
   PANEL
===================================================== */

.comparison-panel{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    padding:40px;

    backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.08);

    transition:.45s;

}

.comparison-panel:hover{

    transform:translateY(-10px);

}

.old-way{

    background:

    linear-gradient(

    145deg,

    rgba(220,38,38,.12),

    rgba(255,255,255,.02)

    );

}

.jnr-way{

    background:

    linear-gradient(

    145deg,

    rgba(37,99,235,.16),

    rgba(255,255,255,.03)

    );

    box-shadow:

    0 20px 70px rgba(37,99,235,.12);

}


/* =====================================================
   GLOW
===================================================== */

.comparison-glow{

    position:absolute;

    width:260px;

    height:260px;

    right:-100px;

    top:-100px;

    border-radius:50%;

    background:

    radial-gradient(

    circle,

    rgba(59,130,246,.35),

    transparent

    );

    filter:blur(25px);

}


/* =====================================================
   PANEL HEADER
===================================================== */

.comparison-panel-header{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:40px;

}

.comparison-icon{

    width:70px;

    height:70px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

}

.old-icon{

    background:

    linear-gradient(

    135deg,

    #ef4444,

    #dc2626

    );

}

.jnr-icon{

    background:

    linear-gradient(

    135deg,

    #2563eb,

    #38bdf8

    );

}

.comparison-label{

    display:block;

    color:#94a3b8;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:6px;

}

.comparison-panel h4{

    margin:0;

    color:#fff;

    font-size:30px;

}


/* =====================================================
   LIST
===================================================== */

.comparison-list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.comparison-item{

    display:flex;

    gap:18px;

    padding:18px;

    border-radius:18px;

    transition:.35s;

}

.comparison-item:hover{

    transform:translateX(8px);

}

.comparison-item strong{

    display:block;

    color:#fff;

    margin-bottom:6px;

    font-size:17px;

}

.comparison-item p{

    color:#b6c2d5;

    line-height:1.7;

    font-size:14px;

    margin:0;

}


/* =====================================================
   STATUS
===================================================== */

.comparison-status{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    font-size:16px;

}

.negative .comparison-status{

    background:rgba(239,68,68,.18);

    color:#ef4444;

}

.positive .comparison-status{

    background:rgba(34,197,94,.16);

    color:#22c55e;

}

.negative:hover{

    background:rgba(239,68,68,.08);

}

.positive:hover{

    background:rgba(34,197,94,.08);

}


/* =====================================================
   SWITCH
===================================================== */

.comparison-transition{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:18px;

}

.transition-line{

    width:2px;

    flex:1;

    min-height:80px;

    background:

    linear-gradient(

    to bottom,

    transparent,

    #60a5fa,

    transparent

    );

}

.transition-badge{

    width:92px;

    height:92px;

    border-radius:50%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    color:#fff;

    background:

    linear-gradient(

    135deg,

    #2563eb,

    #38bdf8

    );

    box-shadow:

    0 20px 60px rgba(37,99,235,.30);

    animation:switchPulse 2.6s infinite;

}

.transition-badge span{

    margin-top:5px;

    font-size:12px;

    letter-spacing:2px;

}

.transition-badge i{

    font-size:26px;

}

/* =====================================================
   SWITCH ANIMATION
===================================================== */

@keyframes switchPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 20px 60px rgba(37, 99, 235, 0.3),
            0 0 0 0 rgba(56, 189, 248, 0.28);
    }

    50% {
        transform: scale(1.06);
        box-shadow:
            0 24px 75px rgba(37, 99, 235, 0.4),
            0 0 0 18px rgba(56, 189, 248, 0);
    }
}


/* =====================================================
   IMPACT SECTION
===================================================== */

.impact-section {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 70px;
    align-items: center;
    margin: 150px 0;
}

.impact-intro {
    max-width: 470px;
}

.impact-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 17px;
    border: 1px solid rgba(96, 165, 250, 0.18);
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.07);
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.impact-intro h3 {
    margin: 28px 0 22px;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 850;
    line-height: 1.03;
    letter-spacing: -2.2px;
}

.impact-intro p {
    margin: 0;
    color: #aebdd1;
    font-size: 17px;
    line-height: 1.85;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.impact-card {
    position: relative;
    min-height: 260px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.022)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 22px 65px rgba(0, 0, 0, 0.16);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.impact-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    top: -80px;
    right: -70px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.24),
        transparent 68%
    );
    transition: transform 0.5s ease;
}

.impact-card:nth-child(2)::before {
    background: radial-gradient(
        circle,
        rgba(34, 197, 94, 0.22),
        transparent 68%
    );
}

.impact-card:nth-child(3)::before {
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.22),
        transparent 68%
    );
}

.impact-card:nth-child(4)::before {
    background: radial-gradient(
        circle,
        rgba(6, 182, 212, 0.23),
        transparent 68%
    );
}

.impact-card:hover {
    transform: translateY(-9px);
    border-color: rgba(96, 165, 250, 0.32);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 30px 80px rgba(37, 99, 235, 0.14);
}

.impact-card:hover::before {
    transform: scale(1.18);
}

.impact-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 26px;
    border-radius: 17px;
    background: rgba(59, 130, 246, 0.14);
    color: #7dd3fc;
    font-size: 22px;
}

.impact-card:nth-child(2) .impact-icon {
    background: rgba(34, 197, 94, 0.13);
    color: #4ade80;
}

.impact-card:nth-child(3) .impact-icon {
    background: rgba(139, 92, 246, 0.14);
    color: #c4b5fd;
}

.impact-card:nth-child(4) .impact-icon {
    background: rgba(6, 182, 212, 0.14);
    color: #67e8f9;
}

.impact-value {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    color: #ffffff;
}

.impact-value .why-counter {
    font-size: 54px;
    font-weight: 880;
    line-height: 0.95;
    letter-spacing: -2px;
}

.impact-value small {
    margin-bottom: 6px;
    color: #7dd3fc;
    font-size: 16px;
    font-weight: 800;
}

.impact-unit {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 12px;
    color: #e6edf7;
    font-size: 15px;
    font-weight: 700;
}

.impact-card p {
    position: relative;
    z-index: 2;
    margin: 15px 0 0;
    color: #9eacc0;
    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   CONNECTED FLOW SECTION
===================================================== */

.connected-flow-section {
    position: relative;
    margin: 150px 0;
    padding: 70px 54px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 34px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(59, 130, 246, 0.16),
            transparent 40%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 35px 100px rgba(0, 0, 0, 0.2);
}

.connected-flow-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    pointer-events: none;
}

.connected-flow-header {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 75px;
    text-align: center;
}

.connected-flow-eyebrow {
    display: inline-flex;
    padding: 8px 17px;
    border: 1px solid rgba(125, 211, 252, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #7dd3fc;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.connected-flow-header h3 {
    margin: 28px 0 22px;
    color: #ffffff;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -2px;
}

.connected-flow-header p {
    margin: 0 auto;
    max-width: 680px;
    color: #aebdd1;
    font-size: 17px;
    line-height: 1.85;
}


/* =====================================================
   CONNECTED FLOW
===================================================== */

.connected-flow {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.flow-node {
    position: relative;
    width: 160px;
    min-height: 170px;
    padding: 24px 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.038);
    text-align: center;
    opacity: 0.6;
    transform: scale(0.96);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease,
        box-shadow 0.45s ease;
}

.flow-node.active {
    opacity: 1;
    transform: scale(1.05);
    border-color: rgba(96, 165, 250, 0.46);
    background:
        linear-gradient(
            145deg,
            rgba(59, 130, 246, 0.19),
            rgba(6, 182, 212, 0.07)
        );
    box-shadow:
        0 20px 55px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.flow-node.completed {
    opacity: 0.88;
    border-color: rgba(34, 197, 94, 0.28);
    background: rgba(34, 197, 94, 0.06);
}

.flow-node-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(59, 130, 246, 0.24),
            rgba(6, 182, 212, 0.12)
        );
    color: #ffffff;
    font-size: 23px;
    box-shadow: 0 14px 35px rgba(37, 99, 235, 0.16);
    transition: transform 0.4s ease;
}

.flow-node.active .flow-node-icon {
    animation: flowIconPulse 1.8s ease-in-out infinite;
}

.flow-node-label {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 780;
}

.flow-node small {
    display: block;
    margin-top: 8px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.5;
}

.flow-connector {
    position: relative;
    flex: 1;
    min-width: 42px;
    max-width: 90px;
    height: 34px;
    display: flex;
    align-items: center;
}

.flow-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            rgba(96, 165, 250, 0.08),
            rgba(96, 165, 250, 0.72),
            rgba(96, 165, 250, 0.08)
        );
}

.flow-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7dd3fc;
    box-shadow: 0 0 18px rgba(125, 211, 252, 0.9);
    animation: flowPulseMove 2.2s linear infinite;
}

.flow-connector i {
    position: absolute;
    right: -3px;
    color: #60a5fa;
    font-size: 18px;
}


/* =====================================================
   CONNECTED MESSAGE
===================================================== */

.connected-message {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 72px;
}

.connected-message-line {
    flex: 1;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(96, 165, 250, 0.38)
        );
}

.connected-message-line:last-child {
    background:
        linear-gradient(
            90deg,
            rgba(96, 165, 250, 0.38),
            transparent
        );
}

.connected-message-content {
    text-align: center;
}

.connected-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #7dd3fc;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.connected-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.38);
    animation: connectedDot 2s infinite;
}

.connected-message-content h4 {
    margin: 15px 0 10px;
    color: #ffffff;
    font-size: 34px;
    font-weight: 820;
    letter-spacing: -1px;
}

.connected-message-content p {
    margin: 0;
    color: #9eacc0;
    font-size: 14px;
}


/* =====================================================
   CTA
===================================================== */

.why-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    margin-top: 140px;
    padding: 58px 62px;
    overflow: hidden;
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 32px;
    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.26),
            rgba(6, 182, 212, 0.11),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.09),
        0 35px 100px rgba(37, 99, 235, 0.17);
}

.why-cta-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    right: -120px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.35),
        transparent 68%
    );
    filter: blur(20px);
    animation: whyCtaGlow 6s ease-in-out infinite;
}

.why-cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.why-cta-eyebrow {
    color: #bae6fd;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 2px;
}

.why-cta h3 {
    margin: 20px 0 18px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -1.7px;
}

.why-cta p {
    margin: 0;
    color: #c3d1e2;
    font-size: 16px;
    line-height: 1.8;
}

.why-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 13px;
    min-width: 220px;
}

.why-primary-button,
.why-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 14px 25px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 760;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.why-primary-button {
    background: #ffffff;
    color: #0b1220;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.why-primary-button:hover {
    transform: translateY(-4px);
    color: #0b1220;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
}

.why-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.055);
    color: #ffffff;
}

.why-secondary-button:hover {
    transform: translateY(-4px);
    border-color: rgba(125, 211, 252, 0.35);
    background: rgba(255, 255, 255, 0.09);
    color: #ffffff;
}


/* =====================================================
   REVEAL
===================================================== */

.why-section .reveal {
    opacity: 0;
    transform: translateY(38px);
    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
}

.why-section .reveal.show {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   ADDITIONAL ANIMATIONS
===================================================== */

@keyframes flowIconPulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 14px 35px rgba(37, 99, 235, 0.16);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 18px 48px rgba(56, 189, 248, 0.3);
    }
}

@keyframes flowPulseMove {
    0% {
        left: 0;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 8px);
        opacity: 0;
    }
}

@keyframes connectedDot {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes whyCtaGlow {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.72;
    }

    50% {
        transform: translate(-35px, 35px) scale(1.12);
        opacity: 1;
    }
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1180px) {
    .comparison-grid {
        grid-template-columns: 1fr 90px 1fr;
        gap: 24px;
    }

    .comparison-panel {
        padding: 32px;
    }

    .impact-section {
        grid-template-columns: 1fr;
    }

    .impact-intro {
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .connected-flow-section {
        padding: 60px 34px;
    }

    .flow-node {
        width: 145px;
    }
}

@media (max-width: 940px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-transition {
        flex-direction: row;
        min-height: auto;
    }

    .transition-line {
        width: auto;
        height: 2px;
        min-height: 0;
        flex: 1;
        background:
            linear-gradient(
                90deg,
                transparent,
                #60a5fa,
                transparent
            );
    }

    .transition-badge {
        width: 76px;
        height: 76px;
    }

    .transition-badge i {
        transform: rotate(90deg);
    }

    .connected-flow {
        flex-direction: column;
    }

    .flow-node {
        width: 100%;
        max-width: 430px;
        min-height: 145px;
    }

    .flow-connector {
        width: 34px;
        height: 70px;
        min-width: 0;
        max-width: none;
        flex: none;
    }

    .flow-line {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: auto;
        background:
            linear-gradient(
                180deg,
                rgba(96, 165, 250, 0.08),
                rgba(96, 165, 250, 0.72),
                rgba(96, 165, 250, 0.08)
            );
    }

    .flow-pulse {
        left: 50%;
        transform: translateX(-50%);
        animation: flowPulseMoveVertical 2.2s linear infinite;
    }

    .flow-connector i {
        right: auto;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }

    .why-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-cta-actions {
        width: 100%;
        flex-direction: row;
    }

    .why-primary-button,
    .why-secondary-button {
        flex: 1;
    }
}

@keyframes flowPulseMoveVertical {
    0% {
        top: 0;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        top: calc(100% - 8px);
        opacity: 0;
    }
}

@media (max-width: 720px) {
    .switch-comparison,
    .impact-section,
    .connected-flow-section {
        margin: 105px 0;
    }

    .comparison-header h3 {
        font-size: 40px;
    }

    .comparison-header p {
        font-size: 16px;
    }

    .comparison-panel {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .comparison-panel-header {
        margin-bottom: 30px;
    }

    .comparison-icon {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 23px;
    }

    .comparison-panel h4 {
        font-size: 25px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .connected-flow-section {
        padding: 52px 22px;
        border-radius: 26px;
    }

    .connected-message {
        gap: 14px;
    }

    .connected-message-line {
        display: none;
    }

    .connected-message {
        justify-content: center;
    }

    .why-cta {
        margin-top: 105px;
        padding: 42px 28px;
        border-radius: 26px;
    }

    .why-cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .comparison-header h3 {
        font-size: 34px;
    }

    .comparison-item {
        padding: 15px 12px;
        gap: 13px;
    }

    .comparison-status {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .comparison-item strong {
        font-size: 15px;
    }

    .comparison-item p {
        font-size: 13px;
    }

    .impact-card {
        min-height: auto;
        padding: 26px 22px;
    }

    .impact-value .why-counter {
        font-size: 46px;
    }

    .connected-flow-header h3 {
        font-size: 35px;
    }

    .connected-flow-header p {
        font-size: 15px;
    }

    .flow-node {
        padding: 22px 16px;
        border-radius: 20px;
    }

    .connected-message-content h4 {
        font-size: 28px;
    }

    .why-cta {
        padding: 36px 22px;
    }

    .why-cta h3 {
        font-size: 34px;
    }

    .why-primary-button,
    .why-secondary-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .transition-badge,
    .flow-node.active .flow-node-icon,
    .flow-pulse,
    .connected-status-dot,
    .why-cta-glow {
        animation: none !important;
    }

    .why-section .reveal {
        opacity: 1;
        transform: none;
    }
}

