*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#111827;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#ffffff;
    border-bottom:1px solid #ececec;
}

.nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:28px;
    font-weight:800;
}

.logo-dot{
    width:18px;
    height:18px;
    border-radius:50%;
    background:#df1f26;
}

.nav-menu{
    display:flex;
    gap:30px;
}

.nav-menu a{
    text-decoration:none;
    color:#374151;
    font-weight:600;
    transition:0.3s;
}

.nav-menu a:hover{
    color:#df1f26;
}

.support-btn{
    text-decoration:none;
    background:#111827;
    color:#ffffff;
    padding:14px 24px;
    border-radius:12px;
    font-weight:700;
}

/* HERO */

.hero-section{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:#f8fafc;
}

.hero-bg{
    position:absolute;
    width:700px;
    height:700px;
    background:#ffe5e5;
    border-radius:50%;
    top:-280px;
    right:-150px;
    filter:blur(80px);
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    background:#fee2e2;
    color:#df1f26;
    padding:10px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
}

.hero-content h1{
    font-size:60px;
    line-height:1.05;
    margin-bottom:24px;
    font-weight:800;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:35px;
}

.primary-btn{
    background:#df1f26;
    color:#ffffff;
    text-decoration:none;
    padding:16px 28px;
    border-radius:14px;
    font-weight:700;
    transition:0.3s;
}

.primary-btn:hover{
    background:#c2181f;
}

.secondary-btn{
    background:#ffffff;
    border:1px solid #d1d5db;
    color:#111827;
    text-decoration:none;
    padding:16px 28px;
    border-radius:14px;
    font-weight:700;
}

.hero-features{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.feature-box{
    font-size:15px;
    font-weight:600;
    color:#374151;
}

.hero-image{
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:620px;
    filter:drop-shadow(0 25px 45px rgba(0,0,0,0.15));
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{
    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* COMMON */

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#df1f26;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
}

.section-heading h2{
    font-size:46px;
    margin:18px 0;
}

.section-heading p{
    max-width:760px;
    margin:auto;
    color:#6b7280;
    line-height:1.8;
}

/* STEPS */

.steps-section{
    padding:100px 0;
    background:#111827;
    color:#ffffff;
}

.dark-heading h2,
.dark-heading p{
    color:#ffffff;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.step-box{
    background:#1f2937;
    padding:40px;
    border-radius:26px;
}

.step-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#df1f26;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    margin-bottom:25px;
}

.step-box h3{
    margin-bottom:16px;
    font-size:24px;
}

.step-box p{
    color:#d1d5db;
    line-height:1.8;
}

/* INFO */

.info-section{
    padding:100px 0;
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.info-card{
    background:#ffffff;
    padding:42px;
    border-radius:28px;
    border:1px solid #ececec;
    transition:0.3s;
}

.info-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,0.06);
}

.active-card{
    border:2px solid #df1f26;
}

.card-icon{
    font-size:42px;
    margin-bottom:24px;
}

.info-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.info-card p{
    color:#6b7280;
    line-height:1.8;
}

/* SUPPORT */

.support-section{
    padding:100px 0;
}

.support-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.support-image img{
    width:100%;
    border-radius:30px;
}

.small-title{
    color:#df1f26;
    font-size:14px;
    font-weight:700;
}

.support-content h2{
    font-size:48px;
    margin:18px 0 30px;
}

.support-content ul{
    list-style:none;
    margin-bottom:35px;
}

.support-content ul li{
    margin-bottom:16px;
    font-size:17px;
    color:#374151;
}

/* CTA */

.cta-section{
    padding:100px 0;
}

.cta-box{
    background:linear-gradient(135deg,#df1f26,#a71218);
    padding:80px;
    border-radius:32px;
    text-align:center;
    color:#ffffff;
}

.cta-box h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-box p{
    font-size:18px;
    margin-bottom:35px;
}

.white-btn{
    display:inline-block;
    background:#ffffff;
    color:#df1f26;
    text-decoration:none;
    padding:16px 30px;
    border-radius:14px;
    font-weight:700;
}

/* FOOTER */

.footer{
    background:#111827;
    padding:30px 0;
    text-align:center;
    color:#d1d5db;
}

/* FLOATING CHAT */

.floating-chat{
    position:fixed;
    right:20px;
    bottom:20px;
    background:#df1f26;
    color:#ffffff;
    text-decoration:none;
    padding:16px 24px;
    border-radius:50px;
    font-weight:700;
    box-shadow:0 15px 30px rgba(0,0,0,0.18);
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-grid,
    .steps-grid,
    .card-grid,
    .support-grid{
        grid-template-columns:1fr;
    }

    .nav-menu{
        display:none;
    }

    .hero-content,
    .support-content{
        text-align:center;
    }

    .hero-buttons,
    .hero-features{
        justify-content:center;
    }

    .hero-content h1,
    .section-heading h2,
    .support-content h2,
    .cta-box h2{
        font-size:38px;
    }
}

@media(max-width:600px){

    .hero-buttons{
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
    }

    .cta-box{
        padding:50px 25px;
    }

    .info-card,
    .step-box{
        padding:30px;
    }
}