/* Start custom CSS for html, class: .elementor-element-4934937 *//* =========================
   GLOBAL RESET + SAFETY
========================= */

*{ 	
    box-sizing:border-box;
}

html, body{
    margin:0;
    padding:0;
    overflow-x:hidden;
    font-family:'Inter', sans-serif;
    background: radial-gradient(circle at top, #eef2f7, #f7f8fb);
    color:#0f172a;
}

/* =========================
   PAGE WRAPPER
========================= */

.page{
    max-width:920px;
    margin:auto;
    padding:24px 18px 120px;
}

/* =========================
   HERO SECTION
========================= */

.hero{
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius:28px;
    padding:48px 30px;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,0.08);
    border:1px solid rgba(226,232,240,0.8);
}

.top-badge{
    display:inline-block;
    background: linear-gradient(90deg,#ecfeff,#e0f2fe);
    color:#0f766e;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.hero h1{
    font-size:46px;
    line-height:1.05;
    font-weight:900;
    letter-spacing:-0.5px;
    margin-bottom:14px;
}

.hero-sub{
    max-width:650px;
    margin:auto;
    color:#64748b;
    line-height:1.7;
    font-size:16px;
}

/* =========================
   PHONE CTA (HERO FOCUS)
========================= */

.phone-box{
    display:block;
    margin:28px auto;
    padding:22px;
    max-width:420px;
    border-radius:18px;
    text-decoration:none;
    background: linear-gradient(135deg, #111827, #1f2937);
    color:white;
    box-shadow:0 15px 40px rgba(0,0,0,0.25);
    transition:0.25s ease;
}

.phone-box:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 55px rgba(0,0,0,0.35);
}

.phone-box span{
    display:block;
    font-size:13px;
    opacity:0.8;
    margin-bottom:6px;
}

.phone-box strong{
    font-size:30px;
    font-weight:900;
}

/* =========================
   CTA BUTTONS
========================= */

.cta-group{
    display:flex;
    gap:14px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top:10px;
}

.cta{
    flex:1;
    min-width:240px;
    padding:16px 18px;
    border-radius:14px;
    text-decoration:none;
    font-weight:800;
    text-align:center;
    transition:0.25s ease;
}

.cta:hover{
    transform:translateY(-2px);
}

.primary{
    background:#111827;
    color:white;
}

.secondary{
    background:#f97316;
    color:white;
}

/* =========================
   TRUST ROW
========================= */

.trust-row{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:20px;
    font-size:14px;
    color:#64748b;
}

/* =========================
   IMAGE (FIXED: WIDE + ROUNDED 20px)
========================= */

.image-wrap{
    display:flex;
    justify-content:center;
    margin-top:30px;
    padding:0 6px;
}

.hero-image{
    width:100%;
    max-width:520px;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    border:6px solid #ffffff;
    box-shadow:0 18px 45px rgba(0,0,0,0.18);
}

/* =========================
   STATS
========================= */

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-top:25px;
}

.stat{
    background:white;
    padding:22px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    border:1px solid #eef2f7;
}

.stat strong{
    font-size:26px;
    font-weight:900;
}

/* =========================
   BENEFITS
========================= */

.benefits-card{
    margin-top:25px;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.benefit{
    background:#f8fafc;
    padding:14px;
    border-radius:12px;
    font-weight:600;
}

/* =========================
   FINAL CTA
========================= */

.final-cta{
    margin-top:25px;
    background: linear-gradient(135deg,#0f172a,#111827);
    color:white;
    text-align:center;
    padding:50px 25px;
    border-radius:22px;
}

.final-button{
    display:inline-block;
    margin-top:16px;
    background: linear-gradient(135deg,#f97316,#fb923c);
    color:white;
    text-decoration:none;
    padding:18px 40px;
    border-radius:14px;
    font-weight:900;
}

/* =========================
   STICKY BAR (MOBILE SAFE)
========================= */

.sticky-bar{
    position:fixed;
    bottom:14px;
    left:14px;
    right:14px;
    display:flex;
    gap:12px;
    padding:12px;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(10px);
    border-radius:18px;
    box-shadow:0 10px 40px rgba(0,0,0,0.15);
    z-index:999;
}

.sticky-bar a{
    flex:1;
    text-align:center;
    padding:14px;
    border-radius:14px;
    font-weight:900;
    text-decoration:none;
}

.sticky-primary{
    background:#111827;
    color:white;
}

.sticky-secondary{
    background:#f97316;
    color:white;
}

/* =========================
   MOBILE FIXES (IMPORTANT)
========================= */

@media(max-width:768px){

.page{
    padding:16px 12px 110px;
}

.hero{
    padding:32px 18px;
    border-radius:22px;
}

.hero h1{
    font-size:30px;
    line-height:1.15;
}

.phone-box{
    max-width:100%;
    padding:18px;
}

.cta{
    min-width:100%;
}

.stats{
    grid-template-columns:1fr;
}

.hero-image{
    height:200px;
}

}/* End custom CSS */