.builder_hero_v2{
    padding:90px 0;
    background:
    radial-gradient(circle at 85% 20%, rgba(2,118,172,.12), transparent 30%),
    linear-gradient(180deg,#ffffff,#f8fbff);
}

.builder_v2_grid{
    display:grid;
    grid-template-columns: 1fr 620px;
    gap:70px;
    align-items:center;
}

.builder_v2_badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:999px;
    background:#eaf8fc;
    color:#0276ac;
    font-weight:700;
}

.builder_v2_content h1{
    font-size:52px;
    line-height:1.1;
    color:#071827;
    margin:24px 0;
    font-weight:600;
}

.builder_v2_content p{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
}

.builder_v2_stats{
    display:flex;
    gap:25px;
    margin-top:45px;
}

.builder_v2_stats div{
    padding-right:25px;
    border-right:1px solid #dce5ef;
}

.builder_v2_stats div:last-child{
    border:none;
}

.builder_v2_stats strong{
    display:block;
    color:#071827;
    font-size:28px;
}

.builder_v2_stats span{
    color:#64748b;
    font-size:14px;
}

.site_creation_flow{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-bottom:35px;
}

.flow_step{
    background:#fff;
    border:1px solid #dce5ef;
    border-radius:18px;
    padding:18px;
    min-width:150px;
    text-align:center;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.flow_step i{
    display:block;
    font-size:22px;
    color:#0276ac;
    margin-right: 5px;
}

.flow_step span{
    font-size:14px;
    font-weight:700;
    color:#071827;
}

.flow_arrow{
    color:#0276ac;
    font-size:20px;
}

.builder_preview{
    background:#fff;
    border:1px solid #dce5ef;
    border-radius:28px;
    padding:20px;
    box-shadow:0 25px 70px rgba(15,23,42,.08);
}

.preview_browser{
    background:#fff;
}

.browser_top{
    display:flex;
    gap:8px;
    margin-bottom:20px;
}

.browser_top span{
    width:11px;
    height:11px;
    border-radius:50%;
    background:#22c55e;
}

.browser_top span:nth-child(2){
    background:#facc15;
}

.browser_top span:nth-child(3){
    background:#ef4444;
}

.preview_header{
    height:130px;
    border-radius:20px;
    background:linear-gradient(135deg,#0276ac,#3ab9f5);
    margin-bottom:20px;
}

.preview_cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:20px;
}

.preview_cards div{
    height:90px;
    border-radius:16px;
    background:#f1f5f9;
}

.preview_content{
    height:140px;
    border-radius:16px;
    background:#f8fafc;
}

@media(max-width:1000px){

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

    .builder_v2_content{
        text-align:center;
    }

    .builder_v2_content p{
        margin:auto;
    }

    .builder_v2_actions{
        justify-content:center;
    }

    .builder_v2_stats{
        justify-content:center;
        flex-wrap:wrap;
    }

    .builder_v2_visual{
        max-width:600px;
        margin:auto;
    }

    .site_creation_flow{
        flex-wrap:wrap;
    }

}

.builder_hero_actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:35px;
}

.builder_btn_primary,
.builder_btn_secondary{
    height:58px;
    padding:0 28px;
    border-radius:16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    transition:.25s;
}

.builder_btn_primary{
    background:linear-gradient(
        135deg,
        #0276ac,
        #0095d9
    );
    color:#fff;
    box-shadow:
        0 15px 40px rgba(2,118,172,.25);
}

.builder_btn_primary:hover{
    transform:translateY(-3px);
    box-shadow:
        0 25px 50px rgba(2,118,172,.35);
    color:#fff;
}

.builder_btn_secondary{
    background:#fff;
    color:#071827;
    border:1px solid #dce5ef;
}

.builder_btn_secondary:hover{
    background:#f8fbff;
    transform:translateY(-3px);
    color:#071827;
    text-decoration:none;
}

.builder_btn_primary i,
.builder_btn_secondary i{
    font-size:18px;
}

.builder_overview,
.builder_plans{
    padding:100px 0;
    background:#fff;
}

.builder_plans{
    background:#f8fbff;
}

.builder_overview_grid{
    margin-top:55px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.builder_overview_card{
    background:#fff;
    border:1px solid #dce5ef;
    border-radius:24px;
    padding:32px;
    box-shadow:0 16px 35px rgba(15,23,42,.05);
    transition:.25s;
}

.builder_overview_card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 48px rgba(15,23,42,.08);
}

.builder_overview_card i{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#eaf8fc;
    color:#0276ac;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:18px;
}

.builder_overview_card h3{
    color:#071827;
    font-size:22px;
    margin:0 0 12px;
}

.builder_overview_card p{
    color:#64748b;
    line-height:1.7;
    margin:0;
}

.builder_story{
    padding:100px 0;
    background:#fff;
}

.builder_story_grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:34px;
    align-items:start;
}

.builder_story_copy span{
    display:inline-block;
    color:#0276ac;
    font-weight:800;
    margin-bottom:16px;
}

.builder_story_copy h2{
    color:#071827;
    font-size:42px;
    line-height:1.15;
    margin:0 0 18px;
}

.builder_story_copy p{
    color:#64748b;
    line-height:1.8;
    margin:0;
}

.builder_story_list{
    display:grid;
    gap:18px;
}

.builder_story_list div{
    background:#f8fbff;
    border:1px solid #dce5ef;
    border-radius:24px;
    padding:28px;
}

.builder_story_list strong{
    display:block;
    color:#071827;
    font-size:22px;
    margin-bottom:10px;
}

.builder_story_list p{
    color:#64748b;
    line-height:1.7;
    margin:0;
}

.builder_plan_grid{
    margin-top:55px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.builder_plan_card{
    position:relative;
    background:#fff;
    border:1px solid #dce5ef;
    border-radius:28px;
    padding:38px;
    transition:.25s;
}

.builder_plan_card:hover{
    transform:translateY(-6px);
    box-shadow:0 24px 55px rgba(15,23,42,.08);
}

.builder_plan_card.featured{
    border:2px solid #0276ac;
    box-shadow:0 22px 60px rgba(2,118,172,.12);
}

.builder_plan_tag{
    position:absolute;
    top:-16px;
    left:30px;
    background:#0276ac;
    color:#fff;
    border-radius:999px;
    padding:8px 15px;
    font-size:12px;
    font-weight:900;
}

.builder_plan_card h3{
    color:#071827;
    font-size:30px;
    margin:0 0 12px;
}

.builder_plan_card p{
    color:#64748b;
    line-height:1.7;
    min-height:72px;
    margin:0;
}

.builder_plan_price{
    display:flex;
    flex-direction:column;
    gap:8px;
    margin:26px 0;
}

.builder_plan_price strong{
    color:#071827;
    font-size:42px;
    line-height:1.1;
    letter-spacing:-1px;
}

.builder_plan_price small{
    color:#64748b;
    font-size:14px;
    font-weight:800;
}

.builder_plan_btn{
    height:56px;
    border-radius:15px;
    background:#071827;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:900;
    margin-bottom:28px;
}

.builder_plan_card.featured .builder_plan_btn,
.builder_plan_btn:hover{
    background:#0276ac;
    color:#fff;
    text-decoration:none;
}

.builder_plan_card ul{
    list-style:none;
    padding:0;
    margin:0;
    display:grid;
    gap:14px;
}

.builder_plan_card li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    color:#334155;
    font-weight:600;
}

.builder_plan_card li i{
    color:#16a34a;
    margin-top:2px;
}

.builder_cta{
    padding:100px 0;
    background:#fff;
}

.builder_cta_box{
    background:linear-gradient(135deg,#0276ac,#00a8ff);
    border-radius:34px;
    padding:75px;
    text-align:center;
    color:#fff;
}

.builder_cta_box h2{
    font-size:46px;
    margin:0 0 16px;
}

.builder_cta_box p{
    max-width:760px;
    margin:0 auto 30px;
    font-size:18px;
    line-height:1.8;
    opacity:.94;
}

.builder_cta_box a{
    height:58px;
    padding:0 30px;
    border-radius:16px;
    background:#fff;
    color:#0276ac;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    font-weight:900;
}

@media(max-width:1100px){
    .builder_overview_grid{
        grid-template-columns:repeat(2,1fr);
    }

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

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

@media(max-width:700px){
    .builder_hero_v2{
        padding:70px 0;
    }

    .builder_v2_content h1{
        font-size:38px;
    }

    .builder_overview,
    .builder_story,
    .builder_plans,
    .builder_cta{
        padding:70px 0;
    }

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

    .builder_story_copy h2{
        font-size:32px;
    }

    .builder_plan_price strong{
        font-size:34px;
    }

    .builder_cta_box{
        padding:45px 25px;
    }

    .builder_cta_box h2{
        font-size:32px;
    }

    .builder_btn_primary,
    .builder_btn_secondary{
        width:100%;
    }
}
