/* ==========================================================
   VALIDATE MODERN DESIGN SYSTEM v1.0
   One stylesheet for Header / Body / Footer
========================================================== */




/* ==========================================================
   BODY
   Includes typography, layout, buttons, sections, hero,
   cards, grids, forms, tables, and utilities.
========================================================== */

/* ---------- Page Shell ---------- */

.validate-modern-page{
    width:100%;
    overflow:hidden;
    background:var(--validate-white);
}

.validate-container{
    width:100%;
    max-width:var(--validate-container);
    margin:0 auto;
    padding:0 26px;
}

.validate-container-wide{
    width:100%;
    max-width:var(--validate-container-wide);
    margin:0 auto;
    padding:0 32px;
}


/* ---------- Typography ---------- */

.validate-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin:0 0 18px;
    color:var(--validate-blue);
    font-size:13px;
    line-height:1;
    font-weight:850;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.validate-kicker{
    margin:0 0 14px;
    color:var(--validate-blue);
    font-size:15px;
    line-height:1.2;
    font-weight:850;
}

.validate-h1,
.validate-modern-page h1{
    margin:0 0 24px;
    color:var(--validate-navy);
    font-size:clamp(44px,6vw,76px);
    line-height:.98;
    letter-spacing:-.055em;
    font-weight:900;
}

.validate-h2,
.validate-modern-page h2{
    margin:0 0 22px;
    color:var(--validate-navy);
    font-size:clamp(34px,4vw,56px);
    line-height:1.02;
    letter-spacing:-.045em;
    font-weight:900;
}

.validate-h3,
.validate-modern-page h3{
    margin:0 0 16px;
    color:var(--validate-navy);
    font-size:clamp(24px,2.4vw,34px);
    line-height:1.12;
    letter-spacing:-.03em;
    font-weight:900;
}

.validate-modern-page h4{
    margin:0 0 12px;
    color:var(--validate-navy);
    font-size:21px;
    line-height:1.18;
    font-weight:900;
}

.validate-lead{
    margin:0 0 28px;
    color:var(--validate-text);
    font-size:clamp(19px,2vw,24px);
    line-height:1.55;
}

.validate-text,
.validate-modern-page p{
    color:var(--validate-text);
    font-size:17px;
    line-height:1.7;
}

.validate-text{
    margin:0 0 20px;
}

.validate-modern-page p{
    margin-top:0;
}

.validate-muted{
    color:var(--validate-muted);
}

.validate-section-dark h1,
.validate-section-dark h2,
.validate-section-dark h3,
.validate-section-dark h4,
.validate-section-dark .validate-h1,
.validate-section-dark .validate-h2,
.validate-section-dark .validate-h3{
    color:var(--validate-white);
}

.validate-section-dark p,
.validate-section-dark .validate-lead,
.validate-section-dark .validate-text{
    color:#CBD5E1;
}


/* ---------- Sections ---------- */

.validate-section{
    padding:90px 0;
}

.validate-section-sm{
    padding:60px 0;
}

.validate-section-lg{
    padding:120px 0;
}

.validate-section-light{
    background:var(--validate-soft);
}

.validate-section-white{
    background:var(--validate-white);
}

.validate-section-dark{
    background:var(--validate-navy);
    color:var(--validate-white);
}

.validate-section-header{
    max-width:860px;
    margin:0 auto 48px;
    text-align:center;
}

.validate-section-header-left{
    max-width:860px;
    margin:0 0 48px;
    text-align:left;
}


/* ---------- Buttons ---------- */

.validate-btn,
.validate-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 26px;
    border:0;
    border-radius:var(--validate-radius-pill);
    background:var(--validate-blue);
    color:var(--validate-white);
    font-size:16px;
    line-height:1;
    font-weight:850;
    text-align:center;
    text-decoration:none;
    cursor:pointer;
    box-shadow:0 14px 30px rgba(11,107,255,.22);
    transition:background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.validate-btn:hover,
.validate-button:hover,
.validate-btn:focus-visible,
.validate-button:focus-visible{
    background:var(--validate-blue-hover);
    color:var(--validate-white);
    transform:translateY(-2px);
    box-shadow:0 18px 38px rgba(11,107,255,.30);
}

.validate-btn-secondary{
    background:var(--validate-white);
    color:var(--validate-navy);
    border:1px solid var(--validate-border);
    box-shadow:0 10px 24px rgba(15,23,42,.08);
}

.validate-btn-secondary:hover,
.validate-btn-secondary:focus-visible{
    background:var(--validate-soft);
    color:var(--validate-navy);
    box-shadow:0 14px 32px rgba(15,23,42,.12);
}

.validate-btn-dark{
    background:var(--validate-navy);
    color:var(--validate-white);
    box-shadow:0 14px 30px rgba(15,23,42,.22);
}

.validate-btn-dark:hover,
.validate-btn-dark:focus-visible{
    background:var(--validate-black);
}

.validate-btn-row{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:14px;
}


/* ---------- Hero ---------- */

.validate-hero{
    position:relative;
    padding:110px 0 95px;
    background:linear-gradient(180deg,#FFFFFF 0%,#F8FAFC 100%);
    overflow:hidden;
}

.validate-hero-inner{
    width:100%;
    max-width:var(--validate-container);
    margin:0 auto;
    padding:0 26px;
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
    gap:58px;
    align-items:center;
}

.validate-hero-content{
    max-width:720px;
}

.validate-hero-panel{
    background:var(--validate-white);
    border:1px solid var(--validate-border);
    border-radius:28px;
    padding:34px;
    box-shadow:var(--validate-shadow-lg);
}

.validate-hero-note{
    margin-top:22px;
    color:var(--validate-muted);
    font-size:15px;
    line-height:1.6;
}


/* ---------- Grids / Cards ---------- */

.validate-grid{
    display:grid;
    gap:24px;
}

.validate-grid-2{
    grid-template-columns:repeat(2,minmax(0,1fr));
}

.validate-grid-3{
    grid-template-columns:repeat(3,minmax(0,1fr));
}

.validate-grid-4{
    grid-template-columns:repeat(4,minmax(0,1fr));
}

.validate-card{
    background:var(--validate-white);
    border:1px solid var(--validate-border);
    border-radius:var(--validate-radius-lg);
    padding:30px;
    box-shadow:0 10px 28px rgba(15,23,42,.06);
    transition:box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}

.validate-card:hover{
    transform:translateY(-2px);
    border-color:#D7DEE8;
    box-shadow:0 20px 46px rgba(15,23,42,.10);
}

.validate-card h3,
.validate-card h4{
    margin-bottom:12px;
}

.validate-card p{
    margin:0;
    color:var(--validate-text);
    font-size:16px;
    line-height:1.65;
}

.validate-card-dark{
    background:var(--validate-navy);
    border-color:#1E293B;
    color:var(--validate-white);
}

.validate-card-dark h3,
.validate-card-dark h4{
    color:var(--validate-white);
}

.validate-card-dark p{
    color:#CBD5E1;
}


/* ---------- Statistics / Fact Strips ---------- */

.validate-stat-strip{
    background:var(--validate-navy);
    color:var(--validate-white);
    padding:32px 0;
}

.validate-stat-strip-inner{
    max-width:var(--validate-container);
    margin:0 auto;
    padding:0 26px;
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:24px;
}

.validate-stat{
    padding:22px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
    background:rgba(255,255,255,.04);
}

.validate-stat-number{
    display:block;
    margin-bottom:6px;
    color:var(--validate-white);
    font-size:42px;
    line-height:1;
    font-weight:900;
    letter-spacing:-.04em;
}

.validate-stat-label{
    display:block;
    color:#CBD5E1;
    font-size:15px;
    line-height:1.5;
}


/* ---------- CTA Sections ---------- */

.validate-cta-section{
    padding:90px 0;
    background:var(--validate-navy);
    color:var(--validate-white);
    text-align:center;
}

.validate-cta-box{
    max-width:900px;
    margin:0 auto;
    padding:0 26px;
}

.validate-cta-section h2{
    color:var(--validate-white);
}

.validate-cta-section p{
    max-width:720px;
    margin:0 auto 30px;
    color:#CBD5E1;
    font-size:20px;
    line-height:1.65;
}


/* ---------- Forms ---------- */

.validate-form{
    display:grid;
    gap:18px;
}

.validate-form-row{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.validate-field label{
    display:block;
    margin-bottom:8px;
    color:var(--validate-slate);
    font-size:14px;
    font-weight:850;
}

.validate-field input,
.validate-field select,
.validate-field textarea{
    width:100%;
    min-height:50px;
    padding:13px 15px;
    border:1px solid #CBD5E1;
    border-radius:14px;
    background:var(--validate-white);
    color:var(--validate-ink);
    font-size:16px;
    outline:none;
    transition:border-color .2s ease, box-shadow .2s ease;
}

.validate-field textarea{
    min-height:140px;
    resize:vertical;
}

.validate-field input:focus,
.validate-field select:focus,
.validate-field textarea:focus{
    border-color:var(--validate-blue);
    box-shadow:0 0 0 4px rgba(11,107,255,.12);
}


/* ---------- Tables ---------- */

.validate-table-wrap{
    overflow-x:auto;
    border:1px solid var(--validate-border);
    border-radius:20px;
    background:var(--validate-white);
}

.validate-table{
    width:100%;
    min-width:680px;
    border-collapse:collapse;
}

.validate-table th,
.validate-table td{
    padding:18px 20px;
    border-bottom:1px solid var(--validate-border);
    text-align:left;
    vertical-align:top;
}

.validate-table th{
    background:var(--validate-soft);
    color:var(--validate-navy);
    font-size:14px;
    font-weight:900;
}

.validate-table td{
    color:var(--validate-text);
    font-size:15px;
    line-height:1.55;
}


/* ---------- Utilities ---------- */

.validate-text-center{
    text-align:center;
}

.validate-text-left{
    text-align:left;
}

.validate-max-sm{
    max-width:680px;
}

.validate-max-md{
    max-width:860px;
}

.validate-max-lg{
    max-width:1040px;
}

.validate-mx-auto{
    margin-left:auto;
    margin-right:auto;
}

.validate-mt-0{margin-top:0 !important;}
.validate-mt-20{margin-top:20px !important;}
.validate-mt-40{margin-top:40px !important;}
.validate-mt-60{margin-top:60px !important;}

.validate-mb-0{margin-bottom:0 !important;}
.validate-mb-20{margin-bottom:20px !important;}
.validate-mb-40{margin-bottom:40px !important;}
.validate-mb-60{margin-bottom:60px !important;}

.validate-hidden{
    display:none !important;
}


/* ==========================================================
   FOOTER
   Includes footer layout, footer links, footer brand area,
   bottom bar, and all global responsive rules.
========================================================== */

.validate-footer{
    background:var(--validate-navy);
    color:var(--validate-white);
    padding:76px 0 34px;
}

.validate-footer-inner{
    width:100%;
    max-width:var(--validate-container-wide);
    margin:0 auto;
    padding:0 32px;
}

.validate-footer-top{
    display:grid;
    grid-template-columns:1.2fr repeat(4,minmax(0,1fr));
    gap:38px;
    padding-bottom:48px;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.validate-footer-brand{
    max-width:360px;
}

.validate-footer-logo,
.validate-footer-logo-text{
    display:inline-flex;
    align-items:center;
    margin-bottom:18px;
    color:var(--validate-white);
    font-size:30px;
    line-height:1;
    font-weight:900;
    letter-spacing:-1px;
    text-decoration:none;
}

.validate-footer-logo img{
    width:190px;
    height:auto;
}

.validate-footer-brand p{
    margin:0;
    color:#CBD5E1;
    font-size:15px;
    line-height:1.65;
}

.validate-footer-col h4{
    margin:0 0 16px;
    color:var(--validate-white);
    font-size:14px;
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.validate-footer-col a{
    display:block;
    margin:0 0 12px;
    color:#CBD5E1;
    font-size:15px;
    line-height:1.4;
    text-decoration:none;
    transition:color .2s ease;
}

.validate-footer-col a:hover,
.validate-footer-col a:focus-visible{
    color:var(--validate-white);
}

.validate-footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    padding-top:28px;
    color:#94A3B8;
    font-size:14px;
}

.validate-footer-bottom a{
    color:#CBD5E1;
    text-decoration:none;
}

.validate-footer-bottom a:hover,
.validate-footer-bottom a:focus-visible{
    color:var(--validate-white);
}

.validate-footer-legal{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:16px;
}


/* ---------- Responsive: Large Tablet ---------- */

@media(max-width:1180px){
}


/* ---------- Responsive: Tablet / Mobile Header ---------- */

@media(max-width:1100px){

    .validate-hero-inner{
        grid-template-columns:1fr;
        gap:38px;
    }

    .validate-grid-4,
    .validate-grid-3{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .validate-footer-top{
        grid-template-columns:1fr 1fr;
    }
}


/* ---------- Responsive: Small Tablet ---------- */

@media(max-width:720px){
    .validate-container,
    .validate-container-wide{
        padding:0 20px;
    }

    .validate-section{
        padding:68px 0;
    }

    .validate-section-sm{
        padding:48px 0;
    }

    .validate-section-lg{
        padding:82px 0;
    }

    .validate-hero{
        padding:74px 0 70px;
    }

    .validate-hero-inner{
        padding:0 20px;
    }

    .validate-grid-2,
    .validate-grid-3,
    .validate-grid-4{
        grid-template-columns:1fr;
    }

    .validate-stat-strip-inner{
        grid-template-columns:1fr;
    }

    .validate-form-row{
        grid-template-columns:1fr;
    }

    .validate-footer-top{
        grid-template-columns:1fr;
        gap:30px;
    }

    .validate-footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }
}


/* ---------- Responsive: Phone ---------- */

@media(max-width:600px){

    .validate-mobile-nav{
        padding:22px 22px 30px;
    }

    .validate-mobile-nav a{
        font-size:19px;
    }

    .validate-card,
    .validate-hero-panel{
        padding:24px;
        border-radius:20px;
    }

    .validate-btn,
    .validate-button{
        width:100%;
    }

    .validate-btn-row{
        width:100%;
    }

    .validate-footer{
        padding:58px 0 30px;
    }

    .validate-footer-inner{
        padding:0 22px;
    }
}


/* ---------- Responsive: Very Small Phone ---------- */

@media(max-width:420px){

    .validate-mobile-cta{
        font-size:16px !important;
    }
}

/*==========================================================
  HOMEPAGE COMPONENTS
  Validate Modern Design System
==========================================================*/

/* ---------- Homepage ---------- */

.validate-homepage{
    width:100%;
    background:#FFFFFF;
    color:#07142F;
}

/* ---------- Layout ---------- */

.validate-homepage .vh-wrap{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:0 25px;
}

.validate-homepage .vh-section{
    padding:90px 0;
}

.validate-homepage .vh-section-sm{
    padding:60px 0;
}

.validate-homepage .vh-section-lg{
    padding:120px 0;
}

.validate-homepage .vh-section-light{
    background:#FFFFFF;
}

.validate-homepage .vh-section-gray{
    background:#F8FAFC;
}

.validate-homepage .vh-section-dark{
    background:#07142F;
    color:#FFFFFF;
}

/* ---------- Grid ---------- */

.validate-homepage .vh-grid-2{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:50px;
    align-items:center;
}

.validate-homepage .vh-grid-3{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

.validate-homepage .vh-grid-4{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
}

/* ---------- Hero ---------- */

.validate-homepage .vh-hero{
    padding:90px 0 70px;
}

.validate-homepage .vh-eyebrow{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 16px;
    border-radius:999px;
    background:#EAF2FF;
    color:#0B4FB3;
    font-size:14px;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.validate-homepage .vh-hero-title{
    margin:0 0 24px;
    font-size:64px;
    line-height:1.02;
    font-weight:800;
    letter-spacing:-.04em;
    color:#07142F;
}

.validate-homepage .vh-hero-text{
    max-width:640px;
    margin:0 0 32px;
    font-size:22px;
    line-height:1.6;
    color:#5B6470;
}

.validate-homepage .vh-button-group{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:32px;
}

/* ---------- Typography ---------- */

.validate-homepage .vh-section-title{
    margin:0 0 20px;
    font-size:46px;
    line-height:1.12;
    font-weight:800;
    color:#07142F;
}

.validate-homepage .vh-section-dark .vh-section-title{
    color:#FFFFFF;
}

.validate-homepage .vh-section-text{
    max-width:820px;
    font-size:20px;
    line-height:1.7;
    color:#5B6470;
}

.validate-homepage .vh-section-dark .vh-section-text{
    color:#CBD5E1;
}

.validate-homepage .vh-big-title{
    margin:0 0 20px;
    font-size:56px;
    line-height:1.05;
    font-weight:800;
}

/* ---------- Cards ---------- */

.validate-homepage .vh-card{
    background:#FFFFFF;
    border:1px solid #E2E8F0;
    border-radius:24px;
    padding:34px;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.validate-homepage .vh-card-dark{
    background:#07142F;
    color:#FFFFFF;
    border-radius:24px;
    padding:34px;
}

.validate-homepage .vh-card-gray{
    background:#F8FAFC;
    border:1px solid #E2E8F0;
    border-radius:24px;
    padding:34px;
}

/* ---------- Statistics ---------- */

.validate-homepage .vh-stat{
    font-size:64px;
    font-weight:800;
    line-height:1;
    color:#0B4FB3;
    margin-bottom:12px;
}

.validate-homepage .vh-stat-text{
    font-size:18px;
    line-height:1.6;
    color:#5B6470;
}

.validate-homepage .vh-section-dark .vh-stat{
    color:#FFFFFF;
}

.validate-homepage .vh-section-dark .vh-stat-text{
    color:#CBD5E1;
}

/* ---------- Buttons ---------- */

.validate-homepage .vh-btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 30px;
    border-radius:12px;
    background:#2563EB;
    color:#FFFFFF;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    transition:.25s;
}

.validate-homepage .vh-btn-primary:hover{
    background:#1D4ED8;
}

.validate-homepage .vh-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 30px;
    border-radius:12px;
    border:2px solid #2563EB;
    background:#FFFFFF;
    color:#2563EB;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    transition:.25s;
}

.validate-homepage .vh-btn-secondary:hover{
    background:#F8FAFC;
}

/* ---------- Comparison ---------- */

.validate-homepage .vh-vs-badge{
    width:62px;
    height:62px;
    border-radius:50%;
    background:#2563EB;
    color:#FFFFFF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    box-shadow:0 12px 30px rgba(37,99,235,.25);
}

/* ---------- Utilities ---------- */

.validate-homepage .vh-center{
    text-align:center;
}

.validate-homepage .vh-mx-auto{
    margin-left:auto;
    margin-right:auto;
}

.validate-homepage .vh-mb-0{
    margin-bottom:0;
}

.validate-homepage .vh-mb-1{
    margin-bottom:16px;
}

.validate-homepage .vh-mb-2{
    margin-bottom:32px;
}

.validate-homepage .vh-mb-3{
    margin-bottom:48px;
}

/* ---------- Responsive ---------- */

@media (max-width:992px){

    .validate-homepage .vh-grid-2,
    .validate-homepage .vh-grid-3,
    .validate-homepage .vh-grid-4{
        grid-template-columns:1fr;
    }

    .validate-homepage .vh-hero-title{
        font-size:46px;
    }

    .validate-homepage .vh-section-title{
        font-size:36px;
    }

    .validate-homepage .vh-big-title{
        font-size:42px;
    }

    .validate-homepage .vh-section-text,
    .validate-homepage .vh-hero-text{
        font-size:18px;
    }

    .validate-homepage .vh-vs-badge{
        display:none;
    }

}

@media (max-width:640px){

    .validate-homepage .vh-wrap{
        padding:0 20px;
    }

    .validate-homepage .vh-section{
        padding:70px 0;
    }

    .validate-homepage .vh-hero{
        padding:70px 0 50px;
    }

    .validate-homepage .vh-hero-title{
        font-size:38px;
    }

    .validate-homepage .vh-stat{
        font-size:46px;
    }

}
/*==========================================================
  HOMEPAGE FORMAT FIXES
  Add below existing homepage CSS
==========================================================*/

/* Kill accidental blank space */
.validate-homepage p:empty,
.validate-homepage p:has(> br),
.validate-homepage br{
    display:none;
}

/* Overall homepage rhythm */
.validate-homepage{
    overflow:hidden;
}

/* Positioning statement */
.validate-homepage .vh-positioning,
.validate-homepage > section:first-of-type{
    padding:55px 0 35px;
    background:#FFFFFF;
    border-bottom:none;
}

.validate-homepage .vh-positioning .vh-wrap,
.validate-homepage > section:first-of-type .vh-wrap{
    padding-top:0;
    padding-bottom:0;
    text-align:left;
}

/* Hero */
.validate-homepage .vh-hero,
.validate-homepage section.vh-wrap{
    padding-top:45px;
    padding-bottom:95px;
}

.validate-homepage .vh-hero .vh-grid-2,
.validate-homepage section.vh-wrap > div{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* Hero title */
.validate-homepage .vh-hero-title{
    max-width:720px;
    font-size:62px;
    line-height:1.03;
    letter-spacing:-.045em;
    margin-bottom:24px;
}

/* Hero paragraph */
.validate-homepage .vh-hero-text,
.validate-homepage .vh-hero-title + p{
    max-width:620px;
    font-size:20px;
    line-height:1.65;
    color:#5B6470;
    margin-bottom:30px;
}

/* Reduce giant gap between positioning and hero */
.validate-homepage > section:first-of-type + section{
    padding-top:35px;
}

/* Eyebrow/pill */
.validate-homepage .vh-eyebrow,
.validate-homepage > section:first-of-type div div:first-child{
    display:inline-block;
    background:#EAF2FF;
    color:#0B4FB3;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    font-weight:800;
    letter-spacing:.11em;
    text-transform:uppercase;
    margin-bottom:24px;
}

/* Section titles */
.validate-homepage .vh-section-title{
    max-width:980px;
    font-size:48px;
    line-height:1.08;
    letter-spacing:-.035em;
}

/* Dark section */
.validate-homepage .vh-section-dark,
.validate-homepage section[style*="07142f"]{
    padding:90px 0;
}

.validate-homepage .vh-section-dark .vh-wrap{
    padding-top:0;
    padding-bottom:0;
}

/* Stats/cards need to look like cards again */
.validate-homepage .vh-card,
.validate-homepage .vh-card-gray{
    background:#FFFFFF;
    border:1px solid #E2E8F0;
    border-radius:24px;
    padding:34px;
    box-shadow:0 18px 45px rgba(15,23,42,.07);
}

.validate-homepage .vh-section-dark .vh-card,
.validate-homepage .vh-section-dark .vh-card-gray{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    color:#FFFFFF;
    box-shadow:none;
}

/* Buttons */
.validate-homepage .vh-button-group{
    margin-top:28px;
    margin-bottom:14px;
}

.validate-homepage .vh-btn-primary,
.validate-homepage .vh-btn-secondary{
    min-height:56px;
    padding:16px 30px;
    border-radius:12px;
}

/* Problem section spacing */
.validate-homepage .vh-section{
    padding:95px 0;
}

.validate-homepage .vh-section-intro{
    max-width:850px;
    margin:0 auto 55px;
    text-align:center;
}

/* Grid cleanup */
.validate-homepage .vh-grid-2{
    gap:40px;
}

.validate-homepage .vh-grid-3{
    gap:28px;
}

.validate-homepage .vh-grid-4{
    gap:24px;
}

/* Mobile */
@media (max-width:992px){

    .validate-homepage .vh-hero .vh-grid-2,
    .validate-homepage section.vh-wrap > div{
        grid-template-columns:1fr;
    }

    .validate-homepage .vh-hero-title{
        font-size:44px;
    }

    .validate-homepage .vh-section-title{
        font-size:38px;
    }

}

@media (max-width:640px){

    .validate-homepage .vh-hero-title{
        font-size:38px;
    }

    .validate-homepage .vh-section-title{
        font-size:34px;
    }

    .validate-homepage .vh-section,
    .validate-homepage .vh-section-dark{
        padding:70px 0;
    }

}

/* ---------- Why It Works Page ---------- */

.validate-why-page{
    background:#FFFFFF;
}

.validate-why-page .validate-why-hero{
    padding:110px 0 90px;
    background:linear-gradient(135deg,#F8FAFC 0%,#FFFFFF 52%,#EEF6FF 100%);
}

.validate-why-page .validate-hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:56px;
    align-items:center;
}

.validate-why-page .validate-hero-content h1{
    margin:0 0 24px;
    color:#07142F;
    font-size:62px;
    line-height:1.02;
    font-weight:850;
    letter-spacing:-.045em;
}

.validate-why-page .validate-hero-subtitle{
    max-width:720px;
    margin:0 0 34px;
    color:#475569;
    font-size:21px;
    line-height:1.6;
}

.validate-why-page .validate-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.validate-why-page .validate-hero-panel{
    padding:34px;
    border:1px solid #DCE7F3;
    border-radius:28px;
    background:#FFFFFF;
    box-shadow:0 24px 70px rgba(15,23,42,.12);
}

.validate-why-page .validate-panel-label,
.validate-why-page .validate-eyebrow{
    margin:0 0 14px;
    color:#0B72D9;
    font-size:13px;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.validate-why-page .validate-eyebrow-light{
    color:#8BC7FF;
}

.validate-why-page .validate-hero-panel h3{
    margin:0 0 24px;
    color:#07142F;
    font-size:28px;
    line-height:1.18;
    font-weight:800;
}

.validate-why-page .validate-shift-card{
    padding:22px;
    border:1px solid #E2E8F0;
    border-radius:20px;
    background:#F8FAFC;
}

.validate-why-page .validate-shift-card span{
    display:block;
    margin-bottom:10px;
    color:#64748B;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.1em;
}

.validate-why-page .validate-shift-card strong{
    display:block;
    margin-bottom:8px;
    color:#07142F;
    font-size:19px;
    line-height:1.3;
}

.validate-why-page .validate-shift-card p{
    margin:0;
    color:#64748B;
    font-size:15px;
    line-height:1.55;
}

.validate-why-page .validate-shift-card-active{
    border-color:#9CCBFF;
    background:#EFF7FF;
}

.validate-why-page .validate-shift-arrow{
    padding:14px 0;
    text-align:center;
    color:#0B72D9;
    font-size:24px;
    font-weight:800;
}

.validate-why-page .validate-section{
    padding:92px 0;
}

.validate-why-page .validate-soft-section{
    background:#F8FAFC;
}

.validate-why-page .validate-dark-section{
    background:#07142F;
    color:#FFFFFF;
}

.validate-why-page .validate-dark-section h2,
.validate-why-page .validate-dark-section p{
    color:#FFFFFF;
}

.validate-why-page .validate-centered{
    text-align:center;
}

.validate-why-page .validate-section h2{
    margin:0 0 22px;
    color:#07142F;
    font-size:46px;
    line-height:1.08;
    font-weight:850;
    letter-spacing:-.035em;
}

.validate-why-page .validate-section p{
    color:#475569;
    font-size:18px;
    line-height:1.7;
}

.validate-why-page .validate-section-lead{
    max-width:820px;
    margin:0 auto;
    font-size:21px;
}

.validate-why-page .validate-two-column{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:56px;
    align-items:center;
}

.validate-why-page .validate-comparison-box,
.validate-why-page .validate-path-box{
    padding:34px;
    border-radius:28px;
    background:#FFFFFF;
    border:1px solid #E2E8F0;
    box-shadow:0 18px 55px rgba(15,23,42,.08);
}

.validate-why-page .validate-dark-section .validate-path-box{
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.18);
}

.validate-why-page .validate-mini-flow{
    display:grid;
    gap:12px;
}

.validate-why-page .validate-mini-flow span,
.validate-why-page .validate-mini-flow strong{
    display:block;
    padding:16px 18px;
    border-radius:16px;
    background:#F1F5F9;
    color:#334155;
    font-weight:750;
}

.validate-why-page .validate-mini-flow strong{
    background:#07142F;
    color:#FFFFFF;
}

.validate-why-page .validate-section-header{
    max-width:860px;
    margin:0 auto 46px;
    text-align:center;
}

.validate-why-page .validate-timeline-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.validate-why-page .validate-timeline-card,
.validate-why-page .validate-info-card,
.validate-why-page .validate-feature-card{
    padding:28px;
    border:1px solid #E2E8F0;
    border-radius:24px;
    background:#FFFFFF;
    box-shadow:0 14px 42px rgba(15,23,42,.06);
}

.validate-why-page .validate-timeline-card span{
    display:inline-flex;
    margin-bottom:18px;
    color:#0B72D9;
    font-size:13px;
    font-weight:850;
    letter-spacing:.1em;
    text-transform:uppercase;
}

.validate-why-page .validate-timeline-card h3,
.validate-why-page .validate-info-card h3,
.validate-why-page .validate-feature-card h3{
    margin:0 0 12px;
    color:#07142F;
    font-size:24px;
    line-height:1.2;
    font-weight:800;
}

.validate-why-page .validate-timeline-card p,
.validate-why-page .validate-info-card p,
.validate-why-page .validate-feature-card p{
    margin:0;
    color:#64748B;
    font-size:16px;
    line-height:1.6;
}

.validate-why-page .validate-card-grid{
    display:grid;
    gap:22px;
}

.validate-why-page .validate-card-grid-three{
    grid-template-columns:repeat(3,1fr);
}

.validate-why-page .validate-card-grid-five{
    grid-template-columns:repeat(5,1fr);
}

.validate-why-page .validate-path-title{
    margin:0 0 10px;
    color:#8BC7FF;
    font-size:13px;
    font-weight:850;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.validate-why-page .validate-path-box p{
    margin:0 0 24px;
    color:#FFFFFF;
    font-size:18px;
    line-height:1.65;
}

.validate-why-page .validate-path-box p:last-child{
    margin-bottom:0;
}

.validate-why-page .validate-final-cta{
    padding:100px 0;
    background:#07142F;
    color:#FFFFFF;
}

.validate-why-page .validate-final-cta h2{
    margin:0 0 20px;
    color:#FFFFFF;
    font-size:52px;
    line-height:1.08;
    font-weight:850;
    letter-spacing:-.04em;
}

.validate-why-page .validate-final-cta p{
    max-width:720px;
    margin:0 auto 34px;
    color:#D8E7F7;
    font-size:21px;
    line-height:1.6;
}

@media(max-width:1050px){
    .validate-why-page .validate-hero-grid,
    .validate-why-page .validate-two-column{
        grid-template-columns:1fr;
    }

    .validate-why-page .validate-card-grid-five,
    .validate-why-page .validate-timeline-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:720px){
    .validate-why-page .validate-why-hero{
        padding:74px 0 64px;
    }

    .validate-why-page .validate-hero-content h1{
        font-size:42px;
    }

    .validate-why-page .validate-section h2,
    .validate-why-page .validate-final-cta h2{
        font-size:34px;
    }

    .validate-why-page .validate-hero-subtitle,
    .validate-why-page .validate-section-lead,
    .validate-why-page .validate-final-cta p{
        font-size:18px;
    }

    .validate-why-page .validate-section{
        padding:68px 0;
    }

    .validate-why-page .validate-card-grid-three,
    .validate-why-page .validate-card-grid-five,
    .validate-why-page .validate-timeline-grid{
        grid-template-columns:1fr;
    }

    .validate-why-page .validate-hero-panel,
    .validate-why-page .validate-comparison-box,
    .validate-why-page .validate-path-box{
        padding:24px;
        border-radius:22px;
    }

    .validate-why-page .validate-hero-actions{
        flex-direction:column;
    }

    .validate-why-page .validate-hero-actions .validate-btn{
        width:100%;
        justify-content:center;
    }
}

/* ==========================================================
   PAGE-SCOPING GUARDRAILS
   Page-specific sections should size naturally and stay fenced
   inside their page wrapper classes. Avoid 100vh on content pages.
========================================================== */

.validate-modern-page section,
.validate-pricing-page section,
.validate-why-page section,
.validate-homepage section{
    height:auto;
}

.validate-pricing-page .validate-section,
.validate-why-page .validate-section,
.validate-homepage .validate-section{
    min-height:auto;
}

@media(max-width:720px){
    .validate-pricing-page .validate-section,
    .validate-why-page .validate-section,
    .validate-homepage .validate-section{
        padding-top:clamp(56px, 12vw, 72px);
        padding-bottom:clamp(56px, 12vw, 72px);
    }
}
/* ==========================================================
   WHY IT WORKS PAGE REFINEMENTS
   Tightens vertical rhythm and scales the page down slightly.
   Paste after the existing Why It Works CSS in the master stylesheet.
========================================================== */

.validate-why-page .wiw-hero{
    padding:clamp(72px, 6vw, 92px) 40px clamp(64px, 5.5vw, 78px);
}

.validate-why-page .wiw-hero-container{
    max-width:1320px;
    grid-template-columns:56% 44%;
    gap:28px;
}

.validate-why-page .wiw-hero-title{
    max-width:820px;
    margin-bottom:28px;
    font-size:clamp(54px, 5.25vw, 68px);
    line-height:.96;
}

.validate-why-page .wiw-hero-text{
    max-width:700px;
    margin-bottom:22px;
    font-size:19px;
    line-height:1.62;
}

.validate-why-page .wiw-hero-highlight{
    margin-bottom:34px;
    font-size:20px;
}

.validate-why-page .wiw-hero-right{
    width:560px;
    height:560px;
    flex-basis:560px;
}

.validate-why-page .wiw-ring{
    left:280px;
    top:280px;
}

.validate-why-page .wiw-ring-outer{
    width:455px;
    height:455px;
}

.validate-why-page .wiw-ring-inner{
    width:310px;
    height:310px;
}

.validate-why-page .wiw-center-card{
    left:280px;
    top:280px;
    width:264px;
    height:264px;
    border-radius:24px;
}

.validate-why-page .wiw-card-title{
    margin-top:24px;
    font-size:18px;
}

.validate-why-page .wiw-document{
    width:150px;
    height:180px;
    top:62%;
    border-radius:12px;
}

.validate-why-page .wiw-document-fold{
    width:32px;
    height:32px;
}

.validate-why-page .wiw-dollar{
    top:33px;
    font-size:40px;
}

.validate-why-page .wiw-line{
    left:32px;
    height:5px;
}

.validate-why-page .line1{
    width:82px;
    top:82px;
}

.validate-why-page .line2{
    width:62px;
    top:102px;
}

.validate-why-page .line3{
    width:90px;
    top:122px;
}

.validate-why-page .wiw-clock{
    left:-24px;
    top:36px;
    width:48px;
    height:48px;
    border-width:4px;
}

.validate-why-page .wiw-clock::before{
    top:8px;
    height:15px;
}

.validate-why-page .wiw-clock::after{
    top:22px;
    width:13px;
}

.validate-why-page .wiw-chat{
    right:-30px;
    top:76px;
    width:54px;
    height:44px;
    border-radius:11px;
}

.validate-why-page .wiw-chat::before,
.validate-why-page .wiw-chat span{
    top:19px;
}

.validate-why-page .wiw-chat span:nth-child(1),
.validate-why-page .wiw-chat:before{
    left:12px;
}

.validate-why-page .wiw-chat span:nth-child(2){
    left:24px;
}

.validate-why-page .wiw-chat span:nth-child(3){
    left:36px;
}

.validate-why-page .wiw-chat:before{
    box-shadow:
        12px 0 0 #FFFFFF,
        24px 0 0 #FFFFFF;
}

.validate-why-page .wiw-calendar{
    right:-10px;
    bottom:8px;
    width:50px;
    height:56px;
}

.validate-why-page .wiw-calendar-header{
    height:12px;
}

.validate-why-page .wiw-calendar-body{
    left:7px;
    right:7px;
    top:20px;
}

.validate-why-page .wiw-avatar{
    left:-20px;
    bottom:-11px;
    width:48px;
    height:48px;
}

.validate-why-page .wiw-avatar-head{
    width:15px;
    height:15px;
    margin-top:8px;
}

.validate-why-page .wiw-avatar-body{
    width:26px;
    height:14px;
}

.validate-why-page .wiw-thought{
    width:176px;
    min-height:82px;
    padding:17px 19px;
    font-size:16px;
    border-radius:16px;
}

.validate-why-page .thought-top{
    left:280px;
}

.validate-why-page .thought-left{
    left:18px;
    top:160px;
}

.validate-why-page .thought-right{
    right:18px;
    top:160px;
}

.validate-why-page .thought-bottom-left{
    left:78px;
}

.validate-why-page .thought-bottom-right{
    right:78px;
}

.validate-why-page .wiw-decision-section{
    padding:clamp(62px, 5.8vw, 78px) 0;
}

.validate-why-page .wiw-decision-section .validate-container{
    max-width:1280px;
}

.validate-why-page .wiw-section-header{
    max-width:820px;
    margin-bottom:52px;
}

.validate-why-page .wiw-section-eyebrow{
    margin-bottom:18px;
    padding:9px 18px;
}

.validate-why-page .wiw-section-title{
    margin-bottom:18px;
    font-size:clamp(40px, 4.2vw, 50px);
    line-height:1.06;
}

.validate-why-page .wiw-section-intro{
    margin-bottom:14px;
    font-size:21px;
}

.validate-why-page .wiw-section-description{
    max-width:720px;
    font-size:17px;
    line-height:1.65;
}

.validate-why-page .wiw-decision-map{
    max-width:1220px;
    margin-bottom:48px;
}

.validate-why-page .wiw-decision-hub{
    margin-bottom:38px;
}

.validate-why-page .wiw-hub-title{
    font-size:25px;
}

.validate-why-page .wiw-decision-card{
    min-height:156px;
    padding:22px 21px;
}

.validate-why-page .wiw-decision-card-title{
    font-size:20px;
}

.validate-why-page .wiw-decision-card p{
    font-size:15px;
    line-height:1.55;
}

.validate-why-page .wiw-signal-block{
    max-width:850px;
    margin-bottom:48px;
    padding:30px 30px;
}

.validate-why-page .wiw-signal-title{
    font-size:clamp(36px, 3.8vw, 44px);
}

.validate-why-page .wiw-thinking-grid{
    max-width:1120px;
    margin-bottom:52px;
    grid-template-columns:minmax(0,1fr) 78px minmax(0,1fr);
    gap:20px;
}

.validate-why-page .wiw-thinking-card{
    min-height:188px;
    padding:28px;
    border-radius:20px;
}

.validate-why-page .wiw-thinking-card h4{
    font-size:26px;
}

.validate-why-page .wiw-thinking-card p{
    font-size:16px;
    line-height:1.58;
}

.validate-why-page .wiw-thinking-arrow{
    font-size:20px;
}

.validate-why-page .wiw-section-closing{
    margin-top:0;
    padding-top:18px;
}

.validate-why-page .wiw-section-closing:before{
    margin-bottom:22px;
}

.validate-why-page .wiw-section-closing h3{
    font-size:clamp(32px, 3.2vw, 38px);
}

.validate-why-page .why-timeline-section{
    padding:clamp(72px, 6.5vw, 92px) 0;
}

.validate-why-page .why-timeline-section .why-section-header{
    max-width:820px;
    margin-bottom:62px;
}

.validate-why-page .why-section-title{
    font-size:clamp(38px, 4.4vw, 56px);
    line-height:1.04;
}

.validate-why-page .why-section-subtitle{
    font-size:18px;
    line-height:1.62;
}

.validate-why-page .why-timeline{
    max-width:940px;
    padding-bottom:48px;
}

.validate-why-page .why-timeline-row{
    grid-template-columns:128px 70px 1fr;
    margin-bottom:46px;
}

.validate-why-page .why-timeline-date{
    font-size:22px;
}

.validate-why-page .why-timeline-card{
    padding:28px 32px;
}

.validate-why-page .why-timeline-card h3{
    font-size:25px;
}

.validate-why-page .why-timeline-card p{
    font-size:17px;
    line-height:1.62;
}

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

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

.validate-why-page .wiw-motivation-panel{
    border-radius:38px;
    padding:clamp(30px, 3vw, 44px) clamp(24px, 4.4vw, 64px) clamp(32px, 3.3vw, 48px);
}

.validate-why-page .wiw-motivation-eyebrow{
    min-height:44px;
    font-size:clamp(14px, 1vw, 17px);
}

.validate-why-page .wiw-motivation-title{
    max-width:980px;
    font-size:clamp(36px, 3.15vw, 48px) !important;
    line-height:1.08 !important;
}

.validate-why-page .wiw-motivation-intro{
    max-width:700px;
    font-size:clamp(17px, 1.25vw, 20px);
}

.validate-why-page .wiw-motivation-icon{
    width:clamp(92px, 7.4vw, 118px);
}

.validate-why-page .wiw-motivation-line{
    top:58px;
}

.validate-why-page .wiw-motivation-factor + .wiw-motivation-factor:before{
    top:80px;
    height:290px;
}

.validate-why-page .wiw-motivation-factor h3{
    font-size:clamp(19px, 1.35vw, 24px);
}

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

.validate-why-page .wiw-motivation-summary{
    min-height:126px;
    margin-top:20px;
}

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

.validate-why-page .wiw-motivation-summary-text h3{
    font-size:clamp(22px, 1.55vw, 27px);
}

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

.validate-why-page .validate-comparison-section{
    padding:clamp(30px, 3.5vw, 48px) 22px 24px;
}

.validate-why-page .validate-comparison-section .validate-shell{
    max-width:1380px;
}

.validate-why-page .validate-comparison-section h1{
    font-size:clamp(2rem, 3.05vw, 3rem);
}

.validate-why-page .validate-comparison-section .subtitle{
    font-size:clamp(1rem, 1.25vw, 1.22rem);
}

.validate-why-page .validate-comparison-section .comparison-card{
    width:min(100%, 1180px);
}

.validate-why-page .validate-comparison-section .comparison-list{
    padding:15px 44px 19px;
}

.validate-why-page .validate-comparison-section .comparison-list li{
    font-size:clamp(.92rem, 1.05vw, 1.12rem);
}

.validate-why-page .validate-comparison-section .feature-card{
    min-height:144px;
    padding:13px 15px;
}

.validate-why-page .validate-comparison-section .feature-icon{
    width:48px;
    height:48px;
}

.validate-why-page .validate-comparison-section .answer-band{
    min-height:96px;
    grid-template-columns:112px minmax(190px, 260px) 1fr;
}

.validate-why-page .validate-comparison-section .shield-mark{
    width:84px;
    height:84px;
}

.validate-why-page .validate-comparison-section .cta-band{
    min-height:106px;
    grid-template-columns:112px minmax(320px, 1fr) minmax(390px, 540px);
}

.validate-why-page .validate-comparison-section .target-mark{
    width:86px;
    height:86px;
}

.validate-why-page .validate-comparison-section .cta-actions{
    gap:16px;
}

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

    .validate-why-page .wiw-hero-right{
        margin-right:auto;
    }
}

@media(max-width:760px){
    .validate-why-page .wiw-hero{
        padding:64px 22px;
    }

    .validate-why-page .wiw-hero-title{
        font-size:clamp(40px, 11vw, 46px);
    }

    .validate-why-page .wiw-hero-right{
        transform:scale(.72);
    }

    .validate-why-page .wiw-decision-section,
    .validate-why-page .why-timeline-section{
        padding:58px 0;
    }

    .validate-why-page .wiw-section-header,
    .validate-why-page .why-timeline-section .why-section-header{
        margin-bottom:42px;
    }

    .validate-why-page .wiw-thinking-grid{
        grid-template-columns:1fr;
    }

    .validate-why-page .why-timeline-row{
        grid-template-columns:1fr;
        gap:12px;
    }

    .validate-why-page .why-timeline::before,
    .validate-why-page .why-timeline-dot{
        display:none;
    }

    .validate-why-page .why-timeline-date{
        text-align:left;
        padding-top:0;
    }
}
.validate-why-page .thought-right{
    right:18px;
    top:184px;
}
