@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#eef2ff;
    padding:40px 15px;
    color:#1e293b;
}

/* MAIN CONTAINER */

.container{
    max-width:950px;
    margin:auto;
}

/* HERO SECTION */

.top-banner{
    position:relative;

    background:
    linear-gradient(
        135deg,
        rgba(15,23,42,0.88),
        rgba(30,41,59,0.88)
    ),
    url('banner.jpg');

    background-size:cover;
    background-position:center;

    border-radius:28px;

    padding:42px;

    margin-bottom:35px;

    overflow:hidden;

    box-shadow:
    0 20px 40px rgba(15,23,42,0.18);
}

.content{

    background:white;

    padding:38px;

    border-radius:24px;

    box-shadow:
    0 12px 30px rgba(15,23,42,0.06);

    margin-top:-40px;

    position:relative;

    z-index:5;
}

.content::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(to right,#dc2626,#ef4444);

    border-radius:24px 24px 0 0;
}

.brand-row{
    display:flex;
    align-items:center;
    gap:22px;

    margin-bottom:50px;
}

.logo{
    width:120px;

    background:white;

    padding:12px;

    border-radius:22px;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.18);
}

.brand-row h1{
    color:white;

    font-size:56px;

    font-weight:700;

    line-height:1.1;

    margin-bottom:6px;
}



.tagline{
    color:#cbd5e1;

    font-size:18px;

    letter-spacing:0.3px;
}


.banner-text h2{
    color:white;

    font-size:52px;

    line-height:1.15;

    margin-bottom:18px;

    font-weight:700;

    max-width:700px;
}


.banner-text p{
    color:#f1f5f9;

    max-width:720px;

    line-height:1.9;

    font-size:19px;

    opacity:0.92;
}


.top-banner::after{

    content:"";

    position:absolute;

    width:260px;
    height:260px;

    background:
    radial-gradient(
        rgba(239,68,68,0.28),
        transparent 70%
    );

    top:-60px;
    right:-60px;

    border-radius:50%;
}

/* FORM CARD */

.content{
    background:white;
    padding:35px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(15,23,42,0.06);
}

/* FORM */

.form-group{
    margin-bottom:24px;
}

label{
    display:block;
    margin-bottom:10px;
    font-size:15px;
    font-weight:600;
    color:#334155;
}

input,
select{
    width:100%;
    padding:16px;
    border-radius:14px;
    border:1px solid #cbd5e1;
    background:#ffffff;
    font-size:15px;
    transition:0.2s ease;
}

input::placeholder{
    color:#94a3b8;
}

input:focus,
select:focus{
    outline:none;
    border-color:#dc2626;
    background:white;
    box-shadow:0 0 0 4px rgba(220,38,38,0.08);
}

/* RADIO */

.radio-group{
    display:flex;
    gap:30px;
    margin-top:12px;
}

.radio-group label{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:500;
    cursor:pointer;
}

/* BUTTON */

button{
    width:100%;
    padding:17px;
    border:none;
    border-radius:16px;
    background:linear-gradient(to right,#dc2626,#ef4444);
    color:white;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.2s ease;
}

button:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 20px rgba(220,38,38,0.2);
}

/* RESULT CARD */

.result{
    margin-top:35px;
    background:#f8fafc;
    border-radius:20px;
    padding:30px;
    border-left:6px solid #dc2626;
    display:none;
}

.result h2{
    margin-bottom:25px;
    color:#dc2626;
    font-size:30px;
}

.result p{
    margin-bottom:14px;
    font-size:16px;
    line-height:1.7;
}

.result strong{
    color:#0f172a;
}

/* FINAL PRICE */

.final{
    margin-top:25px;
    background:linear-gradient(to right,#16a34a,#22c55e);
    color:white;
    padding:18px;
    border-radius:16px;
    text-align:center;
    font-size:28px;
    font-weight:700;
}

/* TRUST SECTION */

.trust-section{
    margin-top:40px;
}

.trust-section h3{
    margin-bottom:20px;
    color:#dc2626;
    font-size:28px;
}

.trust-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.trust-card{
    background:#f8fafc;
    padding:18px;
    border-radius:16px;
    border:1px solid #e2e8f0;
    font-weight:500;
    transition:0.2s;
}

.trust-card:hover{
    transform:translateY(-2px);
    border-color:#dc2626;
}

/* OFFER SECTION */

.offer-box{
    margin-top:40px;
    background:linear-gradient(135deg,#fff7ed,#ffedd5);
    border:1px solid #fdba74;
    border-radius:22px;
    padding:30px;
}

.offer-box h3{
    color:#ea580c;
    font-size:28px;
    margin-bottom:18px;
}

.offer-box p{
    margin-bottom:14px;
    line-height:1.8;
    color:#7c2d12;
    font-size:15px;
}

.note{
    margin-top:15px;
    font-size:13px;
    color:#78716c;
}

/* FOOTER */

.footer{
    margin-top:35px;
    text-align:center;
    color:#64748b;
    line-height:1.8;
    font-size:14px;
}


.print-btn{

    margin-top:15px;

    background:
    linear-gradient(to right,#0f172a,#1e293b);
}

.radio-group{

    display:flex;
    gap:40px;
    margin-top:10px;
}

.radio-group label{

    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
}

.radio-group input{

    width:auto;
    margin:0;
}

@media print{

    body{
        background:white;
    }

    .top-banner,
    .offer-box,
    .trust-section,
    button{
        display:none;
    }

    .content{
        box-shadow:none;
        margin:0;
    }

    .result{
        border:none;
        box-shadow:none;
    }
}


/* MOBILE */

@media(max-width:768px){

    body{
        padding:20px 10px;
    }

    .top-banner{
        padding:28px;
    }

    .brand-row{
        flex-direction:column;
        align-items:flex-start;
    }

    .brand-row h1{
        font-size:32px;
    }

    .banner-text h2{
        font-size:30px;
    }

    .content{
        padding:22px;
    }

    .radio-group{
        flex-direction:column;
        gap:14px;
    }

    .trust-grid{
        grid-template-columns:1fr;
    }

    .final{
        font-size:22px;
    }

    .radio-group{

        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .radio-group label{

        display:flex;
        align-items:center;
        gap:12px;

        font-size:18px;
        font-weight:500;
    }
}
