/* assets/css/b2b.css */

.cw-b2b-page{
    background:#fff;
    color:#202938;
}

.cw-b2b-container{
    width:min(1180px, calc(100% - 64px));
    margin:0 auto;
}

.cw-b2b-kicker{
    display:inline-block;
    margin-bottom:12px;
    color:#007866;
    font-size:13px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.04em;
}

/* HERO */

.cw-b2b-hero{
    min-height:560px;
    background-size:cover;
    background-position:center right;
    display:flex;
    align-items:center;
}

.cw-b2b-hero-content{
    max-width:520px;
    padding:70px 0 72px;
}

.cw-b2b-hero h1{
    margin:0;
    color:#142033;
    font-size:58px;
    line-height:1.03;
    font-weight:900;
    letter-spacing:-1.8px;
}

.cw-b2b-hero h1 strong{
    color:#007866;
}

.cw-b2b-hero h2{
    max-width:440px;
    margin:24px 0 0;
    color:#007144;
    font-size:23px;
    line-height:1.32;
    font-weight:900;
}

.cw-b2b-hero p{
    max-width:440px;
    margin:22px 0 0;
    color:#354153;
    font-size:15px;
    line-height:1.75;
}

.cw-b2b-hero-actions{
    display:flex;
    gap:18px;
    margin-top:34px;
    align-items:center;
}

.cw-b2b-primary-btn,
.cw-b2b-secondary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:52px;
    padding:0 28px;
    border-radius:6px;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    text-decoration:none;
    transition:.22s ease;
}

.cw-b2b-primary-btn{
    background:#006b3d;
    color:#fff;
    box-shadow:0 14px 30px rgba(0,107,61,.18);
}

.cw-b2b-primary-btn:hover{
    background:#005531;
    color:#fff;
    transform:translateY(-2px);
}

.cw-b2b-secondary-btn{
    border:1px solid rgba(0,107,61,.5);
    color:#006b3d;
    background:rgba(255,255,255,.7);
}

.cw-b2b-secondary-btn:hover{
    background:#fff;
    color:#006b3d;
    transform:translateY(-2px);
}

/* LOGOS */

.cw-b2b-logos{
    padding:24px 0 28px;
    border-top:1px solid #edf1f2;
    border-bottom:1px solid #edf1f2;
    background:#fff;
    text-align:center;
}

.cw-b2b-logos span{
    display:block;
    margin-bottom:18px;
    color:#7b8796;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.04em;
}

.cw-b2b-logo-row{
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:28px;
    align-items:center;
}

.cw-b2b-logo-row strong{
    color:#1f2937;
    font-size:20px;
    line-height:1;
    font-weight:900;
    opacity:.9;
}

.cw-b2b-logo-item{
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.cw-b2b-logo-item img{
    max-width:100%;
    max-height:44px;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
    filter:grayscale(100%);
    opacity:.78;
    transition:.2s ease;
}

.cw-b2b-logo-item img:hover{
    filter:grayscale(0);
    opacity:1;
}

/* COMMON HEADINGS */

.cw-b2b-section-head h2,
.cw-b2b-centered h2{
    margin:0;
    color:#202938;
    font-size:32px;
    line-height:1.14;
    font-weight:900;
    letter-spacing:-.5px;
}

.cw-b2b-section-head p,
.cw-b2b-centered p{
    margin:16px 0 0;
    color:#667384;
    font-size:15px;
    line-height:1.72;
}

.cw-b2b-centered{
    max-width:780px;
    margin:0 auto 36px;
    text-align:center;
}

.cw-b2b-centered h2::after{
    content:"";
    display:block;
    width:44px;
    height:4px;
    margin:18px auto 0;
    border-radius:40px;
    background:#dcd238;
}

/* PROBLEM */

.cw-b2b-problem{
    padding:64px 0 54px;
    background:#fafafa;
}

.cw-b2b-problem-grid{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:52px;
    align-items:start;
}

.cw-b2b-problem-items{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:26px;
}

.cw-b2b-problem-items div{
    text-align:center;
}

.cw-b2b-problem-items i{
    display:block;
    margin-bottom:12px;
    color:#7b8188;
    font-size:36px;
}

.cw-b2b-problem-items strong{
    display:block;
    position:relative;
    margin-bottom:8px;
    color:#202938;
    font-size:13px;
    line-height:1.25;
    font-weight:900;
}

.cw-b2b-problem-items strong::before{
    content:"×";
    display:inline-grid;
    place-items:center;
    width:14px;
    height:14px;
    margin-right:5px;
    border-radius:50%;
    background:#ef4b2b;
    color:#fff;
    font-size:10px;
    font-weight:900;
    line-height:1;
}

.cw-b2b-problem-items p{
    margin:0;
    color:#697586;
    font-size:12px;
    line-height:1.45;
}

.cw-b2b-old-flow{
    display:grid;
    grid-template-columns:auto 32px auto 32px auto 32px auto 1fr;
    gap:18px;
    align-items:center;
    margin-top:46px;
    padding-left:270px;
}

.cw-b2b-old-flow > div{
    text-align:center;
}

.cw-b2b-old-flow > div i{
    color:#8a8f95;
    font-size:40px;
}

.cw-b2b-old-flow > div span{
    display:block;
    margin-top:8px;
    color:#4d5868;
    font-size:13px;
    font-weight:800;
}

.cw-b2b-old-flow > i{
    color:#8d98a6;
    font-size:18px;
}

.cw-b2b-old-flow p{
    margin:0 0 0 18px;
    padding-left:28px;
    border-left:1px solid #ccd4d8;
    color:#d33221;
    font-size:15px;
    line-height:1.45;
    font-weight:900;
}

/* SOLUTION */

.cw-b2b-solution{
    padding:56px 0;
    background:linear-gradient(135deg,#006f46,#003f29);
    color:#fff;
}

.cw-b2b-solution-grid{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:48px;
    align-items:center;
}

.cw-b2b-solution .cw-b2b-kicker{
    color:#c9df55;
}

.cw-b2b-solution h2{
    margin:0;
    color:#fff;
    font-size:34px;
    line-height:1.08;
    font-weight:900;
    letter-spacing:-.5px;
}

.cw-b2b-solution p{
    margin:16px 0 0;
    color:rgba(255,255,255,.84);
    font-size:14px;
    line-height:1.7;
}

.cw-b2b-solution-flow{
    display:grid;
    grid-template-columns:1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr;
    gap:14px;
    align-items:center;
}

.cw-b2b-solution-flow div{
    text-align:center;
}

.cw-b2b-solution-flow div i{
    width:92px;
    height:92px;
    margin:0 auto 12px;
    border:1px solid rgba(255,255,255,.45);
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:34px;
}

.cw-b2b-solution-flow > i{
    color:rgba(255,255,255,.75);
}

.cw-b2b-solution-flow span{
    color:#fff;
    font-size:13px;
    line-height:1.35;
    font-weight:900;
}

/* VIDEO */

.cw-b2b-video{
    padding:70px 0;
    background:#fff;
}

.cw-b2b-video-grid{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:70px;
    align-items:center;
}

.cw-b2b-video-frame{
    position:relative;
    border-radius:10px;
    overflow:hidden;
    background:#111;
    box-shadow:0 24px 60px rgba(18,30,42,.14);
}

.cw-b2b-video-frame::before{
    content:"";
    display:block;
    padding-top:56.25%;
}

.cw-b2b-video-frame iframe{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    border:0;
}

/* FEATURES */

.cw-b2b-features{
    padding:58px 0 70px;
    background:#fff;
    border-top:1px solid #edf1f2;
}

.cw-b2b-feature-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.cw-b2b-feature-grid div{
    min-height:190px;
    padding:30px 18px 24px;
    border:1px solid #dfe7ea;
    border-radius:12px;
    background:#fff;
    text-align:center;
    box-shadow:0 16px 38px rgba(27,43,58,.055);
    transition:.22s ease;
}

.cw-b2b-feature-grid div:hover{
    transform:translateY(-5px);
    border-color:rgba(0,120,102,.35);
    box-shadow:0 20px 48px rgba(27,43,58,.09);
}

.cw-b2b-feature-grid i{
    margin-bottom:18px;
    color:#007866;
    font-size:42px;
}

.cw-b2b-feature-grid h3{
    margin:0 0 10px;
    color:#202938;
    font-size:14px;
    line-height:1.25;
    font-weight:900;
}

.cw-b2b-feature-grid p{
    margin:0;
    color:#667384;
    font-size:12px;
    line-height:1.6;
}

/* STEPS */

.cw-b2b-steps{
    padding:56px 0 68px;
    background:#f8fbfb;
}

.cw-b2b-step-line{
    position:relative;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:42px;
}

.cw-b2b-step-line::before{
    content:"";
    position:absolute;
    top:20px;
    left:8%;
    right:8%;
    height:1px;
    border-top:2px dotted rgba(0,120,102,.35);
}

.cw-b2b-step-line div{
    position:relative;
    text-align:center;
}

.cw-b2b-step-line span{
    position:relative;
    z-index:2;
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#d9eadb;
    color:#007866;
    font-size:17px;
    font-weight:900;
}

.cw-b2b-step-line i{
    color:#555d67;
    font-size:36px;
    margin-bottom:14px;
}

.cw-b2b-step-line h3{
    margin:0 0 8px;
    color:#202938;
    font-size:14px;
    font-weight:900;
}

.cw-b2b-step-line p{
    margin:0;
    color:#667384;
    font-size:12px;
    line-height:1.55;
}

/* DASHBOARD */

.cw-b2b-dashboard{
    padding:64px 0 54px;
    background:linear-gradient(90deg,#f0faf4 0%,#fff 45%,#fff 100%);
}

.cw-b2b-dashboard-grid{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:52px;
    align-items:center;
}

.cw-b2b-dashboard ul{
    margin:22px 0 0;
    padding:0;
    list-style:none;
}

.cw-b2b-dashboard li{
    position:relative;
    margin-bottom:9px;
    padding-left:24px;
    color:#324052;
    font-size:14px;
    font-weight:700;
}

.cw-b2b-dashboard li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#007866;
    font-weight:900;
}

.cw-b2b-dashboard-image{
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 22px 60px rgba(27,43,58,.12);
}

.cw-b2b-dashboard-image img{
    width:100%;
    display:block;
}

/* BENEFITS */

.cw-b2b-benefits{
    padding:46px 0 54px;
    background:#fff;
}

.cw-b2b-benefit-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:28px;
}

.cw-b2b-benefit-grid div{
    display:grid;
    grid-template-columns:44px 1fr;
    gap:14px;
    align-items:start;
}

.cw-b2b-benefit-grid i{
    color:#007866;
    font-size:34px;
}

.cw-b2b-benefit-grid h3{
    margin:0 0 6px;
    color:#202938;
    font-size:14px;
    font-weight:900;
}

.cw-b2b-benefit-grid p{
    margin:0;
    color:#667384;
    font-size:12px;
    line-height:1.45;
}

/* CTA */

.cw-b2b-cta{
    margin:0;
    padding:48px 0;
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.cw-b2b-cta h2{
    margin:0;
    color:#fff;
    font-size:32px;
    line-height:1.15;
    font-weight:900;
}

.cw-b2b-cta p{
    max-width:620px;
    margin:10px auto 22px;
    color:rgba(255,255,255,.88);
    font-size:14px;
    line-height:1.65;
}

.cw-b2b-cta-actions{
    display:flex;
    justify-content:center;
    gap:14px;
}

.cw-b2b-cta-actions a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:42px;
    padding:0 22px;
    border-radius:5px;
    background:#fff;
    color:#006b3d;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    text-decoration:none;
}

.cw-b2b-cta-actions a:first-child{
    background:#dcd238;
    color:#17212f;
}

/* RESPONSIVE */

@media (max-width:1100px){
    .cw-b2b-hero h1{
        font-size:48px;
    }

    .cw-b2b-logo-row{
        grid-template-columns:repeat(4,1fr);
    }

    .cw-b2b-problem-grid,
    .cw-b2b-solution-grid,
    .cw-b2b-video-grid,
    .cw-b2b-dashboard-grid{
        grid-template-columns:1fr;
    }

    .cw-b2b-old-flow{
        padding-left:0;
    }

    .cw-b2b-problem-items,
    .cw-b2b-feature-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .cw-b2b-benefit-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:900px){
    .cw-b2b-container{
        width:min(100% - 34px, 1180px);
    }

    .cw-b2b-hero{
        min-height:auto;
        padding:36px 0 340px;
        background-size:900px auto;
        background-position:bottom center;
    }

    .cw-b2b-hero-content{
        padding:0;
    }

    .cw-b2b-old-flow{
        grid-template-columns:1fr;
        gap:18px;
        text-align:center;
    }

    .cw-b2b-old-flow > i{
        transform:rotate(90deg);
        margin:0 auto;
    }

    .cw-b2b-old-flow p{
        margin:10px 0 0;
        padding:18px 0 0;
        border-left:0;
        border-top:1px solid #ccd4d8;
    }

    .cw-b2b-solution-flow{
        grid-template-columns:1fr;
        gap:20px;
    }

    .cw-b2b-solution-flow > i{
        transform:rotate(90deg);
        margin:0 auto;
    }

    .cw-b2b-step-line{
        grid-template-columns:repeat(2,1fr);
    }

    .cw-b2b-step-line::before{
        display:none;
    }
}

@media (max-width:640px){
    .cw-b2b-hero{
        padding-bottom:280px;
        background-size:740px auto;
    }

    .cw-b2b-hero h1{
        font-size:36px;
    }

    .cw-b2b-hero h2{
        font-size:18px;
    }

    .cw-b2b-hero-actions,
    .cw-b2b-cta-actions{
        flex-direction:column;
        align-items:flex-start;
    }

    .cw-b2b-primary-btn,
    .cw-b2b-secondary-btn,
    .cw-b2b-cta-actions a{
        width:100%;
    }

    .cw-b2b-logo-row,
    .cw-b2b-problem-items,
    .cw-b2b-feature-grid,
    .cw-b2b-step-line,
    .cw-b2b-benefit-grid{
        grid-template-columns:1fr;
    }

    .cw-b2b-benefit-grid div{
        grid-template-columns:38px 1fr;
    }

    .cw-b2b-section-head h2,
    .cw-b2b-centered h2,
    .cw-b2b-solution h2,
    .cw-b2b-cta h2{
        font-size:26px;
    }
}