:root{
    --home-navy:#101b2b;
    --home-navy-2:#172538;
    --home-text:#151b26;
    --home-muted:#667085;
    --home-border:#e4e7ec;
    --home-bg:#ffffff;
    --home-soft:#f7f8fa;
    --home-accent:#ffb000;
    --home-accent-hover:#f2a500;
    --home-blue:#1459a6;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body.cc-home{
    margin:0;
    background:#fff;
    color:var(--home-text);
    font-family:"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.home-container{
    width:min(1280px, calc(100% - 40px));
    margin:0 auto;
}


/* HEADER */

.home-header{
    height:72px;
    display:flex;
    align-items:center;
    background:#fff;
    border-bottom:1px solid #eceff3;
    position:relative;
    z-index:50;
}

.home-header__inner{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:34px;
}

.home-brand{
    display:inline-flex;
    align-items:center;
    text-decoration:none;
    font-weight:900;
    font-size:29px;
    letter-spacing:-1.5px;
    color:#131a26;
    white-space:nowrap;
}

.home-brand__mark{
    color:var(--home-accent);
    letter-spacing:-5px;
    margin-right:5px;
}

.home-brand__text{
    color:#17202d;
}

.home-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
    min-width:0;
}

.home-nav a{
    color:#202734;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
}

.home-nav a:hover{
    color:#000;
}

.home-header__actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.home-btn{
    min-height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 22px;
    border-radius:7px;
    border:1px solid transparent;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:.18s ease;
}

.home-btn--primary{
    background:var(--home-accent);
    color:#121212;
    border-color:var(--home-accent);
}

.home-btn--primary:hover{
    background:var(--home-accent-hover);
    border-color:var(--home-accent-hover);
}

.home-btn--ghost{
    background:#fff;
    color:#161d29;
    border-color:#cfd4dc;
}

.home-btn--white{
    background:#fff;
    color:#161d29;
    border-color:#cfd4dc;
}

.home-btn--large{
    min-width:170px;
    height:50px;
}

.home-lang{
    position:relative;
}

.home-lang__button{
    height:40px;
    display:flex;
    align-items:center;
    gap:7px;
    border:0;
    background:transparent;
    cursor:pointer;
    font-weight:700;
}

.home-lang__button img,
.home-lang__item img{
    width:18px;
    height:12px;
    object-fit:cover;
}

.home-lang__menu{
    display:none;
    position:absolute;
    right:0;
    top:48px;
    width:205px;
    padding:7px;
    background:#fff;
    border:1px solid var(--home-border);
    border-radius:10px;
    box-shadow:0 18px 40px rgba(16,24,40,.14);
}

.home-lang.is-open .home-lang__menu{
    display:block;
}

.home-lang__item{
    display:grid;
    grid-template-columns:22px 30px 1fr;
    align-items:center;
    gap:8px;
    padding:8px 9px;
    border-radius:7px;
    text-decoration:none;
    color:#222b38;
    font-size:12px;
}

.home-lang__item:hover,
.home-lang__item.is-active{
    background:#f3f5f7;
}


/* HERO */

.home-hero{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 78% 34%, rgba(236,240,244,.9), rgba(255,255,255,0) 34%),
        linear-gradient(90deg,#ffffff 0%,#ffffff 43%,#fafbfd 69%,#f4f6f8 100%);
    border-bottom:1px solid #eef0f3;
}

.home-hero__grid{
    min-height:420px;
    display:grid;
    grid-template-columns:minmax(0,52%) minmax(0,48%);
    position:relative;
}

.home-hero__content{
    padding:58px 0 112px;
    position:relative;
    z-index:5;
    min-width:0;
}

.home-hero h1{
    margin:0 0 22px;
    max-width:690px;
    font-family:"Montserrat","Inter",system-ui,sans-serif;
    font-size:clamp(44px,3.15vw,54px);
    font-weight:800;
    line-height:1.03;
    letter-spacing:-2.3px;
    color:#101828;
}



.home-hero__title-accent{
    display:inline-block;
    margin-top:7px;
    font-size:.74em;
    font-weight:700;
    line-height:1.12;
    letter-spacing:-1.4px;
    color:#4b5565;
}

.home-hero__lead{
    max-width:600px;
    margin:0;
    font-family:"Inter", system-ui, sans-serif;
    color:#667085;
    font-size:16px;
    font-weight:400;
    line-height:1.65;
    letter-spacing:-0.15px;
}

.home-hero__buttons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.home-hero__visual{
    position:relative;
    min-width:0;
    min-height:420px;
    overflow:visible;
    z-index:1;
}

.home-hero__truck{
    position:absolute;
    z-index:3;
    right:-70px;
    bottom:0;
    width:850px;
    max-width:none;
    height:auto;
    max-height:none;
    object-fit:contain;
    pointer-events:none;
    filter:none;
}

/* плавное визуальное смешивание правой части с hero */


/* SEARCH */

.home-search{
    position:relative;
    z-index:8;
    margin-top:-76px;
    background:#fff;
    border:1px solid #dfe3e8;
    border-radius:13px;
    box-shadow:0 13px 35px rgba(16,24,40,.08);
}

.home-search__tabs{
    display:flex;
    height:48px;
}

.home-search__tab{
    min-width:155px;
    padding:0 25px;
    border:0;
    border-right:1px solid #e3e6eb;
    background:#fff;
    color:#344054;
    font-weight:700;
    cursor:pointer;
}

.home-search__tab:first-child{
    border-radius:12px 0 0 0;
}

.home-search__tab.is-active{
    background:#44484f;
    color:#fff;
}

.home-search__form{
    display:grid;
    grid-template-columns:1.25fr 1.25fr 1.05fr 1.05fr 1.08fr auto;
    gap:18px;
    align-items:end;
    padding:17px 28px 12px;
}

.home-search__field{
    display:flex;
    flex-direction:column;
    gap:7px;
    min-width:0;
}

.home-search__field > span{
    font-size:12px;
    color:#2f3744;
    font-weight:700;
}

.home-search__field input,
.home-search__field select{
    width:100%;
    height:43px;
    border:1px solid #d6dae0;
    border-radius:7px;
    padding:0 12px;
    background:#fff;
    color:#303846;
    outline:none;
}

.home-search__field input:focus,
.home-search__field select:focus{
    border-color:#f0a400;
    box-shadow:0 0 0 3px rgba(255,176,0,.12);
}

.home-search__range{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:5px;
}

.home-search__range input{
    min-width:0;
}

.home-search__submit{
    height:43px;
    min-width:105px;
    border:0;
}

.home-search__advanced{
    display:inline-flex;
    align-items:center;
    gap:7px;
    margin:0 0 15px 28px;
    color:#596273;
    text-decoration:none;
    font-size:12px;
}


/* STATS */

.home-stats{
    padding:20px 0 0;
    border:0;
    background:transparent;
}

.home-stats__grid{
    min-height:86px;
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    align-items:center;

    box-sizing:border-box;
    border:1px solid var(--home-border);
    border-radius:12px;
    background:#fff;
    overflow:hidden;
}

.home-stat{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    min-width:0;
    min-height:48px;
    border-right:1px solid #e5e7eb;
}

.home-stat:last-child{
    border-right:0;
}

.home-stat__icon{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1.5px solid var(--home-accent);
    color:#f0a000;
    border-radius:50%;
    font-weight:900;
}

.home-stat strong{
    display:block;
    color:#181f2b;
    font-size:18px;
}

.home-stat span{
    display:block;
    margin-top:3px;
    color:#7a8492;
    font-size:12px;
}


/* CONTENT */

.home-section{
    padding:20px 0 0;
}

.home-audience{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.home-audience__card{
    padding:18px 20px;
    border:1px solid var(--home-border);
    border-radius:12px;
    background:#fff;
}

.home-audience__card h2{
    margin:0 0 15px;
    font-size:19px;
}

.home-audience__features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.home-audience__features div{
    position:relative;
    padding-left:42px;
}

.home-audience__features div::before{
    content:"✓";
    position:absolute;
    left:0;
    top:1px;
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff7df;
    color:#e89d00;
    font-weight:900;
}

.home-audience__features strong{
    display:block;
    margin-bottom:3px;
    font-size:13px;
}

.home-audience__features span{
    display:block;
    color:#7a8492;
    font-size:11px;
    line-height:1.4;
}

.home-market{
    padding-bottom:18px;
}

.home-market__grid{
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
    grid-template-areas:
        "latest aside"
        "companies aside";
    gap:24px;
    align-items:start;
}

.home-market__grid > *{
    min-width:0;
}

.home-market__grid > :first-child{
    grid-area:latest;
}

.home-market__grid > :last-child{
    grid-area:companies;
}

/* правый слот под следующий модуль */
.home-market__grid::after{
    content:"";
    grid-area:aside;
    display:block;
    min-height:100%;
    border:1px solid var(--home-border);
    border-radius:12px;
    background:
        radial-gradient(circle at top right, rgba(245,158,11,.10), rgba(245,158,11,0) 36%),
        linear-gradient(180deg,#ffffff 0%,#fbfcfd 100%);
}

.home-section__head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    min-width:0;
    margin-bottom:10px;
}

.home-section__head h2{
    min-width:0;
}

.home-section__head a{
    flex:0 0 auto;
    white-space:nowrap;
}

.home-section__head h2{
    margin:0;
    font-size:17px;
}

.home-section__head a{
    color:#1768b2;
    text-decoration:none;
    font-size:12px;
}

.home-loads,
.home-companies{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border:1px solid var(--home-border);
    border-radius:10px;
    overflow:hidden;
}

.home-load-card,
.home-company-card{
    min-width:0;
    padding:13px;
    border-right:1px solid var(--home-border);
    background:#fff;
}

.home-load-card:last-child,
.home-company-card:last-child{
    border-right:0;
}

.home-load-card > strong{
    font-size:12px;
}

.home-load-card__meta{
    display:flex;
    flex-direction:column;
    gap:4px;
    margin-top:11px;
    color:#626c7a;
    font-size:11px;
}

.home-load-card__bottom{
    display:flex;
    justify-content:space-between;
    gap:8px;
    margin-top:13px;
    color:#6c7582;
    font-size:11px;
}

.home-load-card__bottom b{
    color:#ed9c00;
    font-size:16px;
}

.home-company-card{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.home-company-card__logo{
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#edf1f5;
    font-weight:900;
}

.home-company-card strong{
    font-size:11px;
}

.home-company-card > span{
    color:#7a8492;
    font-size:10px;
}

.home-company-card__rating{
    margin-top:4px;
    color:#eaa000;
    font-weight:700;
    font-size:12px;
}

.home-company-card small{
    color:#3171b8;
    font-size:9px;
}


/* CTA */

.home-cta{
    margin-top:6px;
    border-top:1px solid #e8ebef;
    border-bottom:1px solid #e8ebef;
    background:#fbfcfd;
}

.home-cta__inner{
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.home-cta h2{
    margin:0 0 4px;
    font-size:18px;
}

.home-cta p{
    margin:0;
    color:#697382;
    font-size:12px;
}

.home-cta__actions{
    display:flex;
    gap:10px;
}


/* FOOTER */

.home-footer{
    background:#fff;
    color:#1e2632;
    border-top:1px solid #ebedf0;
}

.home-footer__top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;
    padding-top:24px;
    padding-bottom:20px;
}

.home-footer__brand p{
    max-width:300px;
    margin:8px 0 0;
    color:#7a8492;
    font-size:11px;
}

.home-brand--footer{
    font-size:24px;
}

.home-footer__top > div:not(.home-footer__brand){
    display:flex;
    flex-direction:column;
    gap:7px;
}

.home-footer__top strong{
    margin-bottom:4px;
    font-size:11px;
}

.home-footer__top a{
    color:#6d7683;
    text-decoration:none;
    font-size:10px;
}

.home-footer__bottom{
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-top:1px solid #edf0f2;
    color:#8a929e;
    font-size:10px;
}


/* RESPONSIVE */

@media (max-width:1180px){

    .home-nav{
        gap:16px;
    }

    .home-nav a{
        font-size:12px;
    }

    .home-search__form{
        grid-template-columns:repeat(3,1fr);
    }

    .home-search__submit{
        width:100%;
    }

    .home-market__grid{
        grid-template-columns:1fr;
    }
}


@media (max-width:900px){

    .home-header{
        height:auto;
        padding:12px 0;
    }

    .home-header__inner{
        grid-template-columns:1fr auto;
    }

    .home-nav{
        grid-column:1/-1;
        justify-content:flex-start;
        overflow-x:auto;
        padding-bottom:4px;
    }

    .home-hero__grid{
        grid-template-columns:1fr;
    }

    .home-hero__content{
        padding-bottom:25px;
    }

    .home-hero__visual{
        min-height:280px;
    }

    .home-search{
        margin-top:-20px;
    }

    .home-audience{
        grid-template-columns:1fr;
    }

    .home-stats__grid{
        grid-template-columns:1fr 1fr;
    }

    .home-stat{
        border-bottom:1px solid #e8ebef;
    }

    .home-footer__top{
        grid-template-columns:1fr 1fr;
    }
}


@media (max-width:650px){

    .home-container{
        width:min(100% - 24px, 1280px);
    }

    .home-header__actions{
        gap:6px;
    }

    .home-btn{
        padding-left:13px;
        padding-right:13px;
    }

    .home-hero h1{
        font-size:35px;
    }

    .home-hero__lead{
        font-size:15px;
    }

    .home-hero__buttons{
        flex-direction:column;
    }

    .home-btn--large{
        width:100%;
    }

    .home-truck-placeholder{
        transform:scale(.72);
        transform-origin:right bottom;
        right:-75px;
    }

    .home-search__form{
        grid-template-columns:1fr;
    }

    .home-search__tabs{
        width:100%;
    }

    .home-search__tab{
        flex:1;
        min-width:0;
    }

    .home-stats__grid{
        grid-template-columns:1fr;
    }

    .home-stat{
        justify-content:flex-start;
        padding-left:25px;
        border-right:0;
    }

    .home-audience__features{
        grid-template-columns:1fr;
    }

    .home-loads,
    .home-companies{
        grid-template-columns:1fr 1fr;
    }

    .home-load-card:nth-child(2),
    .home-company-card:nth-child(2){
        border-right:0;
    }

    .home-load-card,
    .home-company-card{
        border-bottom:1px solid var(--home-border);
    }

    .home-cta__inner{
        align-items:flex-start;
        flex-direction:column;
        padding-top:20px;
        padding-bottom:20px;
    }

    .home-cta__actions{
        width:100%;
    }

    .home-cta__actions .home-btn{
        flex:1;
    }

    .home-footer__top{
        grid-template-columns:1fr;
        gap:20px;
    }
}


/* HOME TYPOGRAPHY */
.home-audience__card h2,
.home-section__head h2,
.home-cta h2{
    font-family:"Montserrat", "Inter", system-ui, sans-serif;
    font-weight:800;
    letter-spacing:-0.5px;
}







/* HOME HEADER: multilingual layout */
.home-header .home-container{
    width:min(1500px, calc(100% - 48px));
}

.home-header__inner{
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    align-items:center;
    gap:clamp(18px,1.5vw,30px);
}

.home-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:clamp(12px,1.35vw,24px);
    min-width:0;
}

.home-nav a{
    color:#202734;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
}

.home-header__actions{
    display:flex;
    align-items:center;
    gap:10px;
    white-space:nowrap;
}

/* длинные европейские переводы */
html[lang="ro"] .home-hero h1,
html[lang="tr"] .home-hero h1,
html[lang="pl"] .home-hero h1{
    font-size:clamp(42px,2.9vw,51px);
    letter-spacing:-2px;
}


@media (max-width:1100px){
    .home-hero__grid{
        grid-template-columns:55% 45%;
    }

    .home-hero__truck{
        width:980px;
        right:-190px;
    }

    .home-nav{
        gap:12px;
    }

    .home-nav a{
        font-size:12px;
    }
}

@media (max-width:900px){
    .home-hero__grid{
        grid-template-columns:1fr;
    }

    .home-hero__content{
        padding:42px 0 24px;
    }

    .home-hero__visual{
        min-height:300px;
        overflow:hidden;
    }

    .home-hero__truck{
        width:900px;
        right:-180px;
        bottom:0;
    }

    .home-hero h1{
        max-width:680px;
    }
}

@media (max-width:650px){
    .home-hero h1{
        font-size:36px;
        line-height:1.07;
        letter-spacing:-1.5px;
    }

    html[lang="ro"] .home-hero h1,
    html[lang="tr"] .home-hero h1,
    html[lang="pl"] .home-hero h1{
        font-size:33px;
    }

    .home-hero__visual{
        min-height:225px;
    }

    .home-hero__truck{
        width:690px;
        right:-175px;
    }

    .home-header .home-container{
        width:calc(100% - 24px);
    }
}


/* HOME CITY AUTOCOMPLETE */
.home-search__field{
    position:relative;
}

.home-search .city-suggest{
    position:absolute;
    z-index:1000;
    left:0;
    right:0;
    top:calc(100% + 6px);
    max-height:260px;
    overflow-y:auto;
    padding:6px;
    background:#fff;
    border:1px solid #d6dae0;
    border-radius:10px;
    box-shadow:0 16px 34px rgba(15,23,42,.14);
}

.home-search .city-suggest__item{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:10px 11px;
    border:0;
    border-radius:7px;
    background:#fff;
    color:#202734;
    cursor:pointer;
    text-align:left;
}

.home-search .city-suggest__item:hover,
.home-search .city-suggest__item.is-active{
    background:#f3f5f7;
}

.home-search .city-suggest__name{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    font-size:13px;
    font-weight:700;
}

.home-search .city-suggest__meta{
    flex:0 0 auto;
    color:#7a8492;
    font-size:11px;
    font-weight:700;
}



.home-search .city-suggest__meta{
    display:inline-flex;
    align-items:center;
    gap:6px;
    flex:0 0 auto;
    color:#7a8492;
    font-size:11px;
    font-weight:700;
}

.home-search .city-suggest__flag{
    display:block;
    width:20px;
    height:14px;
    object-fit:cover;
    border-radius:2px;
    box-shadow:0 0 0 1px rgba(15,23,42,.10);
}


/* HOME LATEST LOADS */
.home-load-card{
    display:flex;
    flex-direction:column;
    min-width:0;
    padding:14px;
    border-right:1px solid var(--home-border);
    background:#fff;
    color:#182230;
    text-decoration:none;
    transition:
        background .16s ease,
        box-shadow .16s ease,
        transform .16s ease;
}

.home-load-card:hover{
    position:relative;
    z-index:2;
    background:#fffdf8;
    box-shadow:0 8px 22px rgba(15,23,42,.08);
    transform:translateY(-1px);
}

.home-load-card__route{
    display:flex;
    align-items:center;
    gap:7px;
    min-width:0;
    font-size:12px;
}

.home-load-card__place{
    display:flex;
    align-items:center;
    gap:5px;
    min-width:0;
}

.home-load-card__place strong{
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.home-load-card__flag{
    width:18px;
    height:12px;
    flex:0 0 auto;
    object-fit:cover;
    border-radius:2px;
    box-shadow:0 0 0 1px rgba(15,23,42,.08);
}

.home-load-card__arrow{
    flex:0 0 auto;
    color:#98a2b3;
    font-weight:700;
}

.home-load-card__meta{
    display:flex;
    flex-wrap:wrap;
    gap:5px 10px;
    margin-top:11px;
    color:#626c7a;
    font-size:11px;
}

.home-load-card__bottom{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:8px;
    margin-top:auto;
    padding-top:13px;
    color:#6c7582;
    font-size:10px;
}

.home-load-card__bottom b{
    flex:0 0 auto;
    color:#e99b00;
    font-size:15px;
    white-space:nowrap;
}

.home-loads__empty{
    grid-column:1/-1;
    padding:28px;
    text-align:center;
    color:#7a8492;
    font-size:13px;
}



/* MARKET DESKTOP CARD LAYOUT */
.home-market .home-companies{
    grid-template-columns:repeat(2, minmax(0,1fr));
}

.home-market .home-company-card:nth-child(2n){
    border-right:0;
}

.home-market .home-company-card:nth-child(-n+2){
    border-bottom:1px solid var(--home-border);
}

@media (max-width:1180px){
    .home-market .home-companies{
        grid-template-columns:repeat(4, minmax(0,1fr));
    }

    .home-market .home-company-card:nth-child(-n+2){
        border-bottom:0;
    }

    .home-market .home-company-card:nth-child(2){
        border-right:1px solid var(--home-border);
    }
}

@media (max-width:700px){
    .home-market .home-loads,
    .home-market .home-companies{
        grid-template-columns:1fr;
    }

    .home-market .home-load-card,
    .home-market .home-company-card{
        border-right:0;
        border-bottom:1px solid var(--home-border);
    }

    .home-market .home-load-card:last-child,
    .home-market .home-company-card:last-child{
        border-bottom:0;
    }
}


/* MARKET LEFT STACK */
.home-market .home-loads,
.home-market .home-companies{
    grid-template-columns:repeat(4, minmax(0,1fr));
}

.home-market .home-company-card{
    border-right:1px solid var(--home-border);
    border-bottom:0;
}

.home-market .home-company-card:nth-child(2n){
    border-right:1px solid var(--home-border);
}

.home-market .home-company-card:nth-child(-n+2){
    border-bottom:0;
}

.home-market .home-company-card:last-child{
    border-right:0;
}

@media (max-width:1180px){
    .home-market__grid{
        grid-template-columns:1fr;
        grid-template-areas:
            "latest"
            "companies";
    }

    .home-market__grid::after{
        display:none;
    }
}

@media (max-width:900px){
    .home-market .home-loads,
    .home-market .home-companies{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
}

@media (max-width:700px){
    .home-market .home-loads,
    .home-market .home-companies{
        grid-template-columns:1fr;
    }

    .home-market .home-load-card,
    .home-market .home-company-card{
        border-right:0;
        border-bottom:1px solid var(--home-border);
    }

    .home-market .home-load-card:last-child,
    .home-market .home-company-card:last-child{
        border-bottom:0;
    }
}


/* HOME MARKET FINAL LAYOUT V14 */

.home-market{
    padding-top:0;
    padding-bottom:24px;
}

.home-market__grid{
    display:block !important;
    /* ширину НЕ задаём:
       используется штатная ширина .home-container */
}

.home-market__grid > div{
    min-width:0;
}

.home-market .home-loads{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    width:100%;
}

.home-market .home-load-card{
    min-width:0;
}

.home-market .home-load-card:nth-child(3){
    border-right:0;
}

@media (max-width:900px){
    .home-market .home-loads{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    }

    .home-market .home-load-card:nth-child(2){
        border-right:0;
    }

    .home-market .home-load-card:nth-child(3){
        grid-column:1/-1;
        border-top:1px solid var(--home-border);
    }
}

@media (max-width:600px){
    .home-market .home-loads{
        grid-template-columns:1fr !important;
    }

    .home-market .home-load-card,
    .home-market .home-load-card:nth-child(2),
    .home-market .home-load-card:nth-child(3){
        grid-column:auto;
        border-right:0;
        border-bottom:1px solid var(--home-border);
    }

    .home-market .home-load-card:last-child{
        border-bottom:0;
    }
}


/* HOME HOW IT WORKS */

.home-how{
    padding-top:4px;
    padding-bottom:30px;
    scroll-margin-top:90px;
}

.home-how__panel{
    padding:26px 30px 28px;
    border:1px solid var(--home-border);
    border-radius:14px;
    background:#f8fafc;
}

.home-how__head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:24px;
}

.home-how__head h2{
    margin:0;
    font-family:"Montserrat","Inter",system-ui,sans-serif;
    font-size:22px;
    font-weight:800;
    letter-spacing:-.6px;
    color:#17202d;
}

.home-how__head p{
    max-width:520px;
    margin:0;
    color:#697382;
    font-size:12px;
    line-height:1.55;
    text-align:right;
}

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

.home-how__step{
    display:grid;
    grid-template-columns:auto minmax(0,1fr);
    gap:14px;
    min-width:0;
    padding:5px 26px;
    border-right:1px solid #dfe4ea;
}

.home-how__step:first-child{
    padding-left:0;
}

.home-how__step:last-child{
    padding-right:0;
    border-right:0;
}

.home-how__number{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    border-radius:50%;
    background:#fff3d8;
    color:#d88b00;
    font-size:12px;
    font-weight:800;
}

.home-how__step h3{
    margin:2px 0 6px;
    color:#202938;
    font-size:13px;
    font-weight:800;
}

.home-how__step p{
    margin:0;
    color:#727c89;
    font-size:11px;
    line-height:1.55;
}

@media (max-width:900px){

    .home-how__head{
        align-items:flex-start;
        flex-direction:column;
        gap:8px;
    }

    .home-how__head p{
        max-width:none;
        text-align:left;
    }

    .home-how__steps{
        grid-template-columns:1fr;
    }

    .home-how__step,
    .home-how__step:first-child,
    .home-how__step:last-child{
        padding:16px 0;
        border-right:0;
        border-bottom:1px solid #dfe4ea;
    }

    .home-how__step:first-child{
        padding-top:2px;
    }

    .home-how__step:last-child{
        padding-bottom:2px;
        border-bottom:0;
    }
}

@media (max-width:600px){

    .home-how__panel{
        padding:22px 20px;
    }
}


/* HOME TOOLS V1 */

.home-tools{
    padding-top:2px;
    padding-bottom:30px;
    scroll-margin-top:90px;
}

.home-tools__head{
    margin-bottom:12px;
}

.home-tools__head h2{
    margin:0 0 4px;
    font-family:"Montserrat","Inter",system-ui,sans-serif;
    font-size:22px;
    font-weight:800;
    letter-spacing:-.6px;
    color:#17202d;
}

.home-tools__head p{
    margin:0;
    color:#7a8492;
    font-size:12px;
}

.home-tools__grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
}

.home-tool-card{
    min-width:0;
    padding:18px;
    border:1px solid var(--home-border);
    border-radius:12px;
    background:#fff;
}

.home-tool-card__title{
    display:flex;
    align-items:center;
    gap:11px;
    margin-bottom:15px;
}

.home-tool-card__icon{
    width:36px;
    height:36px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
    border-radius:9px;
    background:#fff4dc;
    color:#d88900;
    font-size:17px;
    font-weight:900;
}

.home-tool-card__title h3{
    margin:0 0 3px;
    color:#26303d;
    font-size:13px;
    font-weight:800;
}

.home-tool-card__title small{
    display:block;
    color:#8a939f;
    font-size:9px;
}

.home-tool-values{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
}

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

.home-tool-values > div{
    min-width:0;
    padding:10px;
    border-radius:8px;
    background:#f7f8fa;
}

.home-tool-values span{
    display:block;
    margin-bottom:3px;
    color:#7a8492;
    font-size:9px;
}

.home-tool-values strong{
    display:block;
    color:#1f2937;
    font-size:12px;
    white-space:nowrap;
}

.home-tool-card__link{
    display:inline-block;
    margin-top:13px;
    color:#1768b2;
    font-size:10px;
    font-weight:700;
    text-decoration:none;
}

.home-tool-routes{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.home-tool-route{
    min-height:28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    padding:4px 7px;
    border-radius:6px;
    color:#384250;
    font-size:10px;
    text-decoration:none;
}

.home-tool-route:hover{
    background:#f6f8fa;
}

.home-tool-route > span{
    display:flex;
    align-items:center;
    gap:5px;
}

.home-tool-route img{
    width:17px;
    height:11px;
    object-fit:cover;
    border-radius:1px;
    box-shadow:0 0 0 1px rgba(15,23,42,.08);
}

.home-tool-route b{
    color:#98a2b3;
}

.home-tool-route > strong{
    min-width:22px;
    padding:2px 6px;
    border-radius:999px;
    background:#eef4ff;
    color:#2463a6;
    font-size:9px;
    text-align:center;
}

@media (max-width:900px){
    .home-tools__grid{
        grid-template-columns:1fr;
    }
}


/* HOME TOOLS DATA TABLES V2 */

.home-currency-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:6px 8px;
}

.home-currency-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    min-width:0;
    min-height:30px;
    padding:6px 8px;
    border-radius:7px;
    background:#f7f8fa;
}

.home-currency-row > span{
    color:#727c89;
    font-size:10px;
    font-weight:700;
}

.home-currency-row > strong{
    color:#202938;
    font-size:11px;
    white-space:nowrap;
}

.home-currency-row > strong small{
    color:#8a939f;
    font-size:8px;
    font-weight:600;
}


.home-fuel-table{
    width:100%;
    overflow:hidden;
    border:1px solid #edf0f3;
    border-radius:8px;
}

.home-fuel-table__head,
.home-fuel-table__row{
    display:grid;
    grid-template-columns:
        minmax(55px,1.15fr)
        repeat(3,minmax(50px,1fr));
    align-items:center;
}

.home-fuel-table__head{
    min-height:27px;
    background:#f5f7f9;
    color:#7d8793;
    font-size:8px;
    font-weight:800;
}

.home-fuel-table__row{
    min-height:31px;
    border-top:1px solid #edf0f3;
}

.home-fuel-table__head > span,
.home-fuel-table__row > span,
.home-fuel-network{
    padding:5px 7px;
    text-align:right;
}

.home-fuel-table__head > span:first-child,
.home-fuel-network{
    text-align:left;
}

.home-fuel-network{
    color:#384250;
    font-size:9px;
    font-weight:800;
}

.home-fuel-table__row > span{
    color:#202938;
    font-size:10px;
    font-weight:700;
    white-space:nowrap;
}

.home-fuel-table__row > span small{
    color:#8a939f;
    font-size:7px;
    font-weight:600;
}

@media (max-width:600px){

    .home-currency-grid{
        grid-template-columns:1fr 1fr;
    }

    .home-fuel-table__head,
    .home-fuel-table__row{
        grid-template-columns:
            minmax(55px,1.1fr)
            repeat(3,minmax(46px,1fr));
    }
}


/* HOME ABOUT V1 */

.home-about{
    padding-top:8px;
    padding-bottom:30px;
    scroll-margin-top:90px;
}

.home-about__panel{
    display:grid;
    grid-template-columns:minmax(0,1.25fr) minmax(0,1fr);
    gap:55px;
    align-items:center;
    padding:30px 34px;
    border:1px solid var(--home-border);
    border-radius:14px;
    background:#f8fafc;
}

.home-about__eyebrow{
    display:block;
    margin-bottom:6px;
    color:#d88b00;
    font-size:10px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.home-about h2{
    margin:0 0 10px;
    font-family:"Montserrat","Inter",system-ui,sans-serif;
    color:#17202d;
    font-size:22px;
    font-weight:800;
    letter-spacing:-.6px;
}

.home-about__content > p{
    max-width:680px;
    margin:0;
    color:#697382;
    font-size:12px;
    line-height:1.65;
}

.home-about__points{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.home-about__points > div{
    display:grid;
    grid-template-columns:24px minmax(0,1fr);
    gap:8px;
    align-items:start;
}

.home-about__points span{
    width:22px;
    height:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff3d8;
    color:#d88900;
    font-size:10px;
    font-weight:900;
}

.home-about__points p{
    margin:2px 0 0;
    color:#404a57;
    font-size:11px;
    line-height:1.5;
}


/* FOOTER CONTACTS V1 */

.home-footer__top{
    grid-template-columns:
        minmax(220px,1.7fr)
        minmax(100px,.8fr)
        minmax(110px,.9fr)
        minmax(190px,1.35fr)
        minmax(130px,1fr);
    gap:34px;
}

.home-footer__contacts a{
    overflow-wrap:anywhere;
}

@media (max-width:1100px){

    .home-footer__top{
        grid-template-columns:1.5fr 1fr 1fr;
    }

    .home-footer__brand{
        grid-row:span 2;
    }
}

@media (max-width:900px){

    .home-about__panel{
        grid-template-columns:1fr;
        gap:24px;
    }
}

@media (max-width:650px){

    .home-about__panel{
        padding:24px 20px;
    }

    .home-footer__top{
        grid-template-columns:1fr 1fr;
        gap:28px 20px;
    }

    .home-footer__brand{
        grid-column:1/-1;
        grid-row:auto;
    }
}

@media (max-width:430px){

    .home-footer__top{
        grid-template-columns:1fr;
    }

    .home-footer__brand{
        grid-column:auto;
    }
}


/* =========================================================
   HOME MARKET INDICATORS V1
   ========================================================= */

.home-indicators{
    padding-top:24px;
    padding-bottom:24px;
}

.home-indicators__grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}

.home-indicator-card{
    min-height:174px;
    padding:18px;
    border:1px solid #e1e5e9;
    border-radius:12px;
    background:#fff;
    box-sizing:border-box;
}

.home-indicator-card--ccargo{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.home-indicator-card__brand{
    display:flex;
    align-items:center;
    gap:9px;
    min-height:34px;
}

.home-indicator-card__brand .home-brand__mark{
    width:32px;
    height:32px;
    font-size:16px;
}

.home-indicator-card__brand strong{
    font-family:"Montserrat","Inter",system-ui,sans-serif;
    font-size:17px;
    font-weight:800;
    color:#17202d;
}

.home-indicator-card__row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding-top:13px;
    border-top:1px solid #edf0f2;
}

.home-indicator-card__label{
    min-width:0;
    color:#6f7985;
    font-size:11px;
    line-height:1.35;
}

.home-indicator-card__value{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:7px;
    flex:0 0 auto;
    white-space:nowrap;
}

.home-indicator-card__value strong{
    color:#17202d;
    font-size:12px;
    font-weight:800;
}

.home-indicator-arrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:22px;
    height:22px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
}

.home-indicator-arrow--up{
    background:#eaf8ef;
    color:#18854b;
}

.home-indicator-arrow--down{
    background:#fff0ef;
    color:#c23b32;
}

.home-indicator-arrow--flat{
    background:#f0f2f4;
    color:#68727e;
}

.home-indicator-card--empty{
    background:#fff;
}


/* Tablet */

@media (max-width:1050px){

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


/* Mobile: оставляем будущие карточки в одном ряду
   с горизонтальным скроллом */

@media (max-width:650px){

    .home-indicators__grid{
        grid-template-columns:none;
        grid-auto-flow:column;
        grid-auto-columns:minmax(245px,82vw);
        overflow-x:auto;
        overflow-y:hidden;
        padding-bottom:5px;
        scroll-snap-type:x proximity;
    }

    .home-indicator-card{
        scroll-snap-align:start;
    }
}


/* CCARGO HOME ANNOUNCEMENT V2 */

.home-indicator-card--announcement{
    position:relative;

    display:flex;
    flex-direction:column;

    min-width:0;

    overflow:hidden;
}

.home-announcement-card__head{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:12px;

    padding-bottom:11px;
    margin-bottom:11px;

    border-bottom:1px solid #e9edef;
}

.home-announcement-card__title{
    color:#1d2935;

    font-size:12px;
    line-height:1.2;
    font-weight:800;
}

.home-announcement-card__signal{
    flex:0 0 auto;

    width:7px;
    height:7px;

    border-radius:50%;

    background:#7290a5;
}

.home-announcement-card__body{
    display:flex;
    flex:1;

    min-height:48px;
}

.home-announcement-card__message{
    margin:auto 0;

    color:#4f5d69;

    font-size:11px;
    line-height:1.55;

    overflow-wrap:anywhere;
}

.home-announcement-card__empty{
    margin:auto 0;

    color:#929ba3;

    font-size:11px;
    line-height:1.5;
}


/* IMPORTANT */

.home-indicator-card--announcement.is-important{
    border-color:#ead9b5;
}

.home-indicator-card--announcement.is-important
.home-announcement-card__signal{
    background:#d99a24;
}


/* WARNING */

.home-indicator-card--announcement.is-warning{
    border-color:#e7cbc6;
}

.home-indicator-card--announcement.is-warning
.home-announcement-card__signal{
    background:#bd6255;
}



/* =========================================================
   HOME INDICATORS CARD COLORS V2
   ========================================================= */

/*
 * Общая поверхность.
 * Цвета намеренно очень слабые, чтобы блоки отличались,
 * но не выглядели как детский конструктор.
 */

.home-indicators__grid > .home-indicator-card{
    transition:
        border-color .18s ease,
        background-color .18s ease,
        transform .18s ease;
}

.home-indicators__grid > .home-indicator-card:hover{
    transform:translateY(-1px);
}


/* 1. CCargo */

.home-indicators__grid > .home-indicator-card:nth-child(1){
    background:#f5f9fc;
    border-color:#d8e4ec;
}


/* 2. резервная карточка */

.home-indicators__grid > .home-indicator-card:nth-child(2){
    background:#f6faf7;
    border-color:#dbe8de;
}


/* 3. резервная карточка */

.home-indicators__grid > .home-indicator-card:nth-child(3){
    background:#f8f7fb;
    border-color:#e2deea;
}


/* 4. Оголошення */

.home-indicators__grid > .home-indicator-card:nth-child(4){
    background:#faf9f5;
    border-color:#e7e2d5;
}


/* =========================================================
   ANNOUNCEMENT ALIGNMENT
   ========================================================= */

.home-indicator-card--announcement{
    justify-content:flex-start;
}

.home-announcement-card__head{
    min-height:28px;
}

.home-announcement-card__body{
    display:flex;
    align-items:center;

    min-height:70px;
}

.home-announcement-card__message,
.home-announcement-card__empty{
    width:100%;
    margin:0;

    text-align:left;
}

.home-announcement-card__message{
    color:#374550;

    font-size:11.5px;
    line-height:1.58;
    font-weight:500;
}


/* =========================================================
   PRIORITY BADGE
   ========================================================= */

.home-announcement-card__priority{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    flex:0 0 auto;

    min-height:20px;
    padding:3px 7px;

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

    background:#f2f5f7;
    color:#64727e;

    font-size:8.5px;
    line-height:1;
    font-weight:800;

    letter-spacing:.02em;
    white-space:nowrap;
}


/* NORMAL */

.home-announcement-card__priority.is-default{
    border-color:#d7e0e5;
    background:#f1f5f7;
    color:#61717d;
}


/* IMPORTANT */

.home-announcement-card__priority.is-important{
    border-color:#e8cc8d;
    background:#fff5dc;
    color:#996612;
}

.home-indicator-card--announcement.is-important{
    border-color:#e7cc91 !important;
    background:#fffaf0 !important;
}

.home-indicator-card--announcement.is-important
.home-announcement-card__head{
    border-bottom-color:#efdfbd;
}


/* WARNING */

.home-announcement-card__priority.is-warning{
    border-color:#e4b7af;
    background:#fff0ed;
    color:#a4473c;
}

.home-indicator-card--announcement.is-warning{
    border-color:#e3bbb4 !important;
    background:#fff7f5 !important;
}

.home-indicator-card--announcement.is-warning
.home-announcement-card__head{
    border-bottom-color:#ecd0ca;
}


/* EMPTY NOTICE */

.home-indicator-card--announcement:not(.is-important):not(.is-warning)
.home-announcement-card__empty{
    color:#89949d;
}


/* MOBILE */

@media (max-width:700px){

    .home-announcement-card__body{
        min-height:54px;
    }

    .home-announcement-card__message{
        font-size:11px;
    }

    .home-announcement-card__priority{
        font-size:8px;
    }
}



/* CCARGO HOME PAGE BACKGROUND V2 */

body {
    background: #edf2f5;
}

/* Основные секции не должны перекрывать общий фон белым */
.home-section {
    background-color: transparent;
}

/* Белые карточки должны хорошо читаться на общем фоне */
.home-indicator-card {
    box-shadow:
        0 1px 2px rgba(15, 23, 42, .04),
        0 8px 24px rgba(15, 23, 42, .045);
}


/* CCARGO HERO EUROPE MAP V3 */

.home-hero::before{
    content:"";

    position:absolute;
    z-index:0;

    left:0;
    right:0;
    top:0;
    bottom:0;

    width:100%;
    height:100%;

    background-image:
        url("/assets/img/home-europe-map.svg?v=4");

    background-repeat:no-repeat;
    background-position:center 42%;
    background-size:96% auto;

    opacity:.34;

    pointer-events:none;
}

.home-hero__grid{
    position:relative;
    z-index:1;
}

.home-hero__content{
    position:relative;
    z-index:5;
}

.home-hero__visual{
    position:relative;
    z-index:2;
}

.home-hero__truck{
    z-index:3;
}

@media (max-width:1100px){

    .home-hero::before{
        background-size:115% auto;
        background-position:center 45%;
        opacity:.20;
    }
}

@media (max-width:900px){

    .home-hero::before{
        background-size:135% auto;
        background-position:center 55%;
        opacity:.14;
    }
}

@media (max-width:650px){

    .home-hero::before{
        opacity:.08;
        background-size:auto 85%;
        background-position:center 55%;
    }
}

