/* =========================================================
   Validate Why It Works Page - Begin
   ========================================================= */

.validate-why-page {
    overflow-x:hidden;
    font-family:Arial, Helvetica, sans-serif;
}

.validate-why-page,
.validate-why-page * {
    box-sizing:border-box;
}

.wiw-hero{
    background:#FFFFFF;
    padding:72px 40px 120px;
    overflow:hidden;
}

.wiw-hero-container{
    max-width:1380px;
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(520px,620px);
    gap:clamp(36px,5vw,80px);
    align-items:center;
}

/* LEFT SIDE */

.wiw-hero-left{
    max-width:900px;
    position:relative;
    z-index:10;
}

.wiw-hero-kicker{
    display:inline-block;
    margin-bottom:28px;
    color:#2677FF;
    font-size:17px;
    line-height:1;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.wiw-hero-title{
    max-width:760px;
    margin:0 0 34px;
    color:#07142F;
    font-family:Arial, Helvetica, sans-serif;
    font-size:clamp(52px,4.8vw,74px);
    line-height:.96;
    letter-spacing:-.04em;
    font-weight:900;
}

.wiw-hero-text{
    max-width:780px;
    margin:0 0 28px;
    color:#5B6470;
    font-family:Arial, Helvetica, sans-serif;
    font-size:20px;
    line-height:1.7;
    font-weight:500;
}

.wiw-hero-highlight{
    margin:0 0 46px;
    color:#07142F;
    font-family:Arial, Helvetica, sans-serif;
    font-size:22px;
    line-height:1.5;
    font-weight:800;
}

.wiw-hero-buttons{
    display:flex;
    gap:18px;
    align-items:center;
    flex-wrap:wrap;
}

.wiw-hero-buttons .validate-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:58px;
    padding:0 32px;
    border:2px solid transparent;
    border-radius:999px;
    font-family:Arial, Helvetica, sans-serif;
    font-size:17px;
    line-height:1;
    font-weight:900;
    text-align:center;
    text-decoration:none;
    transition:background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.wiw-hero-buttons .validate-btn:hover,
.wiw-hero-buttons .validate-btn:focus{
    text-decoration:none;
    transform:translateY(-2px);
}

.wiw-hero-buttons .validate-btn-primary,
.wiw-hero-buttons .validate-btn-primary:visited{
    background:#1D72F3;
    border-color:#1D72F3;
    color:#FFFFFF;
    box-shadow:0 18px 34px rgba(29,114,243,.22);
}

.wiw-hero-buttons .validate-btn-primary:hover,
.wiw-hero-buttons .validate-btn-primary:focus{
    background:#145ED0;
    border-color:#145ED0;
    color:#FFFFFF;
    box-shadow:0 22px 42px rgba(29,114,243,.28);
}

.wiw-hero-buttons .validate-btn-secondary,
.wiw-hero-buttons .validate-btn-secondary:visited{
    background:#FFFFFF;
    border-color:#1D72F3;
    color:#1D72F3;
    box-shadow:0 14px 28px rgba(15,23,42,.08);
}

.wiw-hero-buttons .validate-btn-secondary:hover,
.wiw-hero-buttons .validate-btn-secondary:focus{
    background:#F0F6FF;
    border-color:#145ED0;
    color:#145ED0;
    box-shadow:0 18px 34px rgba(15,23,42,.12);
}

/* RIGHT SIDE */

.wiw-hero-right{
    position:relative;
    width:min(620px,100%);
    height:620px;
    margin:0 auto;
    transform:none;
    left:auto;
    overflow:visible;
}

/* RINGS */

.wiw-ring{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    border:2px dashed #DCEAFF;
    border-radius:50%;
    opacity:.34;
    pointer-events:none;
    z-index:1;
}

.wiw-ring-outer{
    width:500px;
    height:500px;
    animation:wiwOrbit 18s linear infinite;
}

.wiw-ring-inner{
    width:340px;
    height:340px;
}

/* BLUE ORBIT DOT */

.wiw-ring-outer::after{
    content:"";
    position:absolute;
    top:-9px;
    left:50%;
    transform:translateX(-50%);
    width:18px;
    height:18px;
    border-radius:50%;
    background:#2677FF;
    box-shadow:
        0 0 0 8px rgba(38,119,255,.10),
        0 8px 20px rgba(38,119,255,.30);
}

@keyframes wiwOrbit{
    from{
        transform:translate(-50%,-50%) rotate(0deg);
    }

    to{
        transform:translate(-50%,-50%) rotate(360deg);
    }
}

/* CENTER CARD */

.wiw-center-card{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:320px;
    height:320px;
    background:#FFFFFF;
    border:1px solid #E8EEF7;
    border-radius:28px;
    box-shadow:0 30px 80px rgba(7,20,47,.09);
    overflow:visible;
    z-index:20;
}

.wiw-card-title{
    position:relative;
    z-index:6;
    margin:34px 0 10px;
    text-align:center;
    color:#07142F;
    font-size:20px;
    line-height:1.2;
    font-weight:850;
}

/* THOUGHT BUBBLES */

.wiw-thought{
    position:absolute;
    display:flex;
    align-items:center;
    width:220px;
    min-height:94px;
    padding:20px 22px;
    background:#FFFFFF;
    border:1px solid #E6EDF8;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(7,20,47,.08);
    color:#07142F;
    font-size:18px;
    line-height:1.35;
    font-weight:750;
    z-index:40;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.wiw-thought:hover{
    transform:translateY(-6px);
    border-color:#2677FF;
    box-shadow:0 28px 60px rgba(38,119,255,.16);
}

.wiw-thought.thought-top{
    left:50%;
    top:0;
    transform:translateX(-50%);
}

.wiw-thought.thought-top:hover{
    transform:translateX(-50%) translateY(-6px);
}

.wiw-thought.thought-left{
    left:0;
    top:190px;
}

.wiw-thought.thought-right{
    right:0;
    top:190px;
}

.wiw-thought.thought-bottom-left{
    left:70px;
    bottom:0;
}

.wiw-thought.thought-bottom-right{
    right:70px;
    bottom:0;
}

/* RESPONSIVE */

@media(max-width:1180px){
    .wiw-hero-container{
        grid-template-columns:1fr;
        gap:70px;
    }

    .wiw-hero-left{
        max-width:100%;
    }

    .wiw-hero-title{
        font-size:clamp(44px,7vw,62px);
    }

    .wiw-hero-right{
        width:620px;
        max-width:100%;
        margin:0 auto;
    }
}

@media(max-width:760px){
    .wiw-hero{
        padding:52px 22px 80px;
    }

    .wiw-hero-title{
        font-size:clamp(38px,11vw,48px);
        line-height:.98;
    }

    .wiw-hero-text{
        font-size:18px;
    }

    .wiw-hero-highlight{
        font-size:20px;
    }

    .wiw-hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .wiw-hero-buttons .validate-btn{
        width:100%;
        justify-content:center;
    }

    .wiw-hero-right{
        width:620px;
        max-width:none;
        height:500px;
        transform:scale(.74);
        transform-origin:top center;
        margin-left:50%;
        left:-230px;
    }
}

@media(prefers-reduced-motion:reduce){
    .wiw-ring-outer{
        animation:none;
    }

    .wiw-thought{
        transition:none;
    }
}

/* ==========================================================
   WHY IT WORKS HERO
   PART B - CENTER GRAPHIC ONLY
   Replace the existing WIW Part B block with this entire block.
========================================================== */

.wiw-document{
    position:absolute;
    left:50%;
    top:61%;
    transform:translate(-50%,-50%);
    width:176px;
    height:210px;
    background:#FFFFFF;
    border:2px solid #DCE6F5;
    border-radius:14px;
    z-index:2;
}

/* FOLD */

.wiw-document-fold{
    position:absolute;
    top:-2px;
    right:-2px;
    width:38px;
    height:38px;
    background:#F8FAFE;
    border-left:2px solid #DCE6F5;
    border-bottom:2px solid #DCE6F5;
    clip-path:polygon(100% 0,0 0,100% 100%);
}

/* DOLLAR */

.wiw-dollar{
    position:absolute;
    left:50%;
    top:40px;
    transform:translateX(-50%);
    color:#2677FF;
    font-size:48px;
    line-height:1;
    font-weight:900;
}

/* INVOICE LINES */

.wiw-line{
    position:absolute;
    left:38px;
    height:6px;
    background:#D7E4F7;
    border-radius:20px;
}

.wiw-line.line1{
    width:96px;
    top:96px;
}

.wiw-line.line2{
    width:74px;
    top:119px;
}

.wiw-line.line3{
    width:106px;
    top:142px;
}

/* CLOCK */

.wiw-clock{
    position:absolute;
    left:-28px;
    top:42px;
    width:54px;
    height:54px;
    border:4px solid #2677FF;
    border-radius:50%;
    background:#FFFFFF;
    z-index:5;
    box-shadow:0 8px 18px rgba(38,119,255,.10);
}

.wiw-clock::before{
    content:"";
    position:absolute;
    left:50%;
    top:9px;
    width:4px;
    height:17px;
    background:#2677FF;
    transform:translateX(-50%);
}

.wiw-clock::after{
    content:"";
    position:absolute;
    left:50%;
    top:25px;
    width:15px;
    height:4px;
    background:#2677FF;
}

/* CHAT */

.wiw-chat{
    position:absolute;
    right:-36px;
    top:88px;
    width:62px;
    height:50px;
    background:#2677FF;
    border-radius:12px;
    z-index:5;
    box-shadow:0 10px 24px rgba(38,119,255,.16);
}

.wiw-chat::after{
    content:"";
    position:absolute;
    left:15px;
    bottom:-7px;
    width:14px;
    height:14px;
    background:#2677FF;
    transform:rotate(45deg);
}

.wiw-chat span{
    display:block;
    position:absolute;
    top:21px;
    width:6px;
    height:6px;
    background:#FFFFFF;
    border-radius:50%;
}

.wiw-chat span:nth-child(1){
    left:14px;
}

.wiw-chat span:nth-child(2){
    left:28px;
}

.wiw-chat span:nth-child(3){
    left:42px;
}

/* fallback if Bravo strips spans */
.wiw-chat:before{
    content:"";
    position:absolute;
    top:21px;
    left:14px;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#FFFFFF;
    box-shadow:
        14px 0 0 #FFFFFF,
        28px 0 0 #FFFFFF;
}

/* CALENDAR */

.wiw-calendar{
    position:absolute;
    right:-13px;
    bottom:10px;
    width:58px;
    height:65px;
    background:#FFFFFF;
    border:2px solid #DCE6F5;
    border-radius:8px;
    z-index:4;
    overflow:hidden;
    box-shadow:0 8px 18px rgba(7,20,47,.05);
}

.wiw-calendar-header{
    height:14px;
    background:#2677FF;
    border-radius:6px 6px 0 0;
}

.wiw-calendar-body{
    position:absolute;
    left:8px;
    right:8px;
    top:22px;
    bottom:8px;
    border-top:2px solid #DCE6F5;
}

/* AVATAR */

.wiw-avatar{
    position:absolute;
    left:-24px;
    bottom:-14px;
    width:56px;
    height:56px;
    background:#FFFFFF;
    border:2px solid #DCE6F5;
    border-radius:50%;
    z-index:5;
    box-shadow:0 8px 18px rgba(7,20,47,.05);
}

.wiw-avatar-head{
    width:18px;
    height:18px;
    margin:9px auto 4px;
    background:#2677FF;
    border-radius:50%;
}

.wiw-avatar-body{
    width:30px;
    height:16px;
    margin:0 auto;
    background:#2677FF;
    border-radius:18px 18px 8px 8px;
}
/* ==========================================================
   WHY IT WORKS
   SECTION — EVERY UNPAID INVOICE IS A DECISION
   PART A - Layout & Typography
========================================================== */

.why-decision-section{

    position:relative;
    overflow:hidden;

    padding:130px 30px;

    background:#ffffff;

}

.why-decision-inner{

    max-width:900px;
    margin:0 auto;
    text-align:center;
    position:relative;
    z-index:2;

}

.why-decision-kicker{

    display:inline-block;

    margin-bottom:22px;
    padding:10px 20px;

    font-size:13px;
    font-weight:700;
    letter-spacing:.18em;
    text-transform:uppercase;

    color:#2563eb;

    background:#eff6ff;

    border:1px solid #dbeafe;
    border-radius:999px;

}

.why-decision-title{

    margin:0 0 48px;

    font-size:clamp(2.8rem,5vw,4.6rem);
    line-height:1.08;
    font-weight:800;
    letter-spacing:-.03em;

    color:#111827;

}

.why-decision-copy{

    max-width:760px;
    margin:0 auto;

}

.why-decision-copy p{

    margin:0 0 34px;

    font-size:1.38rem;
    line-height:1.9;
    font-weight:400;

    color:#4b5563;

}

.why-decision-copy p:last-child{

    margin-bottom:0;

}

.why-decision-emphasis{

    margin:58px 0;

    font-size:2rem !important;
    line-height:1.35;

    font-weight:700 !important;

    color:#111827 !important;

}

.why-decision-copy strong{

    font-weight:700;
    color:#111827;

}

.why-decision-footer{

    margin-top:70px;

    display:flex;
    flex-direction:column;
    align-items:center;

}

.why-decision-footer span{

    width:120px;
    height:2px;

    margin-bottom:32px;

    background:#2563eb;

}

.why-decision-footer p{

    margin:0;

    font-size:1.2rem;
    font-weight:700;
    letter-spacing:.02em;

    color:#2563eb;

}
/* ==========================================================
   WHY IT WORKS
   SECTION — EVERY UNPAID INVOICE IS A DECISION
   PART B - Premium Styling & Responsive
========================================================== */

.why-decision-section::before{

    content:"";

    position:absolute;
    top:-220px;
    right:-180px;

    width:520px;
    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(37,99,235,.08) 0%,
        rgba(37,99,235,0) 72%);

    pointer-events:none;

}

.why-decision-section::after{

    content:"";

    position:absolute;
    left:-180px;
    bottom:-220px;

    width:480px;
    height:480px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(15,23,42,.05) 0%,
        rgba(15,23,42,0) 72%);

    pointer-events:none;

}

.why-decision-title{

    text-wrap:balance;

}

.why-decision-copy{

    text-wrap:pretty;

}

.why-decision-copy p{

    transition:all .35s ease;

}

.why-decision-copy p:hover{

    color:#1f2937;

}

.why-decision-emphasis{

    position:relative;

}

.why-decision-emphasis::before{

    content:"";

    display:block;

    width:70px;
    height:4px;

    margin:0 auto 26px;

    background:#2563eb;
    border-radius:20px;

}

.why-decision-footer span{

    border-radius:10px;

    background:linear-gradient(
        90deg,
        rgba(37,99,235,.15),
        #2563eb,
        rgba(37,99,235,.15)
    );

}

@media (max-width:991px){

    .why-decision-section{

        padding:100px 24px;

    }

    .why-decision-copy p{

        font-size:1.22rem;
        line-height:1.8;

    }

    .why-decision-emphasis{

        font-size:1.7rem !important;

    }

}

@media (max-width:768px){

    .why-decision-section{

        padding:80px 22px;

    }

    .why-decision-title{

        margin-bottom:36px;

    }

    .why-decision-copy p{

        margin-bottom:28px;

        font-size:1.1rem;
        line-height:1.75;

    }

    .why-decision-emphasis{

        margin:44px 0;

        font-size:1.45rem !important;

    }

    .why-decision-footer{

        margin-top:52px;

    }

}

@media (max-width:480px){

    .why-decision-kicker{

        font-size:11px;
        letter-spacing:.14em;

    }

    .why-decision-footer p{

        font-size:1rem;

    }

}
/* ==========================================================
   WHY IT WORKS
   SECTION 02
   EVERY UNPAID INVOICE IS A DECISION
   PART A
   LAYOUT
========================================================== */

.wiw-decision-section{

    padding:90px 0;

    background:#FFFFFF;

    overflow:hidden;

}

.wiw-decision-section .validate-container{

    max-width:1380px;

    margin:0 auto;

}


/* ==========================================================
   SECTION HEADER
========================================================== */

.wiw-section-header{

    max-width:860px;

    margin:0 auto 70px;

    text-align:center;

}

.wiw-section-eyebrow{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 20px;

    margin-bottom:22px;

    background:#EEF5FF;

    border-radius:999px;

    color:#2677FF;

    font-size:13px;

    line-height:1;

    font-weight:800;

    letter-spacing:.14em;

    text-transform:uppercase;

}

.wiw-section-title{

    margin:0 0 22px;

    color:#07142F;

    font-size:58px;

    line-height:1.05;

    font-weight:900;

    letter-spacing:-.04em;

}

.wiw-section-intro{

    margin:0 0 18px;

    color:#07142F;

    font-size:24px;

    line-height:1.45;

    font-weight:700;

}

.wiw-section-description{

    max-width:760px;

    margin:0 auto;

    color:#5B6470;

    font-size:19px;

    line-height:1.75;

    font-weight:500;

}


/* ==========================================================
   DECISION MAP
========================================================== */

.wiw-decision-map{

    max-width:1320px;

    margin:0 auto 70px;

}

.wiw-decision-hub{

    max-width:700px;

    margin:0 auto 46px;

    text-align:center;

}

.wiw-hub-invoice{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 32px;

    margin-bottom:20px;

    border-radius:999px;

    background:#07142F;

    color:#FFFFFF;

    font-size:15px;

    line-height:1;

    font-weight:700;

    letter-spacing:.05em;

    text-transform:uppercase;

}

.wiw-hub-line{

    width:2px;

    height:36px;

    margin:0 auto;

}

.wiw-hub-circle{

    width:18px;

    height:18px;

    margin:0 auto 18px;

    border-radius:50%;

}

.wiw-hub-title{

    max-width:420px;

    margin:0 auto;

    color:#07142F;

    font-size:28px;

    line-height:1.2;

    font-weight:850;

}

.wiw-decision-grid{

    display:grid;

    grid-template-columns:repeat(4,minmax(0,1fr));

    gap:22px;

}

.wiw-decision-card{

    min-height:180px;

    padding:26px 24px;

    border-radius:20px;

    text-align:center;

}

.wiw-decision-card-title{

    margin-bottom:14px;

    color:#07142F;

    font-size:22px;

    line-height:1.2;

    font-weight:850;

}

.wiw-decision-card p{

    margin:0;

    color:#5B6470;

    font-size:16px;

    line-height:1.65;

}


/* ==========================================================
   SIGNAL
========================================================== */

.wiw-signal-block{

    max-width:920px;

    margin:0 auto 70px;

    text-align:center;

}

.wiw-signal-label{

    margin-bottom:14px;

    color:#2677FF;

    font-size:13px;

    line-height:1;

    font-weight:800;

    letter-spacing:.14em;

    text-transform:uppercase;

}

.wiw-signal-title{

    margin:0;

    color:#07142F;

    font-size:50px;

    line-height:1.05;

    font-weight:900;

    letter-spacing:-.04em;

}


/* ==========================================================
   THINKING COMPARISON
========================================================== */

.wiw-thinking-grid{

    max-width:1220px;

    margin:0 auto 70px;

    display:grid;

    grid-template-columns:minmax(0,1fr) 90px minmax(0,1fr);

    gap:24px;

    align-items:stretch;

}

.wiw-thinking-card{

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    min-height:215px;

    padding:34px;

    border-radius:22px;

}

.wiw-thinking-label{

    margin-bottom:14px;

    font-size:13px;

    line-height:1;

    font-weight:800;

    letter-spacing:.12em;

    text-transform:uppercase;

}

.wiw-thinking-card h4{

    margin:0 0 16px;

    color:#07142F;

    font-size:30px;

    line-height:1.15;

    font-weight:850;

}

.wiw-thinking-card p{

    margin:0;

    color:#5B6470;

    font-size:17px;

    line-height:1.65;

}

.wiw-thinking-arrow{

    display:flex;

    align-items:center;

    justify-content:center;

    align-self:center;

}


/* ==========================================================
   CLOSING
========================================================== */

.wiw-section-closing{

    max-width:760px;

    margin:0 auto;

    text-align:center;

}

.wiw-section-closing h3{

    margin:0;

    color:#07142F;

    font-size:40px;

    line-height:1.15;

    font-weight:900;

    letter-spacing:-.03em;

}
/* ==========================================================
   WHY IT WORKS
   SECTION 02
   EVERY UNPAID INVOICE IS A DECISION
   PART B
   VISUAL DESIGN
========================================================== */


/* ==========================================================
   SECTION BACKGROUND
========================================================== */

.wiw-decision-section{

    position:relative;

}

.wiw-decision-section:before{

    content:"";

    position:absolute;

    top:-220px;
    right:-220px;

    width:520px;
    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(38,119,255,.05) 0%,
        rgba(38,119,255,0) 72%);

    pointer-events:none;

}

.wiw-decision-section:after{

    content:"";

    position:absolute;

    left:-220px;
    bottom:-220px;

    width:520px;
    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
        rgba(7,20,47,.04) 0%,
        rgba(7,20,47,0) 72%);

    pointer-events:none;

}


/* ==========================================================
   DECISION HUB
========================================================== */

.wiw-hub-line{

    background:#DCE6F4;

}

.wiw-hub-circle{

    background:#2677FF;

    box-shadow:
        0 0 0 8px rgba(38,119,255,.10),
        0 8px 20px rgba(38,119,255,.18);

}


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

.wiw-decision-grid{

    position:relative;

}

.wiw-decision-grid:before{

    content:"";

    position:absolute;

    left:12%;
    right:12%;

    top:-24px;

    height:2px;

    background:#DCE6F4;

}

.wiw-decision-card{

    position:relative;

    background:#FFFFFF;

    border:1px solid #E4EBF5;

    box-shadow:0 12px 28px rgba(7,20,47,.05);

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background-color .25s ease;

}

.wiw-decision-card:before{

    content:"";

    position:absolute;

    top:-26px;
    left:50%;

    width:2px;
    height:26px;

    margin-left:-1px;

    background:#DCE6F4;

}

.wiw-decision-card:hover{

    border-color:#2677FF;

    box-shadow:0 18px 40px rgba(38,119,255,.10);

}

.wiw-decision-card-title{

    transition:color .25s ease;

}

.wiw-decision-card:hover .wiw-decision-card-title{

    color:#2677FF;

}


/* ==========================================================
   SIGNAL
========================================================== */

.wiw-signal-block{

    position:relative;

    padding:40px 36px;

}

.wiw-signal-block:before{

    content:"";

    display:block;

    width:90px;
    height:3px;

    margin:0 auto 24px;

    background:#2677FF;

    border-radius:20px;

}

.wiw-signal-block:after{

    content:"";

    display:block;

    width:90px;
    height:3px;

    margin:24px auto 0;

    background:#2677FF;

    border-radius:20px;

}


/* ==========================================================
   THINKING COMPARISON
========================================================== */

.wiw-thinking-card{

    background:#FFFFFF;

    border:1px solid #E4EBF5;

    box-shadow:0 14px 34px rgba(7,20,47,.05);

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease;

}

.wiw-thinking-card:hover{

    border-color:#C9DDFB;

    box-shadow:0 18px 42px rgba(7,20,47,.08);

}


/* ==========================================================
   VALIDATE CARD
========================================================== */

.wiw-thinking-card-highlight{

    background:linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F5FAFF 100%
    );

    border:2px solid #2677FF;

    box-shadow:0 20px 46px rgba(38,119,255,.10);

}

.wiw-thinking-card-highlight .wiw-thinking-label{

    color:#2677FF;

}


/* ==========================================================
   OR CONNECTOR
========================================================== */

.wiw-thinking-arrow{

    position:relative;

    color:#2677FF;

    font-size:22px;

    font-weight:900;

    letter-spacing:.14em;

    text-transform:uppercase;

}

.wiw-thinking-arrow:before{

    content:"";

    position:absolute;

    top:50%;
    left:-44px;

    width:30px;
    height:2px;

    margin-top:-1px;

    background:#2677FF;

}

.wiw-thinking-arrow:after{

    content:"";

    position:absolute;

    top:50%;
    right:-44px;

    width:30px;
    height:2px;

    margin-top:-1px;

    background:#2677FF;

}


/* ==========================================================
   CLOSING
========================================================== */

.wiw-section-closing{

    position:relative;

    padding-top:24px;

}

.wiw-section-closing:before{

    content:"";

    display:block;

    width:100px;
    height:2px;

    margin:0 auto 28px;

    background:#2677FF;

}


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

@media (max-width:1100px){

    .wiw-decision-grid{

        grid-template-columns:repeat(2,minmax(0,1fr));

        gap:20px;

    }

    .wiw-decision-grid:before{

        display:none;

    }

    .wiw-decision-card:before{

        display:none;

    }

    .wiw-thinking-grid{

        grid-template-columns:1fr;

        gap:24px;

    }

    .wiw-thinking-arrow{

        margin:4px 0;

    }

    .wiw-thinking-arrow:before,
    .wiw-thinking-arrow:after{

        display:none;

    }

}

@media (max-width:768px){

    .wiw-decision-section{

        padding:70px 0;

    }

    .wiw-section-title{

        font-size:42px;

    }

    .wiw-hub-title{

        font-size:22px;

    }

    .wiw-decision-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .wiw-decision-card{

        min-height:auto;

    }

    .wiw-signal-block{

        padding:32px 22px;

    }

    .wiw-signal-title{

        font-size:36px;

    }

    .wiw-thinking-card{

        min-height:auto;

        padding:28px;

    }

    .wiw-thinking-card h4{

        font-size:26px;

    }

    .wiw-section-closing h3{

        font-size:32px;

    }
}    
    /* ==========================================================
   WHY IT WORKS
   SECTION 03
   WHY VALIDATE WORKS
========================================================== */
.why-timeline-section{
    position:relative;
    padding:120px 0;
    background:#F8FAFC;
    overflow:hidden;
}

.why-timeline-section .why-section-header{
    max-width:880px;
    margin:0 auto 86px;
    text-align:center;
}

.why-timeline{
    position:relative;
    max-width:1000px;
    margin:0 auto;
    padding:12px 0 78px;
}

.why-timeline::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:180px;
    width:4px;
    background:#D9E2EC;
    border-radius:20px;
}

.why-timeline-row{
    display:grid;
    grid-template-columns:140px 80px 1fr;
    gap:20px;
    align-items:flex-start;
    margin-bottom:62px;
}

.why-timeline-date{
    padding-top:12px;
    text-align:right;
    font-size:24px;
    font-weight:850;
    color:#0F172A;
}

.why-timeline-dot{
    width:26px;
    height:26px;
    margin:10px auto 0;
    background:#2563EB;
    border:6px solid #FFF;
    border-radius:50%;
    box-shadow:0 0 0 4px #D9E2EC;
    z-index:2;
}

.why-timeline-dot.why-danger{background:#DC2626;}

.why-timeline-card{
    background:#FFF;
    border:1px solid #E5E7EB;
    border-radius:22px;
    padding:34px 36px;
    box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.why-timeline-card h3{
    margin:0 0 14px;
    font-size:28px;
    font-weight:850;
    color:#0F172A;
}

.why-timeline-card p{
    margin:0;
    font-size:18px;
    line-height:1.7;
    color:#475569;
}

.why-timeline-card.why-final-card{border:2px solid #FCA5A5;}

.wiw-motivation-section .validate-container{
    width: 100%;
    max-width: 1498px;
    margin: 0 auto;
    padding: 0 18px;
}

.wiw-motivation-panel{
    position: relative;
    overflow: hidden;
    border-radius: 48px;
    padding: clamp(34px, 3.45vw, 52px) clamp(28px, 5.25vw, 78px) clamp(36px, 3.9vw, 59px);
    color: #f8f8fb;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 50% 4%, rgba(21, 118, 220, .24), transparent 26%),
        radial-gradient(circle at 0% 56%, rgba(0, 144, 255, .22), transparent 19%),
        radial-gradient(circle at 100% 56%, rgba(0, 144, 255, .18), transparent 19%),
        linear-gradient(140deg, #020815 0%, #06152c 42%, #06142c 58%, #020815 100%);
    box-shadow: inset 0 0 115px rgba(24, 154, 255, .18);
}

.wiw-motivation-panel,
.wiw-motivation-panel *{
    box-sizing: border-box;
}

.wiw-motivation-corner{
    position: absolute;
    top: 0;
    width: 238px;
    height: 178px;
    opacity: .95;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image:
        radial-gradient(circle at 45px 36px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 68px 36px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 91px 36px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 114px 36px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 137px 36px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 45px 58px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 68px 58px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 91px 58px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 114px 58px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 137px 58px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 45px 80px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 68px 80px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 91px 80px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 114px 80px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 137px 80px, #168fff 0 2px, transparent 2.6px),
        radial-gradient(circle at 36px -50px, transparent 0 132px, rgba(34, 146, 255, .85) 133px 135px, transparent 136px),
        radial-gradient(circle at 36px -50px, transparent 0 152px, rgba(34, 146, 255, .95) 153px 155px, transparent 156px),
        radial-gradient(circle at 36px -50px, transparent 0 172px, rgba(34, 146, 255, .98) 173px 175px, transparent 176px);
}

.wiw-motivation-corner-left{
    left: 0;
}

.wiw-motivation-corner-right{
    right: 0;
    transform: scaleX(-1);
}

.wiw-motivation-header{
    position: relative;
    z-index: 2;
    text-align: center;
}

.wiw-motivation-eyebrow{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 363px;
    min-height: 49px;
    padding: 11px 30px 10px;
    border: 2px solid #0d83ff;
    border-radius: 999px;
    color: #fbfbff;
    font-size: clamp(16px, 1.43vw, 23px);
    font-weight: 850;
    letter-spacing: .2em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 0 22px rgba(14, 132, 255, .56), inset 0 0 14px rgba(14, 132, 255, .16);
}

.wiw-motivation-title{
    width: min(920px, 86%);
    margin: 20px auto 0;
    color: #f8f8fb;
    font-size: clamp(38px, 4.02vw, 59px);
    font-weight: 900;
    line-height: 1.035;
    letter-spacing: -.03em;
    text-align: center;
    text-shadow: 0 2px 0 rgba(255, 255, 255, .14);
}

.wiw-motivation-rule{
    width: 91px;
    height: 4px;
    margin: 20px auto 17px;
    background: #1d9dff;
    box-shadow: 0 0 14px rgba(29, 157, 255, .72);
}

.wiw-motivation-intro{
    width: min(740px, 86%);
    margin: 0 auto;
    color: #e5e9f2;
    font-size: clamp(19px, 1.55vw, 25px);
    font-weight: 400;
    line-height: 1.43;
    text-align: center;
}

.wiw-motivation-factors{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    margin-top: 31px;
}

.wiw-motivation-line{
    position: absolute;
    left: -4.5%;
    right: -4.5%;
    top: 68px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(22, 140, 255, .25) 6%, #19a2ff 26%, #22b8ff 50%, #19a2ff 74%, rgba(22, 140, 255, .25) 94%, transparent 100%);
    box-shadow: 0 0 20px rgba(24, 161, 255, .95);
}

.wiw-motivation-factor{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 0 clamp(12px, 1.58vw, 24px);
    text-align: center;
}

.wiw-motivation-factor + .wiw-motivation-factor:before{
    content: "";
    position: absolute;
    left: 0;
    top: 91px;
    width: 0;
    height: 342px;
    border-left: 2px dashed rgba(221, 231, 247, .58);
}

.wiw-motivation-icon{
    position: relative;
    z-index: 1;
    width: clamp(106px, 9.36vw, 140px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 5px solid var(--wiw-icon-ring);
    background: radial-gradient(circle at 33% 26%, rgba(255, 255, 255, .16), transparent 17%), radial-gradient(circle at 50% 58%, var(--wiw-icon-light), var(--wiw-icon-dark));
    box-shadow: 0 0 22px rgba(58, 150, 255, .52), inset 0 -12px 24px rgba(0, 0, 0, .13);
}

.wiw-motivation-icon svg{
    width: 58%;
    height: 58%;
    fill: none;
    stroke: #ffffff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, .18));
}

.wiw-motivation-icon-red{
    --wiw-icon-ring: #ff5049;
    --wiw-icon-light: #ff3f38;
    --wiw-icon-dark: #bb1d24;
}

.wiw-motivation-icon-orange{
    --wiw-icon-ring: #ffbd35;
    --wiw-icon-light: #ff9f0e;
    --wiw-icon-dark: #d77c05;
}

.wiw-motivation-icon-purple{
    --wiw-icon-ring: #9c58f2;
    --wiw-icon-light: #8e3de5;
    --wiw-icon-dark: #5925bd;
}

.wiw-motivation-icon-green{
    --wiw-icon-ring: #55d968;
    --wiw-icon-light: #2aae4a;
    --wiw-icon-dark: #117536;
}

.wiw-motivation-icon-blue{
    --wiw-icon-ring: #3d9bff;
    --wiw-icon-light: #1472d7;
    --wiw-icon-dark: #0750aa;
}

.wiw-motivation-factor h3{
    margin: 23px 0 15px;
    color: #ffffff;
    font-size: clamp(22px, 1.68vw, 29px);
    font-weight: 900;
    line-height: 1.11;
    letter-spacing: -.028em;
}

.wiw-motivation-factor p{
    max-width: 240px;
    margin: 0 auto;
    color: #ecf1fb;
    font-size: clamp(16px, 1.22vw, 20px);
    font-weight: 400;
    line-height: 1.47;
    text-align: center;
}

.wiw-motivation-summary{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 161px 1fr;
    align-items: center;
    width: min(1270px, 91.5%);
    min-height: 144px;
    margin: 22px auto 0;
    border: 2px solid rgba(34, 133, 231, .7);
    border-radius: 21px;
    background: rgba(9, 40, 76, .72);
    box-shadow: inset 0 0 37px rgba(23, 135, 255, .1);
}

.wiw-motivation-target{
    display: grid;
    place-items: center;
    height: 94px;
    border-right: 3px solid rgba(42, 132, 220, .64);
}

.wiw-motivation-target svg{
    width: 99px;
    height: 99px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 11px rgba(45, 142, 255, .9));
}

.wiw-motivation-summary-text{
    padding: 22px 38px;
}

.wiw-motivation-summary-text h3{
    margin: 0 0 5px;
    color: #ffffff;
    font-size: clamp(24px, 1.96vw, 31px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.wiw-motivation-summary-text p{
    max-width: 980px;
    margin: 0;
    color: #e4ebf7;
    font-size: clamp(18px, 1.48vw, 23px);
    line-height: 1.34;
}

@media (max-width:992px){
    .wiw-motivation-panel{
        min-height: 0;
    }

    .wiw-motivation-factors{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 42px;
    }

    .wiw-motivation-line,
    .wiw-motivation-factor + .wiw-motivation-factor:before{
        display: none;
    }

    .wiw-motivation-factor:nth-child(6){
        grid-column: 1 / -1;
    }

    .wiw-motivation-factor p{
        max-width: 330px;
    }

    .wiw-motivation-summary{
        width: 100%;
        margin-top: 44px;
    }
}

@media (max-width:640px){
    .wiw-motivation-section{
        padding: 20px 0;
    }

    .wiw-motivation-panel{
        border-radius: 30px;
        padding: 30px 18px 26px;
    }

    .wiw-motivation-corner{
        width: 160px;
        height: 120px;
        opacity: .7;
    }

    .wiw-motivation-eyebrow{
        min-width: 0;
        width: min(100%, 330px);
        min-height: 43px;
        font-size: 14px;
        letter-spacing: .16em;
    }

    .wiw-motivation-title{
        width: 100%;
        margin-top: 18px;
        font-size: clamp(34px, 10vw, 46px);
    }

    .wiw-motivation-intro{
        width: 100%;
        font-size: 18px;
    }

    .wiw-motivation-factors{
        grid-template-columns: 1fr;
        row-gap: 35px;
        margin-top: 36px;
    }

    .wiw-motivation-factor:nth-child(6){
        grid-column: auto;
    }

    .wiw-motivation-factor h3{
        margin-top: 18px;
    }

    .wiw-motivation-summary{
        grid-template-columns: 1fr;
        min-height: 0;
        text-align: center;
    }

    .wiw-motivation-target{
        height: 118px;
        border-right: 0;
        border-bottom: 2px solid rgba(42, 132, 220, .64);
    }

    .wiw-motivation-summary-text{
        padding: 22px 19px 25px;
    }
}
.wiw-motivation-section .wiw-motivation-title{
    color:#FFFFFF !important;
    opacity:1 !important;
    visibility:visible !important;
    text-shadow:0 2px 0 rgba(255,255,255,.14), 0 14px 28px rgba(0,0,0,.26) !important;
}

.wiw-motivation-section .wiw-motivation-intro{
    color:#E5E9F2 !important;
    opacity:1 !important;
    visibility:visible !important;
}
.wiw-motivation-section .wiw-motivation-title{
    width:min(1080px, 94%) !important;
    max-width:1080px !important;
    font-size:clamp(42px, 3.6vw, 56px) !important;
    line-height:1.06 !important;
    text-align:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
}
/* =========================================================
   WHY IT WORKS - SECTION 4
   Validate Interrupts the Pattern
========================================================= */
  .validate-why-page .validate-interrupts-section {
  --ink: #07122f;
  --text: #24314a;
  --blue: #075be8;
  --line: #dbe5f2;
  --panel: #ffffff;
  --panel-shadow: 0 18px 45px rgba(20, 47, 88, 0.11);
}

.validate-why-page .validate-interrupts-section,
.validate-why-page .validate-interrupts-section * {
  box-sizing: border-box;
}

.validate-why-page .validate-interrupts-section {
  margin: 0;
  min-width: 320px;
  min-height: auto;
  padding: clamp(64px, 7vw, 100px) 32px;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 50% 8%, rgba(0, 91, 232, 0.08), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
}

.validate-why-page .validate-interrupts-section .validate-shell {
  width: min(100%, 1760px);
  margin: 0 auto;
}

.validate-why-page .validate-interrupts-section .section-kicker {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 10px 24px;
  color: #0753cc;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(180deg, #dce9ff 0%, #c5d8f8 100%);
  border-radius: 999px;
}

.validate-why-page .validate-interrupts-section h1 {
  margin: 0;
  color: var(--ink);
  font-size: 58px;
  font-weight: 900;
  line-height: 1.04;
  text-align: center;
}

.validate-why-page .validate-interrupts-section .section-subtitle {
  max-width: 1100px;
  margin: 16px auto 46px;
  color: #253048;
  font-size: 28px;
  line-height: 1.3;
  text-align: center;
}

.validate-why-page .validate-interrupts-section .progress-path {
  display: grid;
  grid-template-columns: 88px minmax(42px, 1fr) 88px minmax(42px, 1fr) 88px minmax(42px, 1fr) 88px minmax(42px, 1fr) 88px;
  align-items: center;
  width: min(85%, 1460px);
  margin: 0 auto 38px;
}

.validate-why-page .validate-interrupts-section .path-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(8, 68, 150, 0.18);
}

.validate-why-page .validate-interrupts-section .path-icon svg,
.validate-why-page .validate-interrupts-section .mini-badge svg,
.validate-why-page .validate-interrupts-section .shield-mark svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.validate-why-page .validate-interrupts-section .path-icon svg {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
}

.validate-why-page .validate-interrupts-section .path-icon-soft {
  color: var(--blue);
  background: #e9f1ff;
  border: 1px solid #d9e4f3;
}

.validate-why-page .validate-interrupts-section .path-icon-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #075be8 0%, #0348cd 100%);
}

.validate-why-page .validate-interrupts-section .path-dotline {
  height: 4px;
  margin: 0 10px;
  background-image: radial-gradient(circle, #8192b5 2px, transparent 2.5px);
  background-size: 14px 4px;
  background-repeat: repeat-x;
  opacity: 0.9;
}

.validate-why-page .validate-interrupts-section .step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.validate-why-page .validate-interrupts-section .step-card {
  position: relative;
  min-height: 592px;
  padding: 38px 34px 34px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--panel-shadow);
}

.validate-why-page .validate-interrupts-section .step-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 210px;
  margin-bottom: 20px;
}

.validate-why-page .validate-interrupts-section .step-heading-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}

.validate-why-page .validate-interrupts-section .step-number {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #0862ee 0%, #0344c7 100%);
  border-radius: 50%;
  box-shadow: 0 12px 22px rgba(8, 84, 210, 0.28);
}

.validate-why-page .validate-interrupts-section h2 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.16;
}

.validate-why-page .validate-interrupts-section .accent-line {
  display: block;
  width: 58px;
  height: 4px;
  margin: 26px 0 26px 88px;
  background: var(--blue);
  border-radius: 999px;
}

.validate-why-page .validate-interrupts-section .step-card p {
  margin: 0;
  color: var(--text);
  font-size: 23px;
  line-height: 1.46;
}

.validate-why-page .validate-interrupts-section .envelope {
  position: relative;
  width: 180px;
  height: 132px;
  background: linear-gradient(145deg, #6fa2ff 0%, #2d70e7 100%);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(30, 90, 190, 0.18);
}

.validate-why-page .validate-interrupts-section .envelope::before,
.validate-why-page .validate-interrupts-section .envelope::after {
  position: absolute;
  inset: auto 0 0;
  height: 74px;
  content: "";
  background:
    linear-gradient(135deg, transparent 49%, rgba(16, 76, 190, 0.48) 50%),
    linear-gradient(225deg, transparent 49%, rgba(99, 151, 246, 0.92) 50%);
  border-radius: 0 0 8px 8px;
}

.validate-why-page .validate-interrupts-section .paper {
  position: absolute;
  left: 24px;
  top: -54px;
  width: 134px;
  height: 122px;
  background: linear-gradient(180deg, #f7faff 0%, #dfe8f5 100%);
  border-radius: 12px 12px 4px 4px;
  box-shadow: 0 8px 20px rgba(52, 83, 130, 0.14);
}

.validate-why-page .validate-interrupts-section .paper-line,
.validate-why-page .validate-interrupts-section .money {
  position: absolute;
  z-index: 2;
}

.validate-why-page .validate-interrupts-section .paper-line {
  left: 42px;
  height: 18px;
  background: #c5d2e3;
  border-radius: 3px;
}

.validate-why-page .validate-interrupts-section .paper-line-1 {
  top: -28px;
  width: 70px;
}

.validate-why-page .validate-interrupts-section .paper-line-2 {
  top: 10px;
  width: 30px;
}

.validate-why-page .validate-interrupts-section .paper-line-3 {
  top: 42px;
  width: 96px;
  height: 8px;
}

.validate-why-page .validate-interrupts-section .money {
  top: -32px;
  right: 32px;
  color: var(--blue);
  font-size: 28px;
  font-weight: 900;
}

.validate-why-page .validate-interrupts-section .mini-badge {
  position: absolute;
  right: 48px;
  bottom: 34px;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  color: #ffffff;
  background: linear-gradient(135deg, #0961ec 0%, #0344c8 100%);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(8, 76, 196, 0.28);
}

.validate-why-page .validate-interrupts-section .mini-badge svg {
  width: 42px;
  height: 42px;
  max-width: 42px;
  max-height: 42px;
}

.validate-why-page .validate-interrupts-section .chat-bubble {
  position: absolute;
  border-radius: 18px;
}

.validate-why-page .validate-interrupts-section .chat-bubble span {
  position: absolute;
  top: 43px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.validate-why-page .validate-interrupts-section .chat-bubble-primary {
  left: 54px;
  top: 46px;
  width: 158px;
  height: 104px;
  background: linear-gradient(135deg, #075be8 0%, #0342c4 100%);
}

.validate-why-page .validate-interrupts-section .chat-bubble-primary::after {
  position: absolute;
  left: 22px;
  bottom: -28px;
  width: 36px;
  height: 36px;
  content: "";
  background: #034bd1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.validate-why-page .validate-interrupts-section .chat-bubble-primary span {
  background: #ffffff;
}

.validate-why-page .validate-interrupts-section .chat-bubble-primary span:nth-child(1) {
  left: 34px;
}

.validate-why-page .validate-interrupts-section .chat-bubble-primary span:nth-child(2) {
  left: 70px;
}

.validate-why-page .validate-interrupts-section .chat-bubble-primary span:nth-child(3) {
  left: 106px;
}

.validate-why-page .validate-interrupts-section .chat-bubble-secondary {
  right: 42px;
  top: 104px;
  width: 146px;
  height: 88px;
  background: linear-gradient(180deg, #dce6f5 0%, #cbd8ea 100%);
  border-radius: 16px;
}

.validate-why-page .validate-interrupts-section .chat-bubble-secondary::after {
  position: absolute;
  right: 26px;
  bottom: -26px;
  width: 34px;
  height: 34px;
  content: "";
  background: #cbd8ea;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.validate-why-page .validate-interrupts-section .chat-bubble-secondary span {
  left: 28px;
  width: 86px;
  height: 6px;
  background: #ffffff;
  border-radius: 999px;
}

.validate-why-page .validate-interrupts-section .chat-bubble-secondary span:nth-child(1) {
  top: 27px;
}

.validate-why-page .validate-interrupts-section .chat-bubble-secondary span:nth-child(2) {
  top: 44px;
}

.validate-why-page .validate-interrupts-section .chat-bubble-secondary span:nth-child(3) {
  top: 61px;
}

.validate-why-page .validate-interrupts-section .clipboard {
  position: relative;
  width: 146px;
  height: 184px;
  padding: 42px 22px 18px;
  background: #f8fbff;
  border: 8px solid #0757db;
  border-radius: 9px;
  box-shadow: 0 14px 24px rgba(19, 74, 164, 0.14);
}

.validate-why-page .validate-interrupts-section .clip {
  position: absolute;
  left: 31px;
  top: -20px;
  width: 84px;
  height: 28px;
  background: #0a55d1;
  border-radius: 8px;
}

.validate-why-page .validate-interrupts-section .clip::before {
  position: absolute;
  left: 31px;
  top: -15px;
  width: 22px;
  height: 22px;
  content: "";
  background: #0a55d1;
  border-radius: 50%;
}

.validate-why-page .validate-interrupts-section .clip::after {
  position: absolute;
  left: 38px;
  top: -8px;
  width: 8px;
  height: 8px;
  content: "";
  background: #ffffff;
  border-radius: 50%;
}

.validate-why-page .validate-interrupts-section .check-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.validate-why-page .validate-interrupts-section .check-row i {
  display: block;
  width: 20px;
  height: 20px;
  background: #e7effb;
  border-radius: 50%;
}

.validate-why-page .validate-interrupts-section .check-row i::after {
  display: block;
  width: 9px;
  height: 5px;
  margin: 5px 0 0 5px;
  content: "";
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.validate-why-page .validate-interrupts-section .check-row b {
  display: block;
  height: 7px;
  background: #cbd7e8;
  border-radius: 999px;
}

.validate-why-page .validate-interrupts-section .magnifier {
  position: absolute;
  right: 70px;
  bottom: 24px;
  width: 66px;
  height: 66px;
  border: 8px solid #0a55d1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.validate-why-page .validate-interrupts-section .magnifier::after {
  position: absolute;
  right: -32px;
  bottom: -24px;
  width: 46px;
  height: 10px;
  content: "";
  background: #0a55d1;
  border-radius: 999px;
  transform: rotate(45deg);
}

.validate-why-page .validate-interrupts-section .dashboard {
  position: relative;
  width: 230px;
  height: 172px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #edf3fb 100%);
  border-radius: 10px;
  box-shadow: 0 18px 28px rgba(36, 66, 118, 0.14);
}

.validate-why-page .validate-interrupts-section .window-bar {
  position: absolute;
  inset: 0 0 auto;
  height: 30px;
  background: linear-gradient(135deg, #256eea 0%, #0550d6 100%);
}

/* =========================================================
   Validate Comparison Section - Begin
   ========================================================= */
.validate-why-page .validate-comparison-section {
    --vc-ink:#07183D;
    --vc-muted:#435069;
    --vc-blue:#0A68F5;
    --vc-line:#DCE5F2;
    --vc-panel:#FFFFFF;
    --vc-red:#EF4444;

    box-sizing:border-box;
    min-width:320px;
    padding:12px 22px 56px;
    color:var(--vc-ink);
    background:
        radial-gradient(circle at 50% 0%, rgba(20,106,245,.13), transparent 34rem),
        linear-gradient(180deg,#FBFDFF 0%,#F4F8FD 58%,#F8FBFF 100%);
    font-family:Arial, Helvetica, sans-serif;
}

.validate-why-page .validate-comparison-section,
.validate-why-page .validate-comparison-section + p,
.validate-why-page p:has(+ .validate-comparison-section) {
    margin-top:0;
}

.validate-why-page .validate-comparison-section + p:empty,
.validate-why-page p:has(+ .validate-comparison-section):empty {
    display:none;
}

.validate-why-page .validate-comparison-section *,
.validate-why-page .validate-comparison-section *::before,
.validate-why-page .validate-comparison-section *::after {
    box-sizing:border-box;
}

.validate-why-page .validate-comparison-section a {
    color:inherit;
}

.validate-why-page .validate-comparison-section .validate-shell {
    width:min(100%, 1250px);
    margin:0 auto;
}

.validate-why-page .validate-comparison-section .transition-header {
    width:max-content;
    max-width:100%;
    margin:0 auto 8px;
    padding:8px 22px 7px;
    border-radius:999px;
    color:var(--vc-blue);
    background:#E6F0FF;
    font-size:clamp(12px,1vw,16px);
    line-height:1;
    font-weight:900;
    letter-spacing:.08em;
    text-align:center;
    text-transform:uppercase;
}

.validate-why-page .validate-comparison-section h1 {
    margin:0;
    color:var(--vc-ink);
    font-size:clamp(34px,3.55vw,56px);
    line-height:.98;
    font-weight:900;
    letter-spacing:-.035em;
    text-align:center;
}

.validate-why-page .validate-comparison-section .subtitle {
    margin:10px 0 22px;
    color:var(--vc-muted);
    font-size:clamp(18px,1.55vw,24px);
    line-height:1.25;
    font-weight:800;
    text-align:center;
}

.validate-why-page .validate-comparison-section .comparison-card {
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
    margin:0 auto 28px;
    overflow:hidden;
    border:1px solid #E5EDF7;
    border-radius:10px;
    background:var(--vc-panel);
    box-shadow:0 16px 42px rgba(18,47,87,.08);
}

.validate-why-page .validate-comparison-section .comparison-column h2 {
    margin:0;
    padding:18px 34px 17px;
    font-size:clamp(21px,1.7vw,30px);
    line-height:1.1;
    font-weight:900;
    text-align:center;
}

.validate-why-page .validate-comparison-section .traditional h2 {
    color:#485165;
    background:linear-gradient(90deg,#E8EBF1,#D8DDE7);
}

.validate-why-page .validate-comparison-section .validate {
    background:linear-gradient(90deg,#F9FBFF 0%,#F3F8FF 100%);
}

.validate-why-page .validate-comparison-section .validate h2 {
    color:#FFFFFF;
    background:linear-gradient(90deg,#0B68F5,#0461EF);
}

.validate-why-page .validate-comparison-section .comparison-list {
    display:grid;
    gap:0;
    margin:0;
    padding:28px 54px 32px;
    list-style:none;
}

.validate-why-page .validate-comparison-section .comparison-list li {
    position:relative;
    display:grid;
    grid-template-columns:28px minmax(0, 1fr);
    align-items:center;
    gap:16px;
    min-height:40px;
    margin:0;
    padding:0;
    border-bottom:1px solid var(--vc-line);
    color:#111B35;
    font-size:clamp(17px,1.25vw,22px);
    line-height:1.2;
    font-weight:900;
}

.validate-why-page .validate-comparison-section .comparison-list li:last-child {
    border-bottom:0;
}

.validate-why-page .validate-comparison-section .traditional .comparison-list li {
    color:#313A4D;
    font-weight:800;
}

.validate-why-page .validate-comparison-section .traditional .comparison-list li::before {
    content:"X";
    display:block;
    width:28px;
    color:var(--vc-red);
    background:none;
    border-radius:0;
    font-size:26px;
    line-height:1;
    font-weight:900;
    text-align:center;
}

.validate-why-page .validate-comparison-section .validate .comparison-list li::before {
    content:"";
    display:block;
    width:24px;
    height:24px;
    border-radius:50%;
    background:var(--vc-blue);
}

.validate-why-page .validate-comparison-section .validate .comparison-list li::after {
    position:absolute;
    top:50%;
    left:6px;
    width:11px;
    height:6px;
    border-bottom:3px solid #FFFFFF;
    border-left:3px solid #FFFFFF;
    content:"";
    transform:translateY(-65%) rotate(-45deg);
}

.validate-why-page .validate-comparison-section .versus-badge {
    position:absolute;
    z-index:2;
    top:50%;
    left:50%;
    display:grid;
    width:75px;
    height:75px;
    place-items:center;
    border-radius:50%;
    color:var(--vc-ink);
    background:#FFFFFF;
    box-shadow:0 8px 22px rgba(7,24,61,.16);
    font-size:clamp(24px,2vw,34px);
    line-height:1;
    font-weight:900;
    transform:translate(-50%, -50%);
}

.validate-why-page .validate-comparison-section .status-icon.bad {
    width:auto;
    height:auto;
    border-radius:0;
    background:transparent;
}

.validate-why-page .validate-comparison-section .status-icon.bad::before {
    content:"X";
    position:static;
    display:inline;
    width:auto;
    height:auto;
    color:var(--vc-red);
    background:transparent;
    font-size:22px;
    line-height:1;
    font-weight:900;
    transform:none;
}

.validate-why-page .validate-comparison-section .status-icon.bad::after {
    display:none;
}

.validate-why-page .validate-comparison-section .status-icon.good,
.validate-why-page .validate-comparison-section .status-icon {
    position:relative;
    display:inline-block;
    flex:0 0 auto;
    width:24px;
    height:24px;
    border-radius:50%;
    background:var(--vc-blue);
    vertical-align:middle;
}

.validate-why-page .validate-comparison-section .status-icon.good::before,
.validate-why-page .validate-comparison-section .status-icon::before {
    position:absolute;
    top:48%;
    left:50%;
    width:11px;
    height:6px;
    border-bottom:3px solid #FFFFFF;
    border-left:3px solid #FFFFFF;
    content:"";
    transform:translate(-50%, -58%) rotate(-45deg);
}

.validate-why-page .wiw-final-action-card {
    display:grid;
    grid-template-columns:1.05fr .95fr;
    width:100%;
    margin:28px auto 0;
    overflow:hidden;
    border-radius:18px;
    background:#07142F;
    box-shadow:0 24px 70px rgba(7,20,47,.16);
}

.validate-why-page .wiw-final-answer {
    display:grid;
    grid-template-columns:112px 1fr;
    gap:26px;
    align-items:center;
    padding:34px 38px;
    border-right:1px solid rgba(255,255,255,.16);
    background:linear-gradient(135deg,#E5F2FF 0%,#F5FAFF 100%);
}

.validate-why-page .wiw-final-icon {
    display:grid;
    width:92px;
    height:92px;
    place-items:center;
    border-radius:50%;
    color:#0F66FF;
    background:#FFFFFF;
}

.validate-why-page .wiw-final-icon svg {
    width:54px;
    height:54px;
    fill:none;
    stroke:currentColor;
    stroke-width:2.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.validate-why-page .wiw-final-answer h3,
.validate-why-page .wiw-final-cta h3 {
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    font-size:clamp(28px,2.4vw,40px);
    line-height:1.06;
    font-weight:900;
    letter-spacing:-.035em;
}

.validate-why-page .wiw-final-answer h3 {
    color:#07142F;
}

.validate-why-page .wiw-final-answer p {
    margin:16px 0 10px;
    color:#334155;
    font-size:18px;
    line-height:1.35;
    font-weight:800;
}

.validate-why-page .wiw-final-answer ul {
    display:flex;
    flex-wrap:wrap;
    gap:10px 18px;
    margin:0;
    padding:0;
    list-style:none;
}

.validate-why-page .wiw-final-answer li {
    position:relative;
    margin:0;
    padding-left:25px;
    color:#07142F;
    font-size:16px;
    line-height:1.25;
    font-weight:800;
}

.validate-why-page .wiw-final-answer li::before {
    content:"";
    position:absolute;
    top:2px;
    left:0;
    width:17px;
    height:17px;
    border-radius:50%;
    background:#0F66FF;
}

.validate-why-page .wiw-final-answer li::after {
    content:"";
    position:absolute;
    top:7px;
    left:5px;
    width:7px;
    height:4px;
    border-left:2px solid #FFFFFF;
    border-bottom:2px solid #FFFFFF;
    transform:rotate(-45deg);
}

.validate-why-page .wiw-final-answer strong {
    display:block;
    margin-top:14px;
    color:#0F66FF;
    font-size:18px;
    line-height:1.25;
    font-weight:900;
}

.validate-why-page .wiw-final-cta {
    padding:34px 38px;
    color:#FFFFFF;
}

.validate-why-page .wiw-final-cta h3 {
    color:#FFFFFF;
}

.validate-why-page .wiw-final-cta p {
    margin:10px 0 24px;
    color:#3EA1FF;
    font-size:clamp(22px,2vw,30px);
    line-height:1.12;
    font-weight:900;
}

.validate-why-page .wiw-final-actions {
    display:grid;
    grid-template-columns:minmax(220px,1fr) auto minmax(180px,.75fr);
    gap:18px;
    align-items:center;
}

.validate-why-page .wiw-final-actions a {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:58px;
    padding:14px 22px;
    border-radius:14px;
    color:#FFFFFF;
    font-size:18px;
    line-height:1.15;
    font-weight:900;
    text-align:center;
    text-decoration:none;
}

.validate-why-page .wiw-final-actions a:first-child {
    background:#0F66FF;
    box-shadow:0 14px 30px rgba(15,102,255,.28);
}

.validate-why-page .wiw-final-actions a:last-child {
    border:1px solid rgba(255,255,255,.72);
    background:transparent;
}

.validate-why-page .wiw-final-actions span {
    color:#FFFFFF;
    font-weight:900;
    text-align:center;
}

.validate-why-page .wiw-final-cta small {
    display:block;
    margin-top:18px;
    color:#CBD5E1;
    font-size:15px;
    line-height:1.35;
    font-weight:700;
    text-align:center;
}

@media (max-width: 980px) {
    .validate-why-page .validate-comparison-section .comparison-card,
    .validate-why-page .wiw-final-action-card {
        grid-template-columns:1fr;
    }

    .validate-why-page .validate-comparison-section .versus-badge {
        top:50%;
        width:62px;
        height:62px;
    }

    .validate-why-page .wiw-final-answer {
        border-right:0;
    }
}

@media (max-width: 700px) {
    .validate-why-page .validate-comparison-section {
        padding:16px 16px 42px;
    }

    .validate-why-page .validate-comparison-section .comparison-list {
        padding:18px 22px 22px;
    }

    .validate-why-page .validate-comparison-section .comparison-list li {
        grid-template-columns:26px minmax(0, 1fr);
        gap:12px;
        font-size:16px;
    }

    .validate-why-page .wiw-final-answer,
    .validate-why-page .wiw-final-cta {
        padding:28px 22px;
    }

    .validate-why-page .wiw-final-answer {
        grid-template-columns:1fr;
        text-align:center;
    }

    .validate-why-page .wiw-final-icon {
        margin:0 auto;
    }

    .validate-why-page .wiw-final-answer ul {
        display:grid;
        justify-content:center;
        text-align:left;
    }

    .validate-why-page .wiw-final-actions {
        grid-template-columns:1fr;
    }
}
/* =========================================================
   Validate Comparison Section - End
   ========================================================= */

/* ---------- Problem To Solution Transition ---------- */

.validate-why-page .wiw-bridge-section {
    position: relative;
    padding: 28px 24px 34px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    text-align: center;
}

.validate-why-page .wiw-bridge-section::before {
    content: "";
    display: block;
    width: 2px;
    height: 56px;
    margin: 0 auto 24px;
    background: linear-gradient(180deg, #D9E2EC 0%, #2677FF 100%);
    border-radius: 999px;
}

.validate-why-page .wiw-bridge-inner {
    width: min(100%, 880px);
    margin: 0 auto;
}

.validate-why-page .wiw-bridge-label {
    margin-bottom: 14px;
    color: #2677FF;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.validate-why-page .wiw-bridge-section h2 {
    max-width: 820px;
    margin: 0 auto 18px;
    color: #07142F;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.validate-why-page .wiw-bridge-section p {
    max-width: 760px;
    margin: 0 auto;
    color: #5B6470;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.6;
    font-weight: 500;
}

/* ---------- Motivation Section Lighten ---------- */

.validate-why-page .wiw-motivation-section {
    padding: 42px 0 64px;
}

.validate-why-page .wiw-motivation-section .validate-container {
    max-width: 1320px;
}

.validate-why-page .wiw-motivation-panel {
    border-radius: 24px;
    padding: clamp(32px, 3vw, 46px) clamp(28px, 4vw, 56px);
    background:
        radial-gradient(circle at 50% 0%, rgba(29, 157, 255, .10), transparent 26%),
        linear-gradient(140deg, #0B2342 0%, #10365F 48%, #0B2342 100%);
    box-shadow: 0 18px 46px rgba(7, 20, 47, .10);
}

.validate-why-page .wiw-motivation-corner {
    opacity: .42;
    transform: scale(.82);
    transform-origin: top left;
}

.validate-why-page .wiw-motivation-corner-right {
    transform: scaleX(-1) scale(.82);
    transform-origin: top right;
}

.validate-why-page .wiw-motivation-eyebrow {
    min-width: 0;
    min-height: 42px;
    padding: 10px 28px;
    font-size: 15px;
    letter-spacing: .16em;
    box-shadow: none;
}

.validate-why-page .wiw-motivation-title {
    width: min(900px, 92%) !important;
    margin-top: 18px;
    font-size: clamp(34px, 3.2vw, 50px) !important;
    line-height: 1.08 !important;
    text-shadow: none !important;
}

.validate-why-page .wiw-motivation-rule {
    width: 72px;
    height: 3px;
    margin: 18px auto 16px;
}

.validate-why-page .wiw-motivation-intro {
    width: min(720px, 92%);
    font-size: clamp(17px, 1.25vw, 21px);
    line-height: 1.5;
}

.validate-why-page .wiw-motivation-factors {
    margin-top: 28px;
}

.validate-why-page .wiw-motivation-line {
    top: 54px;
    height: 2px;
    opacity: .7;
    box-shadow: none;
}

.validate-why-page .wiw-motivation-icon {
    width: clamp(82px, 7vw, 104px);
    border-width: 4px;
    box-shadow: 0 10px 24px rgba(58, 150, 255, .22), inset 0 -8px 16px rgba(0, 0, 0, .08);
}

.validate-why-page .wiw-motivation-factor + .wiw-motivation-factor:before {
    top: 74px;
    height: 250px;
    opacity: .45;
}

.validate-why-page .wiw-motivation-factor h3 {
    margin: 18px 0 10px;
    font-size: clamp(18px, 1.35vw, 23px);
}

.validate-why-page .wiw-motivation-factor p {
    max-width: 220px;
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.42;
}

.validate-why-page .wiw-motivation-summary {
    grid-template-columns: 116px 1fr;
    width: min(1120px, 94%);
    min-height: 112px;
    margin-top: 28px;
    border-radius: 16px;
    background: rgba(9, 40, 76, .48);
}

.validate-why-page .wiw-motivation-target {
    height: 78px;
}

.validate-why-page .wiw-motivation-target svg {
    width: 72px;
    height: 72px;
}

.validate-why-page .wiw-motivation-summary-text {
    padding: 18px 28px;
}

.validate-why-page .wiw-motivation-summary-text h3 {
    font-size: clamp(21px, 1.5vw, 26px);
}

.validate-why-page .wiw-motivation-summary-text p {
    font-size: clamp(16px, 1.1vw, 19px);
}

@media (max-width: 640px) {
    .validate-why-page .wiw-bridge-section {
        padding: 22px 20px 30px;
    }

    .validate-why-page .wiw-bridge-section::before {
        height: 42px;
        margin-bottom: 20px;
    }

    .validate-why-page .wiw-motivation-panel {
        border-radius: 24px;
        padding: 30px 18px 26px;
    }

    .validate-why-page .wiw-motivation-summary {
        grid-template-columns: 1fr;
    }
}
.wiw-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.wiw-hero-buttons a.validate-btn,
.wiw-hero-buttons a.validate-btn:visited {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    border: 2px solid transparent;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none !important;
}

.wiw-hero-buttons a.validate-btn-primary {
    background: #1D72F3 !important;
    border-color: #1D72F3 !important;
    color: #FFFFFF !important;
    box-shadow: 0 18px 34px rgba(29, 114, 243, .22);
}

.wiw-hero-buttons a.validate-btn-secondary {
    background: #FFFFFF !important;
    border-color: #1D72F3 !important;
    color: #1D72F3 !important;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
}
/* =========================================================
   Validate Why It Works Page - End
   ========================================================= */
