/* =========================================================
   SMART SUPPORT PRO
   WHITE + BLUE PREMIUM UI
   Replace your assets/style.css with this
   ========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
}

body{
    margin:0;
    font-family:Inter,Arial,sans-serif;
    background:#ffffff;
    color:#14213d;
    overflow-x:hidden;
    line-height:1.6;
}

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

button,
input,
select,
textarea{
    font-family:inherit;
}

/* ================= ROOT ================= */

:root{
    --blue:#1769ff;
    --blue2:#0b4dcc;
    --blue3:#4f8cff;
    --light-blue:#eaf2ff;
    --sky:#dceaff;
    --white:#ffffff;
    --off-white:#f7faff;
    --text:#101828;
    --muted:#667085;
    --border:#dbe5f2;
    --dark:#0b1630;
    --shadow:0 20px 60px rgba(23,105,255,.10);
}

/* ================= HEADER ================= */

.site-header{
    position:absolute;
    top:16px;
    left:0;
    right:0;
    z-index:1000;
}

.nav-wrap{
    min-height:72px;
    width:min(1180px,calc(100% - 32px));
    margin:auto;
    padding:10px 15px 10px 18px;

    display:flex;
    align-items:center;
    gap:28px;

    background:rgba(255,255,255,.94);
    border:1px solid #dce7f5;
    border-radius:22px;

    box-shadow:
        0 15px 50px rgba(20,60,120,.10),
        inset 0 1px 0 #fff;

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
}

.brand{
    display:flex;
    align-items:center;
    gap:11px;
    flex-shrink:0;
}

.brand-mark{
    width:45px;
    height:45px;
    display:grid;
    place-items:center;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #0b4dcc,
        #1769ff 55%,
        #55a7ff
    );

    color:#fff;

    box-shadow:
        0 10px 25px rgba(23,105,255,.28),
        inset 0 1px 0 rgba(255,255,255,.4);
}

.brand-mark span{
    font-weight:900;
    font-size:14px;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.brand-text strong{
    color:#10213f;
    font-size:16px;
    font-weight:800;
}

.brand-text small{
    margin-top:5px;
    color:#1769ff;
    font-size:9px;
    letter-spacing:3px;
    font-weight:900;
}

.desktop-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
    margin-left:auto;
}

.desktop-nav a{
    color:#475467;
    font-size:13px;
    font-weight:700;
    transition:.25s ease;
}

.desktop-nav a:hover{
    color:#1769ff;
}

.nav-cta{
    min-height:43px;
    padding:0 17px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    border:1px solid #bcd3f7;
    border-radius:13px;

    background:linear-gradient(
        135deg,
        #eef5ff,
        #ffffff
    );

    color:#1255c4;
    font-size:13px;
    font-weight:800;

    box-shadow:0 8px 22px rgba(23,105,255,.08);

    transition:.25s ease;
}

.nav-cta:hover{
    transform:translateY(-2px);
    background:#1769ff;
    color:#fff;
}

.menu-btn{
    display:none;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    min-height:760px;

    padding:150px 0 90px;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(23,105,255,.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(79,140,255,.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8fbff 55%,
            #edf5ff 100%
        );
}

.hero-grid{
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(
            rgba(23,105,255,.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(23,105,255,.035) 1px,
            transparent 1px
        );

    background-size:50px 50px;
    pointer-events:none;
}

.hero:before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-180px;
    right:-100px;
    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(23,105,255,.16),
            transparent 68%
        );
}

.hero:after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    left:-180px;
    bottom:-220px;
    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(79,140,255,.10),
            transparent 68%
        );
}

.hero-inner{
    position:relative;
    z-index:2;

    width:min(1180px,calc(100% - 32px));
    margin:auto;

    display:grid;
    grid-template-columns:1fr .9fr;
    align-items:center;
    gap:70px;
}

.hero-copy{
    max-width:650px;
}

.eyebrow{
    display:flex;
    align-items:center;
    gap:9px;

    margin-bottom:20px;

    color:#1769ff;

    font-size:11px;
    font-weight:900;
    letter-spacing:2px;
}

.pulse{
    width:8px;
    height:8px;
    border-radius:50%;

    background:#1769ff;

    box-shadow:
        0 0 0 5px rgba(23,105,255,.10),
        0 0 18px rgba(23,105,255,.45);
}

.hero h1{
    margin:0;

    font-family:Manrope,Inter,sans-serif;

    font-size:clamp(48px,6vw,78px);
    line-height:.98;
    letter-spacing:-3px;

    color:#101828;
    font-weight:800;
}

.hero h1 em{
    font-style:normal;

    background:
        linear-gradient(
            90deg,
            #0b4dcc,
            #1769ff,
            #4f9cff
        );

    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.hero-copy>p{
    max-width:620px;

    margin:25px 0 30px;

    color:#667085;

    font-size:15px;
    line-height:1.8;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.btn{
    min-height:50px;
    padding:0 21px;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    border-radius:14px;

    font-size:13px;
    font-weight:800;

    transition:.25s ease;
}

.btn-primary{
    color:#fff;

    background:
        linear-gradient(
            135deg,
            #0b4dcc,
            #1769ff 55%,
            #4f9cff
        );

    border:1px solid rgba(255,255,255,.25);

    box-shadow:
        0 15px 35px rgba(23,105,255,.25),
        inset 0 1px 0 rgba(255,255,255,.3);
}

.btn-primary:hover{
    transform:translateY(-3px);

    box-shadow:
        0 20px 45px rgba(23,105,255,.35);
}

.btn-ghost{
    color:#174b9f;

    border:1px solid #cdddf4;

    background:#fff;

    box-shadow:0 8px 25px rgba(23,105,255,.06);
}

.btn-ghost:hover{
    border-color:#1769ff;
    color:#1769ff;
}

.trust-row{
    display:flex;
    align-items:center;
    gap:22px;
    margin-top:35px;
}

.trust-row>div{
    display:flex;
    flex-direction:column;
}

.trust-row strong{
    color:#101828;
    font-size:18px;
    font-weight:900;
}

.trust-row span{
    margin-top:3px;
    color:#667085;
    font-size:10px;
}

.trust-row i{
    width:1px;
    height:32px;
    background:#d8e3f2;
}

/* ================= HERO CARD ================= */

.hero-visual{
    min-height:470px;

    position:relative;

    display:grid;
    place-items:center;
}

.orbit{
    position:absolute;

    width:430px;
    height:430px;

    border:1px solid rgba(23,105,255,.14);

    border-radius:50%;
}

.orbit-1{
    transform:rotate(20deg) scaleY(.55);
}

.orbit-2{
    width:350px;
    height:350px;

    border-color:rgba(79,156,255,.16);

    transform:rotate(-30deg) scaleY(.55);
}

.support-card{
    position:relative;
    z-index:4;

    width:min(430px,100%);

    padding:25px;

    border:1px solid #d5e2f3;

    border-radius:27px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.98),
            rgba(245,250,255,.98)
        );

    box-shadow:
        0 30px 90px rgba(25,76,150,.14),
        0 0 60px rgba(23,105,255,.08);

    overflow:hidden;
}

.card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:22px;
}

.status{
    color:#1769ff;

    display:flex;
    align-items:center;
    gap:7px;

    font-size:9px;
    font-weight:900;
    letter-spacing:1.5px;
}

.status b{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#20b26b;
}

.dots{
    color:#98a2b3;
    letter-spacing:3px;
}

.agent{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:22px;
}

.avatar{
    width:44px;
    height:44px;

    display:grid;
    place-items:center;

    border-radius:14px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #0b4dcc,
            #1769ff,
            #4f9cff
        );

    font-weight:900;
}

.agent strong{
    display:block;
    color:#182230;
    font-size:13px;
}

.agent span{
    display:block;
    color:#98a2b3;
    font-size:10px;
}

.message{
    max-width:88%;

    padding:12px 14px;

    border-radius:14px;

    font-size:11px;
    line-height:1.55;

    margin-bottom:11px;
}

.user-message{
    margin-left:auto;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #1769ff,
            #4f8cff
        );

    border-bottom-right-radius:4px;
}

.reply{
    color:#475467;
    background:#eef5ff;
    border-bottom-left-radius:4px;
}

.ticket-line{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:16px 0 10px;

    border-top:1px solid #e4ebf4;

    color:#98a2b3;
    font-size:10px;
}

.ticket-line strong{
    color:#1769ff;
}

.card-progress{
    height:5px;

    margin:5px 0 9px;

    border-radius:10px;

    overflow:hidden;

    background:#e5edf8;
}

.card-progress span{
    display:block;
    width:72%;
    height:100%;

    border-radius:10px;

    background:
        linear-gradient(
            90deg,
            #0b4dcc,
            #1769ff,
            #4f9cff
        );
}

.support-card>small{
    color:#98a2b3;
    font-size:9px;
}

.float-badge{
    position:absolute;
    z-index:6;

    padding:11px 14px;

    border:1px solid #d5e2f3;

    border-radius:12px;

    background:#fff;

    box-shadow:0 12px 30px rgba(23,105,255,.10);

    font-size:10px;
    font-weight:800;
}

.badge-one{
    top:58px;
    left:0;
    color:#1769ff;
}

.badge-two{
    right:-5px;
    bottom:55px;
    color:#1769ff;
}

/* ================= TICKER ================= */

.ticker{
    background:#f7faff;
    border-top:1px solid #e1eaf5;
    border-bottom:1px solid #e1eaf5;
    overflow:hidden;
}

.ticker-inner{
    min-height:62px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;

    color:#667085;

    font-size:9px;
    font-weight:900;
    letter-spacing:1.7px;
    white-space:nowrap;
}

.ticker i{
    width:5px;
    height:5px;

    flex-shrink:0;

    border-radius:50%;

    background:#1769ff;

    box-shadow:0 0 10px rgba(23,105,255,.45);
}

/* ================= SECTIONS ================= */

.section{
    padding:105px 0;
}

.services{
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(23,105,255,.045),
            transparent 25%
        ),
        #fff;
}

.section-heading{
    display:grid;
    grid-template-columns:1fr .75fr;

    gap:70px;

    align-items:end;

    margin-bottom:50px;
}

.section-heading.center{
    display:block;

    max-width:700px;

    margin:0 auto 55px;

    text-align:center;
}

.section-tag{
    display:inline-block;

    margin-bottom:13px;

    color:#1769ff;

    font-size:10px;
    font-weight:900;
    letter-spacing:2px;
}

.section-heading h2,
.faq-grid h2,
.safety-copy h2,
.contact-copy h2{
    font-family:Manrope,Inter,sans-serif;

    color:#101828;

    font-size:clamp(34px,4vw,54px);
    line-height:1.05;
    letter-spacing:-2px;
    font-weight:800;
}

.section-heading em,
.faq-grid em,
.safety-copy em,
.contact-copy em{
    font-style:normal;

    background:
        linear-gradient(
            90deg,
            #0b4dcc,
            #1769ff,
            #4f9cff
        );

    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.section-heading>p{
    max-width:510px;

    color:#667085;

    font-size:14px;
    line-height:1.8;
}

/* ================= SERVICE CARDS ================= */

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

.service-card{
    min-height:270px;

    padding:27px;

    position:relative;
    overflow:hidden;

    border:1px solid #e0e8f2;
    border-radius:22px;

    background:#fff;

    box-shadow:
        0 10px 35px rgba(16,24,40,.045);

    transition:.3s ease;
}

.service-card:hover{
    transform:translateY(-6px);

    border-color:#bcd3f7;

    box-shadow:
        0 25px 55px rgba(23,105,255,.12);
}

.service-card.featured{
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(23,105,255,.12),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #f4f8ff,
            #fff
        );

    border-color:#bcd3f7;
}

.icon{
    width:48px;
    height:48px;

    display:grid;
    place-items:center;

    margin-bottom:29px;

    border-radius:14px;

    background:#edf4ff;

    color:#1769ff;

    font-size:21px;
    font-weight:800;
}

.featured .icon{
    color:#fff;

    background:
        linear-gradient(
            135deg,
            #0b4dcc,
            #1769ff
        );
}

.number{
    position:absolute;

    top:27px;
    right:27px;

    color:#98a2b3;

    font-size:10px;
    font-weight:900;
}

.service-card h3{
    margin-bottom:9px;

    color:#101828;

    font-size:18px;
    line-height:1.25;
}

.service-card p{
    max-width:280px;

    color:#667085;

    font-size:12px;
    line-height:1.7;
}

.service-card a{
    display:inline-flex;
    gap:8px;

    margin-top:22px;

    color:#1769ff;

    font-size:11px;
    font-weight:900;
}

/* ================= PROCESS ================= */

.process{
    background:#fbfdff;
}

.steps{
    display:grid;

    grid-template-columns:
        1fr 45px 1fr 45px 1fr 45px 1fr;

    align-items:center;

    gap:12px;
}

.step{
    text-align:center;
}

.step>span{
    display:block;

    margin-bottom:13px;

    color:#8da4c4;

    font-size:9px;
    font-weight:900;
    letter-spacing:1.5px;
}

.step-icon{
    width:58px;
    height:58px;

    margin:0 auto 17px;

    display:grid;
    place-items:center;

    border:1px solid #dbe7f5;

    border-radius:17px;

    background:#fff;

    color:#1769ff;

    box-shadow:0 8px 25px rgba(23,105,255,.06);

    font-size:21px;
}

.step h3{
    margin-bottom:7px;

    color:#101828;

    font-size:15px;
}

.step p{
    max-width:180px;

    margin:auto;

    color:#667085;

    font-size:11px;
    line-height:1.65;
}

.step-line{
    height:1px;
    background:#dce6f2;
}

/* ================= SAFETY ================= */

.dark-section{
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(23,105,255,.18),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0b1630,
            #0e2145
        );
}

.safety-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:90px;
}

.safety-copy h2{
    color:#fff;
}

.safety-copy p{
    max-width:510px;

    margin:22px 0 25px;

    color:#b7c5d9;

    font-size:14px;
    line-height:1.85;
}

.light{
    color:#6fa7ff;
}

.text-link{
    display:inline-flex;
    gap:10px;

    color:#69a4ff;

    font-size:12px;
    font-weight:800;
}

.safety-list{
    padding:9px 24px;

    border:1px solid rgba(255,255,255,.12);

    border-radius:24px;

    background:rgba(255,255,255,.055);

    backdrop-filter:blur(12px);
}

.safety-list>div{
    display:flex;

    gap:16px;

    padding:22px 0;
}

.safety-list>div+div{
    border-top:1px solid rgba(255,255,255,.08);
}

.safe-icon{
    width:35px;
    height:35px;

    flex-shrink:0;

    display:grid;
    place-items:center;

    border-radius:11px;

    color:#fff;

    background:rgba(23,105,255,.25);
}

.safety-list strong{
    color:#fff;
    font-size:13px;
}

.safety-list p{
    margin-top:4px;

    color:#9fb0c8;

    font-size:10px;
}

/* ================= STATS ================= */

.stats{
    padding:0;

    background:
        linear-gradient(
            90deg,
            #0b1630,
            #12356d,
            #0b1630
        );
}

.stats-grid{
    min-height:160px;

    display:grid;

    grid-template-columns:repeat(4,1fr);
}

.stats-grid>div{
    display:flex;

    align-items:center;
    justify-content:center;

    flex-direction:column;

    border-right:1px solid rgba(255,255,255,.10);
}

.stats-grid>div:last-child{
    border-right:0;
}

.stats-grid strong{
    color:#fff;

    font-size:34px;
    line-height:1;
    font-weight:900;
}

.stats-grid span{
    margin-top:9px;

    color:#a9bad2;

    font-size:10px;
}

/* ================= FAQ ================= */

.faq-section{
    background:#f8fbff;
}

.faq-grid{
    display:grid;

    grid-template-columns:.8fr 1.2fr;

    gap:90px;

    align-items:start;
}

.faq-grid>div:first-child>p{
    max-width:410px;

    margin:22px 0 25px;

    color:#667085;

    font-size:13px;
    line-height:1.8;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.faq-list details{
    padding:0 20px;

    border:1px solid #dbe5f2;

    border-radius:16px;

    background:#fff;

    box-shadow:0 8px 25px rgba(16,24,40,.035);
}

.faq-list summary{
    min-height:64px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    cursor:pointer;

    list-style:none;

    color:#101828;

    font-size:13px;
    font-weight:800;
}

.faq-list summary::-webkit-details-marker{
    display:none;
}

.faq-list summary b{
    color:#1769ff;

    font-size:21px;

    transition:.25s;
}

.faq-list details[open] summary b{
    transform:rotate(45deg);
}

.faq-list details p{
    padding-bottom:19px;

    color:#667085;

    font-size:11px;
    line-height:1.8;
}

/* ================= CONTACT ================= */

.contact-section{
    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(23,105,255,.10),
            transparent 30%
        ),
        #0b1630;
}

.contact-box{
    display:grid;

    grid-template-columns:.9fr 1.1fr;

    gap:55px;

    padding:55px;

    border:1px solid rgba(111,164,255,.22);

    border-radius:30px;

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(23,105,255,.16),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #10234a,
            #09152c
        );

    box-shadow:
        0 35px 100px rgba(0,20,60,.30);
}

.contact-copy h2{
    color:#fff;
}

.contact-copy>p{
    max-width:460px;

    margin:21px 0 28px;

    color:#b7c5d9;

    font-size:13px;
    line-height:1.8;
}

.contact-points{
    display:flex;
    flex-direction:column;
    gap:17px;
}

.contact-points>div{
    display:grid;

    grid-template-columns:38px 1fr;

    column-gap:12px;
}

.contact-points>div>span{
    grid-row:span 2;

    width:38px;
    height:38px;

    display:grid;
    place-items:center;

    border-radius:11px;

    color:#fff;

    background:rgba(23,105,255,.22);
}

.contact-points strong{
    color:#fff;
    font-size:11px;
}

.contact-points small{
    color:#a9bad2;
    font-size:10px;
}

.support-form{
    padding:25px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

    border-radius:20px;

    background:rgba(255,255,255,.055);
}

.support-form label{
    display:flex;
    flex-direction:column;

    gap:7px;

    color:#d9e5f5;

    font-size:10px;
    font-weight:800;
}

.support-form label:nth-of-type(3),
.support-form label:nth-of-type(4),
.support-form .btn,
.support-form .form-note{
    grid-column:1/-1;
}

.support-form input,
.support-form select,
.support-form textarea{
    width:100%;

    padding:12px 13px;

    border:1px solid rgba(140,177,226,.22);

    border-radius:12px;

    outline:none;

    background:#fff;

    color:#101828;

    font-size:12px;

    transition:.2s;
}

.support-form input::placeholder,
.support-form textarea::placeholder{
    color:#98a2b3;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus{
    border-color:#1769ff;

    box-shadow:
        0 0 0 3px rgba(23,105,255,.12);
}

.support-form textarea{
    min-height:105px;
    resize:vertical;
}

.support-form .btn{
    width:100%;
    border:0;
}

.form-note{
    color:#98a9bf;

    text-align:center;

    font-size:9px;
}

/* ================= FOOTER ================= */

.footer{
    padding:35px 0 20px;

    background:#071126;
}

.footer-top{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:25px;

    padding-bottom:25px;

    border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-links{
    display:flex;
    flex-wrap:wrap;

    justify-content:center;

    gap:20px;
}

.footer-links a{
    color:#a9bad2;

    font-size:10px;
    font-weight:700;
}

.footer-links a:hover{
    color:#69a4ff;
}

.footer-call{
    color:#69a4ff;

    font-size:11px;
    font-weight:900;
}

.footer-bottom{
    display:flex;

    align-items:center;
    justify-content:space-between;

    gap:20px;

    padding-top:19px;

    color:#73869f;

    font-size:9px;
}

/* ================= WHATSAPP ================= */

.whatsapp{
    position:fixed;

    right:22px;
    bottom:22px;

    z-index:2000;

    width:55px;
    height:55px;

    display:grid;
    place-items:center;

    border-radius:50%;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #1769ff,
            #0b4dcc
        );

    box-shadow:
        0 14px 35px rgba(23,105,255,.30);

    font-size:25px;

    transition:.25s;
}

.whatsapp:hover{
    transform:translateY(-4px) scale(1.05);
}

/* ================= TOAST ================= */

.toast{
    position:fixed;

    left:50%;
    bottom:25px;

    z-index:3000;

    transform:translate(-50%,120px);

    opacity:0;

    padding:14px 19px;

    border-radius:13px;

    background:#0b1630;

    color:#fff;

    box-shadow:0 20px 50px rgba(0,0,0,.2);

    font-size:12px;

    transition:.35s ease;

    pointer-events:none;
}

.toast.show{
    transform:translate(-50%,0);
    opacity:1;
}

/* ================= SHINE ================= */

.nav-wrap:after{
    content:"";

    position:absolute;

    left:-30%;
    top:0;

    width:28%;
    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #1769ff,
            transparent
        );

    opacity:.6;

    animation:navShine 6s linear infinite;
}

.support-card:after{
    content:"";

    position:absolute;

    left:-40%;
    top:-20%;

    width:35%;
    height:150%;

    transform:rotate(20deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(23,105,255,.10),
            transparent
        );

    animation:cardShine 7s ease-in-out infinite;
}

@keyframes navShine{
    0%{left:-30%}
    55%,100%{left:120%}
}

@keyframes cardShine{
    0%,35%{left:-40%}
    70%,100%{left:125%}
}

/* ================= MOBILE ================= */

@media(max-width:1050px){

    .desktop-nav{
        gap:17px;
    }

    .hero-inner{
        gap:40px;
    }

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

@media(max-width:850px){

    .desktop-nav,
    .nav-cta{
        display:none;
    }

    .menu-btn{
        display:flex;

        margin-left:auto;

        width:44px;
        height:44px;

        border:1px solid #d5e2f3;

        border-radius:13px;

        background:#fff;

        align-items:center;
        justify-content:center;

        flex-direction:column;

        gap:5px;
    }

    .menu-btn span{
        width:19px;
        height:2px;

        background:#1769ff;

        border-radius:5px;
    }

    .mobile-menu.open{
        display:block;
    }

    .mobile-menu{
        width:min(1180px,calc(100% - 32px));
        margin:8px auto 0;

        padding:10px;

        border:1px solid #dbe5f2;

        border-radius:18px;

        background:#fff;

        box-shadow:0 20px 50px rgba(16,24,40,.10);
    }

    .mobile-menu a{
        display:block;

        padding:12px 14px;

        border-radius:10px;

        color:#344054;

        font-weight:700;
        font-size:14px;
    }

    .mobile-menu a:hover{
        color:#1769ff;
        background:#edf4ff;
    }

    .hero{
        padding:135px 0 75px;
    }

    .hero-inner{
        grid-template-columns:1fr;
        gap:55px;
    }

    .hero-copy{
        text-align:center;
        margin:auto;
    }

    .eyebrow{
        justify-content:center;
    }

    .hero-copy>p{
        margin-left:auto;
        margin-right:auto;
    }

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

    .trust-row{
        justify-content:center;
    }

    .section-heading{
        grid-template-columns:1fr;
        gap:16px;
    }

    .safety-grid,
    .faq-grid,
    .contact-box{
        grid-template-columns:1fr;
        gap:45px;
    }

    .steps{
        grid-template-columns:1fr 1fr;
        gap:35px 25px;
    }

    .step-line{
        display:none;
    }

    .contact-box{
        padding:35px 25px;
    }
}

@media(max-width:600px){

    .nav-wrap{
        min-height:65px;
    }

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

    .hero-copy>p{
        font-size:13px;
    }

    .trust-row{
        gap:11px;
    }

    .hero-visual{
        min-height:350px;
    }

    .support-card{
        padding:19px;
    }

    .orbit{
        width:320px;
        height:320px;
    }

    .orbit-2{
        width:260px;
        height:260px;
    }

    .badge-one{
        left:-2px;
        top:25px;
    }

    .badge-two{
        right:-2px;
        bottom:25px;
    }

    .section{
        padding:75px 0;
    }

    .section-heading h2,
    .faq-grid h2,
    .safety-copy h2,
    .contact-copy h2{
        font-size:36px;
        letter-spacing:-1.5px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .steps{
        grid-template-columns:1fr;
    }

    .step p{
        max-width:270px;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }

    .stats-grid>div{
        min-height:120px;

        border-bottom:1px solid rgba(255,255,255,.10);
    }

    .stats-grid>div:nth-child(2){
        border-right:0;
    }

    .stats-grid>div:nth-child(3),
    .stats-grid>div:nth-child(4){
        border-bottom:0;
    }

    .support-form{
        grid-template-columns:1fr;
        padding:18px;
    }

    .support-form label:nth-of-type(3),
    .support-form label:nth-of-type(4),
    .support-form .btn,
    .support-form .form-note{
        grid-column:auto;
    }

    .footer-top,
    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .whatsapp{
        right:16px;
        bottom:16px;

        width:52px;
        height:52px;
    }
}

@media(max-width:390px){

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

    .trust-row{
        gap:8px;
    }

    .trust-row strong{
        font-size:16px;
    }

    .float-badge{
        font-size:8px;
        padding:9px 10px;
    }
}


/* ================= LOCKED BLUE HEADER ================= */

.site-header{
    position:fixed !important;
    top:0 !important;
    left:0;
    right:0;
    width:100%;
    z-index:99999;
    padding:12px 0;
}

/* Top Header Blue */
.nav-wrap{
    background:#1769ff !important;
    border:1px solid #0b4dcc !important;
    box-shadow:0 8px 30px rgba(11,77,204,.25) !important;
}

/* Header text white */
.brand-text strong{
    color:#ffffff !important;
}

.brand-text small{
    color:#ffffff !important;
}

.desktop-nav a{
    color:#ffffff !important;
}

.desktop-nav a:hover{
    color:#dceaff !important;
}

/* Get Support button */
.nav-cta{
    background:#ffffff !important;
    color:#0b4dcc !important;
    border-color:#ffffff !important;
}

.nav-cta:hover{
    background:#eaf2ff !important;
    color:#0b4dcc !important;
}

/* Logo */
.brand-mark{
    background:#ffffff !important;
    color:#1769ff !important;
    box-shadow:0 5px 18px rgba(0,0,0,.15) !important;
}

.brand-mark span{
    color:#1769ff !important;
}

/* Mobile menu button */
.menu-btn{
    background:#ffffff !important;
    border-color:#ffffff !important;
}

.menu-btn span{
    background:#1769ff !important;
}

/* Mobile menu */
.mobile-menu{
    background:#1769ff !important;
    border-color:#0b4dcc !important;
}

.mobile-menu a{
    color:#ffffff !important;
}

.mobile-menu a:hover{
    background:rgba(255,255,255,.12) !important;
    color:#ffffff !important;
}

/* Header shine */
.nav-wrap:after{
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.8),
        transparent
    ) !important;
}

/* Header ke neeche content hide na ho */
body{
    padding-top:0;
}

/* Mobile header */
@media(max-width:850px){
    .site-header{
        padding:8px 0;
    }

    .nav-wrap{
        width:calc(100% - 20px);
    }
}


.brand-logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.brand-logo img{
    width:190px;
    height:auto;
    display:block;
    object-fit:contain;
}

/* =========================================================
   LOGO IMAGE - SMART SUPPORT PRO
   Put your logo at: assets/images/logo.png
   ========================================================= */

.brand-logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
    width:auto;
    min-width:0;
    text-decoration:none;
    line-height:0;
}

.brand-logo img{
    display:block;
    width:190px;
    height:48px;
    max-width:100%;
    object-fit:contain;
    object-position:left center;
    background:transparent;
    border:0;
}

.nav-wrap .brand-logo{
    max-width:205px;
}

.footer-logo img{
    width:190px;
    height:52px;
}

@media(max-width:850px){
    .brand-logo img{
        width:165px;
        height:43px;
    }
    .nav-wrap .brand-logo{
        max-width:175px;
    }
}

@media(max-width:390px){
    .brand-logo img{
        width:145px;
        height:40px;
    }
}

/* Fixed blue header */
.site-header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100%;
    z-index:99999 !important;
    padding:12px 0 !important;
    pointer-events:none;
}

.nav-wrap{
    position:relative;
    background:#1769ff !important;
    border:1px solid #0b4dcc !important;
    border-radius:26px !important;
    box-shadow:0 8px 30px rgba(11,77,204,.25) !important;
    pointer-events:auto;
}

.nav-wrap .brand-logo img{
    /* Logo remains visible on the blue header */
    filter:none;
}

.brand-text,
.brand-mark{
    display:none !important;
}

.desktop-nav a{
    color:#fff !important;
}

.desktop-nav a:hover{
    color:#dceaff !important;
}

.nav-cta{
    background:#fff !important;
    color:#0b4dcc !important;
    border-color:#fff !important;
}

.menu-btn{
    background:#fff !important;
    border-color:#fff !important;
}

.menu-btn span{
    background:#1769ff !important;
}

/* Give the page room below the fixed header */
.hero{
    padding-top:170px !important;
}

@media(max-width:850px){
    .hero{
        padding-top:140px !important;
    }
}


/* ================= LOGO BOX ================= */

.logo-box{
    width:190px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:5px 10px;

    background:#ffffff;

    border-radius:12px;

    overflow:hidden;

    flex-shrink:0;

    box-shadow:
        0 4px 12px rgba(0,0,0,.12),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.logo-box img{
    width:100%;
    height:100%;

    display:block;

    object-fit:contain;
    object-position:center;
}

/* Header alignment */
.brand{
    display:flex;
    align-items:center;
    gap:12px;
    flex-shrink:0;
}

/* Mobile */
@media(max-width:600px){

    .logo-box{
        width:150px;
        height:46px;
        padding:4px 8px;
        border-radius:11px;
    }

}


/* ================= FOOTER LOGO ================= */

.footer-logo-box{
    width:190px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:5px 10px;

    background:#ffffff;

    border-radius:12px;

    overflow:hidden;

    flex-shrink:0;

    box-shadow:
        0 4px 12px rgba(0,0,0,.12),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.footer-logo-box img{
    width:100%;
    height:100%;

    display:block;

    object-fit:contain;
    object-position:center;
}

/* Footer alignment */
.footer-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

/* Mobile */
@media(max-width:600px){

    .footer-logo-box{
        width:150px;
        height:46px;
        padding:4px 8px;
        border-radius:11px;
    }

    .footer-top{
        flex-direction:column;
        text-align:center;
    }
}




/* =========================================================
   SMART SUPPORT PRO
   FIXED / LOCKED EMERGENCY BUTTON
   ========================================================= */

.emergency-btn {
    position: fixed !important;

    /* WhatsApp button ke upar fixed position */
    right: 24px !important;
    bottom: 92px !important;

    width: 64px;
    height: 64px;

    border-radius: 50%;

    background: #dc2626;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 2px;

    text-decoration: none;

    border: 3px solid #ffffff;

    z-index: 999999 !important;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(220, 38, 38, 0.45),
        0 0 0 4px rgba(220, 38, 38, 0.12);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;

    animation: emergencyPulse 1.8s infinite;
}


/* Emergency icon */

.emergency-icon {
    display: block;

    font-family: Arial, sans-serif;

    font-size: 22px;
    font-weight: 800;

    line-height: 20px;
}


/* Emergency text */

.emergency-text {
    display: block;

    font-family: Inter, Arial, sans-serif;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.5px;

    line-height: 10px;

    white-space: nowrap;
}


/* Hover */

.emergency-btn:hover {
    background: #b91c1c;

    color: #ffffff;

    transform: scale(1.08);

    box-shadow:
        0 12px 32px rgba(220, 38, 38, 0.55),
        0 0 0 6px rgba(220, 38, 38, 0.15);
}


/* Click */

.emergency-btn:active {
    transform: scale(0.94);
}


/* Emergency pulse animation */

@keyframes emergencyPulse {

    0% {
        box-shadow:
            0 8px 25px rgba(220, 38, 38, 0.45),
            0 0 0 0 rgba(220, 38, 38, 0.35);
    }

    70% {
        box-shadow:
            0 8px 25px rgba(220, 38, 38, 0.45),
            0 0 0 13px rgba(220, 38, 38, 0);
    }

    100% {
        box-shadow:
            0 8px 25px rgba(220, 38, 38, 0.45),
            0 0 0 0 rgba(220, 38, 38, 0);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .emergency-btn {
        width: 58px;
        height: 58px;

        right: 16px !important;
        bottom: 82px !important;
    }

    .emergency-icon {
        font-size: 20px;
        line-height: 18px;
    }

    .emergency-text {
        font-size: 7px;
        line-height: 9px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .emergency-btn {
        width: 54px;
        height: 54px;

        right: 14px !important;
        bottom: 78px !important;
    }

    .emergency-icon {
        font-size: 18px;
    }

    .emergency-text {
        font-size: 6.5px;
    }

}



/* =========================================================
   EMERGENCY BUTTON
   FIXED + LOCKED ON DESKTOP AND MOBILE
   ========================================================= */

#emergencyButtonWrap {
    position: fixed !important;

    right: 18px !important;
    bottom: 92px !important;

    width: 68px !important;
    height: 68px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    z-index: 2147483647 !important;

    visibility: visible !important;
    opacity: 1 !important;

    pointer-events: auto !important;

    transform: translateZ(0);

    isolation: isolate;
}


#emergencyButton {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 68px !important;
    height: 68px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    flex-direction: column !important;

    gap: 2px !important;

    border-radius: 50% !important;

    background: #dc2626 !important;

    color: #ffffff !important;

    text-decoration: none !important;

    border: 3px solid #ffffff !important;

    z-index: 2147483647 !important;

    visibility: visible !important;
    opacity: 1 !important;

    pointer-events: auto !important;

    cursor: pointer !important;

    overflow: visible !important;

    box-shadow:
        0 8px 25px rgba(220, 38, 38, 0.45),
        0 0 0 4px rgba(220, 38, 38, 0.12) !important;

    animation: emergencyButtonPulse 1.8s infinite !important;

    -webkit-transform: translateZ(0);
    transform: translateZ(0);

    -webkit-tap-highlight-color: transparent;
}


#emergencyButton:hover {
    background: #b91c1c !important;

    color: #ffffff !important;

    text-decoration: none !important;

    transform: scale(1.08) translateZ(0) !important;
}


#emergencyButton:active {
    transform: scale(0.94) translateZ(0) !important;
}


.emergency-call-icon {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    font-family: Arial, sans-serif !important;

    font-size: 23px !important;

    font-weight: 800 !important;

    line-height: 22px !important;

    color: #ffffff !important;
}


.emergency-call-text {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    font-family: Inter, Arial, sans-serif !important;

    font-size: 8px !important;

    font-weight: 800 !important;

    line-height: 10px !important;

    letter-spacing: 0.4px !important;

    white-space: nowrap !important;

    color: #ffffff !important;
}


/* =========================================================
   PULSE
   ========================================================= */

@keyframes emergencyButtonPulse {

    0% {
        box-shadow:
            0 8px 25px rgba(220, 38, 38, 0.45),
            0 0 0 0 rgba(220, 38, 38, 0.40);
    }

    70% {
        box-shadow:
            0 8px 25px rgba(220, 38, 38, 0.45),
            0 0 0 13px rgba(220, 38, 38, 0);
    }

    100% {
        box-shadow:
            0 8px 25px rgba(220, 38, 38, 0.45),
            0 0 0 0 rgba(220, 38, 38, 0);
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 768px) {

    #emergencyButtonWrap {
        position: fixed !important;

        right: 16px !important;
        bottom: 88px !important;

        width: 62px !important;
        height: 62px !important;

        display: block !important;

        z-index: 2147483647 !important;
    }


    #emergencyButton {
        width: 62px !important;
        height: 62px !important;

        display: flex !important;

        visibility: visible !important;
        opacity: 1 !important;
    }


    .emergency-call-icon {
        font-size: 21px !important;
        line-height: 20px !important;
    }


    .emergency-call-text {
        font-size: 7px !important;
        line-height: 9px !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 480px) {

    #emergencyButtonWrap {
        position: fixed !important;

        right: 14px !important;
        bottom: 82px !important;

        width: 60px !important;
        height: 60px !important;

        display: block !important;

        visibility: visible !important;
        opacity: 1 !important;

        z-index: 2147483647 !important;
    }


    #emergencyButton {
        position: absolute !important;

        top: 0 !important;
        left: 0 !important;

        width: 60px !important;
        height: 60px !important;

        display: flex !important;

        visibility: visible !important;
        opacity: 1 !important;

        border-width: 2px !important;
    }


    .emergency-call-icon {
        font-size: 20px !important;
        line-height: 19px !important;
    }


    .emergency-call-text {
        font-size: 7px !important;
        line-height: 8px !important;
        letter-spacing: 0.3px !important;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 360px) {

    #emergencyButtonWrap {
        right: 12px !important;
        bottom: 78px !important;

        width: 56px !important;
        height: 56px !important;
    }


    #emergencyButton {
        width: 56px !important;
        height: 56px !important;
    }


    .emergency-call-icon {
        font-size: 18px !important;
        line-height: 17px !important;
    }


    .emergency-call-text {
        font-size: 6px !important;
        line-height: 7px !important;
    }

}