*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#f8fafc;
    color:#172033;
}

a{
    color:inherit;
    text-decoration:none;
}

header{
    width:min(1180px,calc(100% - 40px));
    margin:auto;
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:22px;
    font-weight:800;
    color:#b91c1c;
}

.brand img{
    width:48px;
    height:48px;
    object-fit:contain;
}

nav{
    display:flex;
    align-items:center;
    gap:26px;
    font-weight:700;
}

.btn-login{
    padding:11px 20px;
    border-radius:12px;
    background:#b91c1c;
    color:#fff;
}

.hero{
    width:min(1180px,calc(100% - 40px));
    margin:40px auto 70px;
    min-height:520px;
    display:grid;
    grid-template-columns:1.15fr .85fr;
    align-items:center;
    gap:60px;
    padding:70px;
    border-radius:32px;
    background:linear-gradient(135deg,#fff 0%,#fff7f7 100%);
    box-shadow:0 25px 70px rgba(15,23,42,.08);
}

.hero-content{
    max-width:680px;
}

.badge{
    display:inline-block;
    margin-bottom:22px;
    padding:9px 15px;
    border-radius:999px;
    background:#fee2e2;
    color:#991b1b;
    font-size:14px;
    font-weight:800;
}

.hero h1{
    margin:0 0 22px;
    font-size:56px;
    line-height:1.08;
    letter-spacing:-2px;
}

.hero p{
    margin:0;
    max-width:620px;
    font-size:19px;
    line-height:1.75;
    color:#64748b;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:32px;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 24px;
    border-radius:14px;
    font-weight:800;
}

.btn-primary{
    background:#b91c1c;
    color:#fff;
    box-shadow:0 12px 28px rgba(185,28,28,.22);
}

.btn-secondary{
    background:#fff;
    border:1px solid #e2e8f0;
    color:#172033;
}

.hero-logo{
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-logo img{
    width:min(100%,380px);
    filter:drop-shadow(0 24px 30px rgba(15,23,42,.12));
}

.section{
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
    padding:70px 0;
}

.section-heading{
    max-width:720px;
    margin:0 auto 42px;
    text-align:center;
}

.section-heading span{
    display:inline-block;
    margin-bottom:12px;
    color:#b91c1c;
    font-size:13px;
    font-weight:800;
    letter-spacing:1.5px;
}

.section-heading h2{
    margin:0 0 16px;
    font-size:40px;
    line-height:1.2;
    letter-spacing:-1px;
}

.section-heading p{
    margin:0;
    color:#64748b;
    font-size:17px;
    line-height:1.7;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.feature-card{
    padding:30px;
    border:1px solid #e2e8f0;
    border-radius:22px;
    background:#fff;
    box-shadow:0 12px 35px rgba(15,23,42,.05);
}

.feature-icon{
    width:48px;
    height:48px;
    margin-bottom:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#fee2e2;
    color:#b91c1c;
    font-weight:900;
}

.feature-card h3{
    margin:0 0 12px;
    font-size:20px;
}

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

.business-section{
    padding-top:90px;
}

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

.business-card{
    padding:28px;
    border-radius:20px;
    background:#172033;
    color:#fff;
}

.business-card strong{
    display:block;
    margin-bottom:12px;
    font-size:20px;
}

.business-card p{
    margin:0;
    color:#cbd5e1;
    line-height:1.7;
}

.cta-section{
    width:min(1180px,calc(100% - 40px));
    margin:80px auto;
    padding:55px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    border-radius:28px;
    background:linear-gradient(135deg,#b91c1c,#7f1d1d);
    color:#fff;
}

.cta-section > div:first-child{
    max-width:720px;
}

.cta-section > div:first-child > span{
    display:block;
    margin-bottom:12px;
    font-size:13px;
    font-weight:900;
    letter-spacing:1.5px;
}

.cta-section h2{
    margin:0 0 14px;
    font-size:38px;
    line-height:1.2;
}

.cta-section p{
    margin:0;
    color:#fee2e2;
    font-size:17px;
    line-height:1.7;
}

.cta-actions{
    min-width:230px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
}

.cta-primary{
    width:100%;
    padding:15px 22px;
    border-radius:14px;
    background:#fff;
    color:#991b1b;
    text-align:center;
    font-weight:900;
}

.cta-actions span{
    color:#fecaca;
    font-size:13px;
    text-align:center;
}

footer{
    padding:30px 20px;
    border-top:1px solid #e2e8f0;
    background:#fff;
    color:#64748b;
    text-align:center;
}

footer p{
    margin:0;
}

@media (max-width:900px){
    header{
        min-height:auto;
        padding:18px 0;
        flex-wrap:wrap;
    }

    nav{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:16px;
    }

    .hero{
        grid-template-columns:1fr;
        gap:35px;
        padding:50px 40px;
        text-align:center;
    }

    .hero-content{
        margin:auto;
    }

    .hero h1{
        font-size:44px;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero-logo img{
        width:min(100%,280px);
    }

    .feature-grid,
    .business-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cta-section{
        flex-direction:column;
        text-align:center;
    }
}

@media (max-width:600px){
    header{
        width:calc(100% - 28px);
    }

    .brand{
        margin:auto;
    }

    nav a:not(.btn-login){
        font-size:14px;
    }

    .hero{
        width:calc(100% - 24px);
        margin-top:18px;
        padding:38px 22px;
        border-radius:24px;
    }

    .hero h1{
        font-size:36px;
        letter-spacing:-1px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-actions{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .section{
        width:calc(100% - 28px);
        padding:55px 0;
    }

    .section-heading h2{
        font-size:31px;
    }

    .feature-grid,
    .business-grid{
        grid-template-columns:1fr;
    }

    .cta-section{
        width:calc(100% - 24px);
        margin:55px auto;
        padding:40px 24px;
    }

    .cta-section h2{
        font-size:30px;
    }

    .cta-actions{
        width:100%;
        min-width:0;
    }
}
