.sfs-hero{
    font-family:var(--sfs-font);
    color:var(--sfs-text);
    background-size:auto;
    background-position:center;
    position:relative;
    min-height:700px;
    padding:35px 3vw 28px;
    box-sizing:border-box;
    overflow:hidden;
    background-repeat: no-repeat;
}

.sfs-hero*{
    box-sizing:border-box;
}

.sfs-inner{
    position:relative;
    max-width:1450px;
    margin:auto;
    min-height:535px;
}

.sfs-copy{
    position:relative;
    z-index:4;
    width:39%;
    padding-top:78px;
}

.sfs-copy h1{
    font-size:clamp(38px,3.2vw,60px);
    line-height:1.2;
    letter-spacing:1.2px;
    margin:0 0 20px;
    color:var(--sfs-title);
    font-weight:800;
}

.sfs-copy h1 span{
    color:var(--sfs-accent);
}

.sfs-copy p{
    font-size:19px;
    line-height:1.55;
    max-width:470px;
    margin:0 0 28px;
}

.sfs-mini{
    display:flex;
    gap:15px;
    margin:20px 0 34px;
    align-items:center;
}
.sfs-mini img {
    width: 33px;
    height: 33px;
}

.sfs-mini b{
    color:var(--sfs-accent);
    font-size:24px;
    display:flex;
    gap:8px;
    align-items:center;
}

.sfs-mini small{
    color:var(--sfs-text);
    font-size:14px;
    line-height:1.15;
    font-weight:900;
}

.sfs-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.sfs-actions a{
    font-size:15px;
    text-decoration:none;
    padding:16px 22px;
    border-radius:6px;
    font-weight:700;
    transition:.25s transform,.25s box-shadow;
}

.sfs-actions a:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.16);
    color:#000;
}

.sfs-primary{
    background:var(--sfs-btn);
    color:var(--sfs-btn-text);
}

.sfs-secondary{
    color:var(--sfs-title);
    background:rgba(255,255,255,.78);
    border:1px solid #9ca8b8;
}

.sfs-categories{
    position:absolute;
    z-index:5;
    left:38%;
    right:1%;
    top:18px;
    display:grid;
    grid-template-columns:repeat(7,1fr);
    gap:10px;
    text-align:center;
}

.sfs-cat{
    font-size:11px;
    font-weight:800;
    line-height:1.45;
    display:flex;
    align-items:center;
    flex-direction:column;
    min-width:0;
}

.sfs-cat-icon{
    width:66px;
    height:66px;
    border:1px solid #697789;
    border-radius:50%;
    background:rgba(255,255,255,.76);
    display:grid;
    place-items:center;
    font-size:29px;
    margin-bottom:8px;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
    overflow:hidden;
}

.sfs-cat-icon img{
    width:90%;
    height:100%;
    object-fit:contain;
    padding:15px;
}

.sfs-cat i{
    height:115px;
    border-left:1px solid #fff;
    margin-top:9px;
    position:relative;
}

.sfs-cat i:after{
    content:"";
    width:4px;
    height:4px;
    border-radius:50%;
    background:#fff;
    position:absolute;
    bottom:-2px;
    left:-2px;
}

.sfs-products{
    position:absolute;
    z-index:2;
    right:0;
    bottom:5px;
    width:756px;
    max-width:100%;
    max-height:340px;
    object-fit:contain;
    object-position:right bottom;
}

.sfs-feature-panel{
    position:relative;
    z-index:7;
    max-width:1400px;
    margin:12px auto 0;
    padding:24px 38px;
    background:var(--sfs-panel);
    border:1px solid rgba(120,130,145,.25);
    border-radius:18px;
    box-shadow:0 12px 30px rgba(16,29,45,.14);
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.sfs-feature{
    display:flex;
    gap:15px;
    padding:0 28px;
    border-right:1px solid #d9dee5;
    align-items:flex-start;
}

.sfs-feature:first-child{
    padding-left:0;
}

.sfs-feature:last-child{
    border-right:0;
    padding-right:0;
}

.sfs-feature-icon{
    font-size:42px;
    color:var(--sfs-accent);
    line-height:1;
    flex:0 0 48px;
}

.sfs-feature-icon img{
    width:46px;
    height:46px;
    object-fit:contain;
}

.sfs-feature h3{
    font-size:16px;
    margin:3px 0 7px;
    color:var(--sfs-title);
}

.sfs-feature p{
    font-size:11.8px;
    line-height:1.6;
    margin:0;
    font-weight:900;
}

.sfs-reveal{
    opacity:0;
    transform:translateY(24px);
    transition:opacity .8s ease,transform .8s ease;
}

.sfs-reveal-right{
    opacity:0;
    transform:translateX(40px);
    transition:opacity 1s ease,transform 1s ease;
}

.sfs-hero.sfs-visible .sfs-reveal,.sfs-hero.sfs-visible .sfs-reveal-right{
    opacity:1;
    transform:none;
}

.sfs-float{
    animation:sfsFloat calc(3s/var(--sfs-speed)) ease-in-out infinite;
    animation-delay:calc(var(--i)*-.18s);
}

@keyframes sfsFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-7px);
    }
}
@media (prefers-reduced-motion:reduce)
{
    .sfs-float{
        animation:none;
    }
    .sfs-reveal,.sfs-reveal-right{
        opacity:1;
        transform:none;
        transition:none;
    }
}
@media(max-width:1050px){
    .sfs-hero{
        min-height:780px;
    }
    .sfs-copy{
        width:48%;
    }
    .sfs-categories{
        left:47%;
        grid-template-columns:repeat(4,1fr);
        right:0;
    }
    .sfs-cat:nth-child(n+5){
        display:none;
    }
    .sfs-products{
        width:67%;
        bottom:45px;
    }
    .sfs-feature-panel{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }
    .sfs-feature:nth-child(2){
        border-right:0;
    }
    .sfs-feature:nth-child(3),.sfs-feature:nth-child(4){
        padding-top:20px;
        border-top:1px solid #d9dee5;
    }
}
@media(max-width:700px){
    .sfs-hero{
        padding:20px 16px 20px;
        min-height:auto;
        background-position:center;
    }
    
    .sfs-inner{
        min-height:auto;
        display:flex;
        flex-direction:column;
    }
    
    .sfs-copy{
        width:100%;
        padding-top:20px;
    }
    .sfs-copy h1{font-size:40px;
}
.sfs-copy p{
    font-size:16px;
}
.sfs-mini{
    gap:12px;
    flex-wrap:wrap;
}
.sfs-categories{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    order:2;
    margin:30px 0 10px;
    grid-template-columns:repeat(3,1fr);
}

.sfs-cat{
    font-size:9px;
}

.sfs-cat:nth-child(n){
    display:flex;
}
.sfs-cat-icon{
    width:55px;
    height:55px;
}

.sfs-cat i{
    height:22px;
}

.sfs-products{
    position:relative;
    order:3;
    width:100%;
    max-height:none;
    right:auto;
    bottom:auto;
    margin-top:0;
}

.sfs-feature-panel{
    padding:20px;
    grid-template-columns:1fr;
    border-radius:14px;
}
.sfs-feature, .sfs-feature:first-child,.sfs-feature:last-child{
    padding:12px 0;
    border:0;
    border-bottom:1px solid #d9dee5;
}

.sfs-feature:last-child{
    border-bottom:0;
}

.sfs-feature:nth-child(3),.sfs-feature:nth-child(4){
    border-top:0;
}

.sfs-feature-icon{
    font-size:35px;
    flex-basis:42px;
}
.sfs-feature h3{
    font-size:15px;
}
.sfs-actions a{
    width:100%;
    text-align:center;
}
.sfs-actions{
    gap:10px;
}
}