:root{
    --red:#e43127;
    --red-dark:#b91814;
    --black:#070909;
    --dark:#111516;
    --dark-soft:#1b2022;
    --white:#ffffff;
    --muted:#c7c7c7;
    --line:rgba(255,255,255,.25);
}

*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body{
    font-family:Inter,Arial,Helvetica,sans-serif;
    background:
        linear-gradient(115deg, rgba(7,9,9,.97) 0%, rgba(12,15,16,.98) 48%, rgba(228,49,39,.95) 48%, rgba(228,49,39,.95) 100%);
    color:var(--white);
    min-height:100vh;
}

.topbar{
    height:92px;
    background:rgba(0,0,0,.92);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 90px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
    font-size:34px;
    font-weight:900;
    letter-spacing:-2px;
}

.logo sup{
    font-size:11px;
    margin-left:2px;
}

nav{
    display:flex;
    gap:34px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:800;
    font-size:14px;
    text-transform:uppercase;
    cursor:pointer;
}

nav a.active{
    color:var(--red);
}

.contact-btn,
.main-btn{
    background:var(--red);
    color:white;
    border:0;
    border-radius:9px;
    padding:15px 28px;
    font-weight:900;
    text-transform:uppercase;
    text-decoration:none;
    display:inline-block;
}

.page{
    max-width:1500px;
    margin:0 auto;
    padding:55px 45px 30px;
}

.hero{
    margin-bottom:35px;
}

.eyebrow,
.label{
    color:var(--red);
    font-weight:900;
    font-size:14px;
    text-transform:uppercase;
    margin-bottom:12px;
}

h1{
    font-size:54px;
    line-height:1;
    text-transform:uppercase;
}

.intro{
    margin-top:16px;
    font-size:19px;
    color:#e6e6e6;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin-bottom:30px;
}

.feature-card{
    min-height:340px;
    padding:36px;
    border:1px solid var(--line);
    border-radius:16px;
    background:linear-gradient(145deg, rgba(20,24,25,.96), rgba(6,8,8,.96));
    box-shadow:0 22px 60px rgba(0,0,0,.35);
}

.feature-card.red{
    background:linear-gradient(145deg, rgba(228,49,39,.98), rgba(164,13,10,.95));
}

.icon{
    width:82px;
    height:82px;
    border-radius:50%;
    background:linear-gradient(145deg,var(--red),var(--red-dark));
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:28px;
}

.feature-card h2{
    font-size:32px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.number{
    font-size:52px;
    font-weight:900;
    color:var(--red);
    margin-bottom:12px;
}

.feature-card.red .number{
    color:white;
}

.feature-card p{
    font-size:17px;
    line-height:1.5;
    color:#f2f2f2;
}

.large-card{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:45px;
    align-items:center;
    padding:42px;
    border:1px solid var(--line);
    border-radius:16px;
    background:linear-gradient(145deg, rgba(13,17,18,.98), rgba(5,7,7,.96));
    box-shadow:0 22px 60px rgba(0,0,0,.35);
}

.large-icon{
    width:170px;
    height:170px;
    border-radius:50%;
    background:linear-gradient(145deg,var(--red),var(--red-dark));
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:80px;
}

.large-card h2{
    font-size:34px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.large-card p{
    color:#eeeeee;
    font-size:17px;
    line-height:1.55;
    margin-bottom:18px;
}

.benefits{
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:25px;
}

.benefits div{
    display:flex;
    flex-direction:column;
    gap:5px;
    font-size:15px;
    border-right:1px solid var(--red);
    padding-right:20px;
}

.benefits span{
    color:var(--muted);
}

@media(max-width:1100px){
    .topbar{
        padding:0 25px;
    }

    nav{
        display:none;
    }

    .cards,
    .benefits{
        grid-template-columns:1fr;
    }

    .large-card{
        grid-template-columns:1fr;
    }

    h1{
        font-size:38px;
    }
}