/* =========================================================
GLOBAL
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
    background:#f5f7fb;
    font-family:Arial,sans-serif;
}

img{
    max-width:100%;
    display:block;
}

.insurance-page{

    padding:18px 0 40px;
    background:#f5f7fb;

}

.container-insurance{

    width:min(1220px,94%);
    margin:auto;

}

/* =========================================================
HERO SECTION
========================================================= */

.insurance-hero{

    position:relative;
    overflow:hidden;

    border-radius:26px;

    padding:38px 34px;

    background:
    linear-gradient(
    135deg,
    #ff6a00 0%,
    #ff2d55 48%,
    #7b2cff 100%
    );

    color:#fff;

    margin-bottom:22px;

    box-shadow:
    0 12px 28px rgba(0,0,0,.10);

}

.insurance-hero::before{

    content:"";

    position:absolute;
    inset:0;

    background:
    radial-gradient(
    circle at top right,
    rgba(255,255,255,.15),
    transparent 30%
    );

}

.insurance-hero-grid{

    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:1.1fr .8fr;
    gap:28px;
    align-items:center;

}

.insurance-hero-content h1{

    font-size:54px;
    line-height:1.04;
    font-weight:900;

    margin-bottom:18px;

    color:#fff;

}

.insurance-hero-content p{

    font-size:16px;
    line-height:1.8;

    max-width:620px;

    color:rgba(255,255,255,.94);

    margin-bottom:22px;

}

.hero-badges{

    display:flex;
    flex-wrap:wrap;
    gap:10px;

}

.hero-badges span{

    padding:11px 18px;

    border-radius:50px;

    background:
    rgba(255,255,255,.14);

    border:
    1px solid rgba(255,255,255,.16);

    backdrop-filter:blur(8px);

    font-size:14px;
    font-weight:700;

    color:#fff;

}

/* =========================================================
HERO IMAGE
========================================================= */

.hero-image-wrap{

    display:flex;
    justify-content:center;
    align-items:center;

}

.hero-image-box{

    width:100%;
    max-width:430px;

    border-radius:22px;

    padding:10px;

    background:
    rgba(255,255,255,.14);

    border:
    1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(8px);

    box-shadow:
    0 12px 30px rgba(0,0,0,.14);

}

.hero-image-box img{

    width:100%;
    height:100%;

    border-radius:16px;

    object-fit:cover;

}

/* =========================================================
MAIN GRID
========================================================= */

.insurance-grid{

    display:grid;
    grid-template-columns:minmax(0,1fr) 360px;
    gap:18px;
    align-items:start;

}

.insurance-card{

    background:#fff;

    border-radius:24px;

    padding:24px;

    box-shadow:
    0 8px 24px rgba(15,23,42,.05);

}

.section-title{

    font-size:26px;
    font-weight:800;

    color:#111827;

    margin-bottom:8px;

}

.section-subtitle{

    color:#6b7280;
    line-height:1.6;

    margin-bottom:22px;

    font-size:14px;

}

/* =========================================================
FORM
========================================================= */

.form-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;

}

.form-group{

    display:flex;
    flex-direction:column;

}

.form-group.full{

    grid-column:1/-1;

}

.form-label{

    font-size:13px;
    font-weight:700;

    margin-bottom:7px;

    color:#374151;

}

.form-control{

    width:100%;
    height:52px;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:0 14px;

    font-size:14px;

    background:#fff;

    transition:.25s;

}

textarea.form-control{

    height:110px;

    padding:14px;

    resize:none;

}

.form-control:focus{

    outline:none;

    border-color:#ff4d6d;

    box-shadow:
    0 0 0 4px rgba(255,77,109,.10);

}

/* =========================================================
OTP
========================================================= */

.otp-box{

    margin-top:18px;

}

/* =========================================================
PLAN CARD
========================================================= */

.plan-grid{

    display:grid;
    gap:16px;

    margin-top:18px;

}

.plan-card{

    border:1px solid #ececec;

    border-radius:22px;

    padding:22px;

    cursor:pointer;

    transition:.3s;

    background:#fff;

}

.plan-card:hover{

    transform:translateY(-2px);

    border-color:#ff5f2e;

}

.plan-card.active{

    border:2px solid #ff5f2e;

    background:#fff8f4;

}

.plan-head{

    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:14px;

}

.plan-head h3{

    font-size:18px;
    font-weight:800;

    margin-bottom:4px;

    color:#111827;

}

.plan-head small{

    font-size:13px;
    color:#374151;

}

.plan-price{

    font-size:42px;
    font-weight:900;

    color:#ff5f2e;

    line-height:1;

}

.plan-features{

    display:flex;
    flex-wrap:wrap;
    gap:10px;

    margin-top:18px;

}

.plan-features span{

    background:#f3f4f6;

    padding:8px 13px;

    border-radius:50px;

    font-size:12px;
    font-weight:700;

    color:#111827;

}

/* =========================================================
SUMMARY
========================================================= */

.secure-box{

    background:#f9fafb;

    border-radius:18px;

    padding:18px;

    margin-top:20px;

}

.secure-item{

    margin-bottom:12px;

    font-size:13px;

    color:#374151;

}

.secure-item:last-child{

    margin-bottom:0;

}

/* =========================================================
BUTTONS
========================================================= */

.pay-btn{

    width:100%;

    height:54px;

    border:none;

    border-radius:16px;

    background:
    linear-gradient(
    135deg,
    #ff6a00,
    #ff2d55
    );

    color:#fff;

    font-size:15px;
    font-weight:800;

    cursor:pointer;

    margin-top:16px;

    transition:.3s;

}

.pay-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 10px 24px rgba(255,95,46,.20);

}

.pay-btn.secondary{

    background:#111827;

}

/* =========================================================
TOAST
========================================================= */

#toast{

    position:fixed;

    right:18px;
    bottom:18px;

    background:#111827;

    color:#fff;

    border-radius:14px;

    padding:14px 16px;

    display:flex;
    gap:12px;

    align-items:flex-start;

    z-index:99999;

    min-width:280px;

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

}

#toast.show{

    opacity:1;
    visibility:visible;

    transform:translateY(0);

}

#toastIcon{

    font-size:20px;

}

#toastTitle{

    font-weight:700;

    margin-bottom:3px;

}

#toastMessage{

    font-size:13px;

    line-height:1.5;

}

/* =========================================================
POPUP
========================================================= */

#leadSuccessPopup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    display:flex;
    align-items:center;
    justify-content:center;

    padding:20px;

    z-index:999999;

    opacity:0;
    visibility:hidden;

    transition:.3s;

}

#leadSuccessPopup.show{

    opacity:1;
    visibility:visible;

}

.popup-card{

    width:100%;
    max-width:450px;

    background:#fff;

    border-radius:24px;

    padding:34px 24px;

    text-align:center;

}

.popup-card h3{

    font-size:28px;

    margin-bottom:14px;

}

.popup-card p{

    color:#6b7280;

    line-height:1.7;

    font-size:14px;

}

.popup-actions{

    display:flex;
    gap:12px;

    margin-top:22px;

}

.btn{

    flex:1;

    height:48px;

    border:none;

    border-radius:14px;

    font-weight:700;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:14px;

}

.btn-primary{

    background:#25D366;
    color:#fff;

}

.btn-light{

    background:#f3f4f6;
    color:#111827;

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:991px){

    .insurance-grid,
    .insurance-hero-grid{

        grid-template-columns:1fr;

    }

    .insurance-hero{

        padding:28px 22px;

    }

    .insurance-hero-content{

        text-align:center;

    }

    .insurance-hero-content p{

        margin-inline:auto;

    }

    .hero-badges{

        justify-content:center;

    }

    .hero-image-box{

        max-width:100%;

    }

}

@media(max-width:768px){

    .insurance-page{

        padding:12px 0 35px;

    }

    .insurance-hero{

        border-radius:22px;

        padding:22px 16px;

    }

    .insurance-hero-content h1{

        font-size:38px;
        line-height:1.1;

    }

    .insurance-hero-content p{

        font-size:14px;
        line-height:1.7;

    }

    .hero-badges{

        gap:8px;

    }

    .hero-badges span{

        width:100%;

        font-size:13px;

        padding:11px 14px;

    }

    .hero-image-box{

        padding:8px;

        border-radius:18px;

    }

    .hero-image-box img{

        border-radius:14px;

    }

    .insurance-card{

        padding:20px 16px;

        border-radius:20px;

    }

    .section-title{

        font-size:23px;

    }

    .form-grid{

        grid-template-columns:1fr;

    }

    .plan-head{

        flex-direction:column;
        align-items:flex-start;

    }

    .plan-price{

        font-size:36px;

    }

    .popup-actions{

        flex-direction:column;

    }

    #toast{

        left:14px;
        right:14px;

        min-width:auto;

    }

}